Detach SystemMediaControls from Window::Controller.

This commit is contained in:
John Preston 2023-01-19 09:38:52 +04:00
parent 6b8f80bd63
commit cdfdccbb66
12 changed files with 67 additions and 53 deletions

View File

@ -65,6 +65,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "media/player/media_player_instance.h"
#include "media/player/media_player_float.h"
#include "media/clip/media_clip_reader.h" // For Media::Clip::Finish().
#include "media/system_media_controls_manager.h"
#include "window/notifications_manager.h"
#include "window/themes/window_theme.h"
#include "window/window_lock_widgets.h"
@ -147,6 +148,9 @@ Application::Application(not_null<Launcher*> launcher)
, _audio(std::make_unique<Media::Audio::Instance>())
, _fallbackProductionConfig(
std::make_unique<MTP::Config>(MTP::Environment::Production))
, _mediaControlsManager(MediaControlsManager::Supported()
? std::make_unique<MediaControlsManager>()
: nullptr)
, _downloadManager(std::make_unique<Data::DownloadManager>())
, _domain(std::make_unique<Main::Domain>(cDataFile()))
, _exportManager(std::make_unique<Export::Manager>())
@ -484,27 +488,33 @@ void Application::startTray() {
_tray->showFromTrayRequests(
) | rpl::start_with_next([=] {
const auto last = _lastActiveWindow;
const auto primary = _lastActivePrimaryWindow;
enumerateWindows([&](WindowRaw w) {
if (w != last && w != primary) {
w->widget()->showFromTray();
}
});
if (primary) {
primary->widget()->showFromTray();
}
if (last && last != primary) {
last->widget()->showFromTray();
}
activate();
}, _lifetime);
_tray->hideToTrayRequests(
) | rpl::start_with_next([=] {
enumerateWindows([&](WindowRaw w) { w->widget()->minimizeToTray(); });
enumerateWindows([&](WindowRaw w) {
w->widget()->minimizeToTray();
});
}, _lifetime);
}
void Application::activate() {
const auto last = _lastActiveWindow;
const auto primary = _lastActivePrimaryWindow;
enumerateWindows([&](not_null<Window::Controller*> w) {
if (w != last && w != primary) {
w->widget()->showFromTray();
}
});
if (primary) {
primary->widget()->showFromTray();
}
if (last && last != primary) {
last->widget()->showFromTray();
}
}
auto Application::prepareEmojiSourceImages()
-> std::shared_ptr<Ui::Emoji::UniversalImages> {
const auto &images = Ui::Emoji::SourceImages();

View File

@ -71,6 +71,7 @@ namespace Player {
class FloatController;
class FloatDelegate;
} // namespace Player
class SystemMediaControlsManager;
} // namespace Media
namespace Lang {
@ -180,6 +181,7 @@ public:
void checkSystemDarkMode();
[[nodiscard]] bool isActiveForTrayMenu() const;
void closeChatFromWindows(not_null<PeerData*> peer);
void activate();
// Media view interface.
bool hideMediaView();
@ -384,6 +386,8 @@ private:
// Mutable because is created in run() after OpenSSL is inited.
std::unique_ptr<Window::Notifications::System> _notifications;
using MediaControlsManager = Media::SystemMediaControlsManager;
const std::unique_ptr<MediaControlsManager> _mediaControlsManager;
const std::unique_ptr<Data::DownloadManager> _downloadManager;
const std::unique_ptr<Main::Domain> _domain;
const std::unique_ptr<Export::Manager> _exportManager;

View File

@ -287,6 +287,11 @@ MainWidget::MainWidget(
_exportTopBar->finishAnimating();
}
Media::Player::instance()->closePlayerRequests(
) | rpl::start_with_next([=] {
closeBothPlayers();
}, lifetime());
Media::Player::instance()->updatedNotifier(
) | rpl::start_with_next([=](const Media::Player::TrackState &state) {
handleAudioUpdate(state);
@ -357,14 +362,16 @@ MainWidget::MainWidget(
Media::Player::instance()->tracksFinished(
) | rpl::start_with_next([=](AudioMsgId::Type type) {
if (type == AudioMsgId::Type::Voice) {
const auto songState = Media::Player::instance()->getState(AudioMsgId::Type::Song);
const auto songState = Media::Player::instance()->getState(
AudioMsgId::Type::Song);
if (!songState.id || IsStoppedOrStopping(songState.state)) {
closeBothPlayers();
Media::Player::instance()->stopAndClose();
}
} else if (type == AudioMsgId::Type::Song) {
const auto songState = Media::Player::instance()->getState(AudioMsgId::Type::Song);
const auto songState = Media::Player::instance()->getState(
AudioMsgId::Type::Song);
if (!songState.id) {
closeBothPlayers();
Media::Player::instance()->stopAndClose();
}
}
}, lifetime());
@ -767,7 +774,7 @@ void MainWidget::handleAudioUpdate(const Media::Player::TrackState &state) {
if (!Media::Player::IsStoppedOrStopping(state.state)) {
createPlayer();
} else if (state.state == State::StoppedAtStart) {
closeBothPlayers();
Media::Player::instance()->stopAndClose();
}
if (const auto item = session().data().message(state.id.contextId())) {
@ -788,12 +795,7 @@ void MainWidget::closeBothPlayers() {
if (_player) {
_player->hide(anim::type::normal);
}
_playerPlaylist->hideIgnoringEnterEvents();
Media::Player::instance()->stop(AudioMsgId::Type::Voice);
Media::Player::instance()->stop(AudioMsgId::Type::Song);
Shortcuts::ToggleMediaShortcuts(false);
}
void MainWidget::stopAndClosePlayer() {
@ -814,7 +816,9 @@ void MainWidget::createPlayer() {
) | rpl::start_with_next(
[this] { playerHeightUpdated(); },
_player->lifetime());
_player->entity()->setCloseCallback([=] { closeBothPlayers(); });
_player->entity()->setCloseCallback([=] {
Media::Player::instance()->stopAndClose();
});
_player->entity()->setShowItemCallback([=](
not_null<const HistoryItem*> item) {
_controller->showMessage(item);

View File

@ -233,7 +233,6 @@ public:
using FloatDelegate::floatPlayerAreaUpdated;
void closeBothPlayers();
void stopAndClosePlayer();
bool preventsCloseSection(Fn<void()> callback) const;
@ -302,6 +301,8 @@ private:
void hiderLayer(base::unique_qptr<Window::HistoryHider> h);
void clearHider(not_null<Window::HistoryHider*> instance);
void closeBothPlayers();
[[nodiscard]] auto floatPlayerDelegate()
-> not_null<Media::Player::FloatDelegate*>;
not_null<Ui::RpWidget*> floatPlayerWidget() override;

View File

@ -31,7 +31,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "main/main_account.h" // Account::sessionValue.
#include "main/main_domain.h"
#include "mainwidget.h"
#include "media/system_media_controls_manager.h"
#include "ui/boxes/confirm_box.h"
#include "boxes/connection_box.h"
#include "storage/storage_account.h"
@ -126,11 +125,6 @@ void MainWindow::initHook() {
this,
[=] { checkActivation(); },
Qt::QueuedConnection);
if (Media::SystemMediaControlsManager::Supported()) {
using MediaManager = Media::SystemMediaControlsManager;
_mediaControlsManager = std::make_unique<MediaManager>(&controller());
}
}
void MainWindow::applyInitialWorkMode() {

View File

@ -19,10 +19,6 @@ class Widget;
enum class EnterPoint : uchar;
} // namespace Intro
namespace Media {
class SystemMediaControlsManager;
} // namespace Media
namespace Window {
class MediaPreviewWidget;
class SectionMemento;
@ -136,8 +132,6 @@ private:
void themeUpdated(const Window::Theme::BackgroundUpdate &data);
std::unique_ptr<Media::SystemMediaControlsManager> _mediaControlsManager;
QPoint _lastMousePosition;
object_ptr<Window::PasscodeLockWidget> _passcodeLock = { nullptr };

View File

@ -1280,6 +1280,15 @@ bool Instance::pauseGifByRoundVideo() const {
return _roundPlaying;
}
void Instance::stopAndClose() {
_closePlayerRequests.fire({});
stop(AudioMsgId::Type::Voice);
stop(AudioMsgId::Type::Song);
Shortcuts::ToggleMediaShortcuts(false);
}
void Instance::handleStreamingUpdate(
not_null<Data*> data,
Streaming::Update &&update) {

View File

@ -168,6 +168,11 @@ public:
[[nodiscard]] bool pauseGifByRoundVideo() const;
[[nodiscard]] rpl::producer<> closePlayerRequests() const {
return _closePlayerRequests.events();
}
void stopAndClose();
private:
using SharedMediaType = Storage::SharedMediaType;
using SliceKey = SparseIdsMergedSlice::Key;
@ -312,6 +317,7 @@ private:
rpl::event_stream<AudioMsgId::Type> _playerStartedPlay;
rpl::event_stream<TrackState> _updatedNotifier;
rpl::event_stream<SeekingChanges> _seekingChanges;
rpl::event_stream<> _closePlayerRequests;
rpl::lifetime _lifetime;
};

View File

@ -14,14 +14,12 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "data/data_document.h"
#include "data/data_document_media.h"
#include "data/data_file_origin.h"
#include "mainwidget.h"
#include "main/main_account.h"
#include "main/main_session.h"
#include "media/audio/media_audio.h"
#include "media/streaming/media_streaming_instance.h"
#include "media/streaming/media_streaming_player.h"
#include "ui/text/format_song_document_name.h"
#include "window/window_controller.h"
#include <ksandbox.h>
@ -45,8 +43,7 @@ bool SystemMediaControlsManager::Supported() {
return base::Platform::SystemMediaControls::Supported();
}
SystemMediaControlsManager::SystemMediaControlsManager(
not_null<Window::Controller*> controller)
SystemMediaControlsManager::SystemMediaControlsManager()
: _controls(std::make_unique<base::Platform::SystemMediaControls>()) {
using PlaybackStatus =
@ -58,7 +55,7 @@ SystemMediaControlsManager::SystemMediaControlsManager(
_controls->setServiceName(u"tdesktop"_q);
}
_controls->setApplicationName(AppName.utf16());
const auto inited = _controls->init(controller->widget());
const auto inited = _controls->init();
if (!inited) {
LOG(("SystemMediaControlsManager failed to init."));
return;
@ -227,7 +224,7 @@ SystemMediaControlsManager::SystemMediaControlsManager(
case Command::Next: mediaPlayer->next(type); break;
case Command::Previous: mediaPlayer->previous(type); break;
case Command::Stop: mediaPlayer->stop(type); break;
case Command::Raise: controller->widget()->showFromTray(); break;
case Command::Raise: Core::App().activate(); break;
case Command::LoopNone: {
Core::App().settings().setPlayerRepeatMode(RepeatMode::None);
Core::App().saveSettingsDelayed();
@ -252,9 +249,7 @@ SystemMediaControlsManager::SystemMediaControlsManager(
break;
}
case Command::Quit: {
if (const auto main = controller->widget()->sessionContent()) {
main->closeBothPlayers();
}
Media::Player::instance()->stopAndClose();
break;
}
}

View File

@ -30,7 +30,7 @@ namespace Media {
class SystemMediaControlsManager {
public:
SystemMediaControlsManager(not_null<Window::Controller*> controller);
SystemMediaControlsManager();
~SystemMediaControlsManager();
static bool Supported();

View File

@ -15,7 +15,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "data/stickers/data_stickers.h" // Stickers::setsRef()
#include "main/main_domain.h"
#include "main/main_session.h"
#include "mainwidget.h" // MainWidget::closeBothPlayers
#include "media/audio/media_audio_capture.h"
#include "media/player/media_player_instance.h"
#include "platform/mac/touchbar/mac_touchbar_audio.h"
@ -171,9 +170,7 @@ const auto kAudioItemIdentifier = @"touchbarAudio";
autorelease];
item.groupTouchBar = touchBar;
[touchBar closeRequests] | rpl::start_with_next([=] {
if (const auto session = _controller->sessionController()) {
session->content()->closeBothPlayers();
}
Media::Player::instance()->stopAndClose();
}, [item lifetime]);
return [item autorelease];
}

@ -1 +1 @@
Subproject commit a21505416a8e64368925e02f13de2d97f7b476b3
Subproject commit 17cac57d9ed5bf8250861a4d11ddf2b4e4e5d641