145 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| This file is part of Telegram Desktop,
 | |
| the official desktop application for the Telegram messaging service.
 | |
| 
 | |
| For license and copyright information please follow this link:
 | |
| https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | |
| */
 | |
| #pragma once
 | |
| 
 | |
| #include "mainwindow.h"
 | |
| #include "window/window_adaptive.h"
 | |
| #include "ui/layers/layer_widget.h"
 | |
| 
 | |
| namespace Main {
 | |
| class Account;
 | |
| } // namespace Main
 | |
| 
 | |
| namespace Media::View {
 | |
| struct OpenRequest;
 | |
| } // namespace Media::View
 | |
| 
 | |
| namespace Window {
 | |
| 
 | |
| class Controller final : public base::has_weak_ptr {
 | |
| public:
 | |
| 	Controller();
 | |
| 	Controller(
 | |
| 		not_null<PeerData*> singlePeer,
 | |
| 		MsgId showAtMsgId);
 | |
| 	~Controller();
 | |
| 
 | |
| 	Controller(const Controller &other) = delete;
 | |
| 	Controller &operator=(const Controller &other) = delete;
 | |
| 
 | |
| 	void showAccount(not_null<Main::Account*> account);
 | |
| 	[[nodiscard]] PeerData *singlePeer() const;
 | |
| 	[[nodiscard]] bool isPrimary() const {
 | |
| 		return (singlePeer() == nullptr);
 | |
| 	}
 | |
| 
 | |
| 	[[nodiscard]] not_null<::MainWindow*> widget() {
 | |
| 		return &_widget;
 | |
| 	}
 | |
| 	[[nodiscard]] Main::Account &account() const {
 | |
| 		Expects(_account != nullptr);
 | |
| 
 | |
| 		return *_account;
 | |
| 	}
 | |
| 	[[nodiscard]] SessionController *sessionController() const {
 | |
| 		return _sessionController.get();
 | |
| 	}
 | |
| 	[[nodiscard]] bool locked() const;
 | |
| 
 | |
| 	[[nodiscard]] Adaptive &adaptive() const;
 | |
| 
 | |
| 	void finishFirstShow();
 | |
| 
 | |
| 	void setupPasscodeLock();
 | |
| 	void clearPasscodeLock();
 | |
| 	void setupIntro();
 | |
| 	void setupMain(MsgId singlePeerShowAtMsgId);
 | |
| 
 | |
| 	void showLogoutConfirmation();
 | |
| 
 | |
| 	void showSettings();
 | |
| 
 | |
| 	[[nodiscard]] int verticalShadowTop() const;
 | |
| 
 | |
| 	template <typename BoxType>
 | |
| 	QPointer<BoxType> show(
 | |
| 			object_ptr<BoxType> content,
 | |
| 			Ui::LayerOptions options = Ui::LayerOption::KeepOther,
 | |
| 			anim::type animated = anim::type::normal) {
 | |
| 		const auto result = QPointer<BoxType>(content.data());
 | |
| 		showBox(std::move(content), options, animated);
 | |
| 		return result;
 | |
| 	}
 | |
| 	void showToast(const QString &text);
 | |
| 	void showLayer(
 | |
| 		std::unique_ptr<Ui::LayerWidget> &&layer,
 | |
| 		Ui::LayerOptions options,
 | |
| 		anim::type animated = anim::type::normal);
 | |
| 
 | |
| 	void showRightColumn(object_ptr<TWidget> widget);
 | |
| 
 | |
| 	void activate();
 | |
| 	void reActivate();
 | |
| 	void updateIsActiveFocus();
 | |
| 	void updateIsActiveBlur();
 | |
| 	void updateIsActive();
 | |
| 	void minimize();
 | |
| 	void close();
 | |
| 
 | |
| 	void preventOrInvoke(Fn<void()> &&callback);
 | |
| 
 | |
| 	void invokeForSessionController(
 | |
| 		not_null<Main::Account*> account,
 | |
| 		Fn<void(not_null<SessionController*>)> &&callback);
 | |
| 
 | |
| 	void openInMediaView(Media::View::OpenRequest &&request);
 | |
| 	[[nodiscard]] auto openInMediaViewRequests() const
 | |
| 	-> rpl::producer<Media::View::OpenRequest>;
 | |
| 
 | |
| 	QPoint getPointForCallPanelCenter() const;
 | |
| 
 | |
| 	rpl::lifetime &lifetime();
 | |
| 
 | |
| private:
 | |
| 	struct CreateArgs {
 | |
| 		PeerData *singlePeer = nullptr;
 | |
| 	};
 | |
| 	explicit Controller(CreateArgs &&args);
 | |
| 
 | |
| 	void showAccount(
 | |
| 		not_null<Main::Account*> account,
 | |
| 		MsgId singlePeerShowAtMsgId);
 | |
| 	void setupSideBar();
 | |
| 	void sideBarChanged();
 | |
| 	void logoutWithChecks(Main::Account *account);
 | |
| 
 | |
| 	void showBox(
 | |
| 		object_ptr<Ui::BoxContent> content,
 | |
| 		Ui::LayerOptions options,
 | |
| 		anim::type animated);
 | |
| 	void checkThemeEditor();
 | |
| 	void checkLockByTerms();
 | |
| 	void showTermsDecline();
 | |
| 	void showTermsDelete();
 | |
| 
 | |
| 	PeerData *_singlePeer = nullptr;
 | |
| 	Main::Account *_account = nullptr;
 | |
| 	::MainWindow _widget;
 | |
| 	const std::unique_ptr<Adaptive> _adaptive;
 | |
| 	std::unique_ptr<SessionController> _sessionController;
 | |
| 	base::Timer _isActiveTimer;
 | |
| 	QPointer<Ui::BoxContent> _termsBox;
 | |
| 
 | |
| 	rpl::event_stream<Media::View::OpenRequest> _openInMediaViewRequests;
 | |
| 
 | |
| 	rpl::lifetime _accountLifetime;
 | |
| 	rpl::lifetime _lifetime;
 | |
| 
 | |
| };
 | |
| 
 | |
| } // namespace Window
 | 
