1025 lines
		
	
	
	
		
			26 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			1025 lines
		
	
	
	
		
			26 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
 | |
| */
 | |
| #include "mainwindow.h"
 | |
| 
 | |
| #include "data/data_document.h"
 | |
| #include "data/data_session.h"
 | |
| #include "data/data_document_media.h"
 | |
| #include "dialogs/dialogs_layout.h"
 | |
| #include "history/history.h"
 | |
| #include "ui/widgets/popup_menu.h"
 | |
| #include "ui/widgets/buttons.h"
 | |
| #include "ui/widgets/shadow.h"
 | |
| #include "ui/widgets/tooltip.h"
 | |
| #include "ui/layers/layer_widget.h"
 | |
| #include "ui/emoji_config.h"
 | |
| #include "ui/ui_utility.h"
 | |
| #include "lang/lang_cloud_manager.h"
 | |
| #include "lang/lang_instance.h"
 | |
| #include "lang/lang_keys.h"
 | |
| #include "core/shortcuts.h"
 | |
| #include "core/sandbox.h"
 | |
| #include "core/application.h"
 | |
| #include "export/export_manager.h"
 | |
| #include "intro/intro_widget.h"
 | |
| #include "main/main_session.h"
 | |
| #include "main/main_account.h" // Account::sessionValue.
 | |
| #include "main/main_domain.h"
 | |
| #include "mainwidget.h"
 | |
| #include "boxes/confirm_box.h"
 | |
| #include "boxes/add_contact_box.h"
 | |
| #include "boxes/connection_box.h"
 | |
| #include "storage/storage_account.h"
 | |
| #include "storage/localstorage.h"
 | |
| #include "apiwrap.h"
 | |
| #include "api/api_updates.h"
 | |
| #include "settings/settings_intro.h"
 | |
| #include "platform/platform_notifications_manager.h"
 | |
| #include "base/platform/base_platform_info.h"
 | |
| #include "base/call_delayed.h"
 | |
| #include "window/notifications_manager.h"
 | |
| #include "window/themes/window_theme.h"
 | |
| #include "window/themes/window_theme_warning.h"
 | |
| #include "window/window_lock_widgets.h"
 | |
| #include "window/window_main_menu.h"
 | |
| #include "window/window_controller.h" // App::wnd.
 | |
| #include "window/window_session_controller.h"
 | |
| #include "window/window_media_preview.h"
 | |
| #include "facades.h"
 | |
| #include "app.h"
 | |
| #include "styles/style_dialogs.h"
 | |
| #include "styles/style_layers.h"
 | |
| #include "styles/style_window.h"
 | |
| 
 | |
| #include <QtGui/QWindow>
 | |
| #include <QtCore/QCoreApplication>
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| // Code for testing languages is F7-F6-F7-F8
 | |
| void FeedLangTestingKey(int key) {
 | |
| 	static auto codeState = 0;
 | |
| 	if ((codeState == 0 && key == Qt::Key_F7)
 | |
| 		|| (codeState == 1 && key == Qt::Key_F6)
 | |
| 		|| (codeState == 2 && key == Qt::Key_F7)
 | |
| 		|| (codeState == 3 && key == Qt::Key_F8)) {
 | |
| 		++codeState;
 | |
| 	} else {
 | |
| 		codeState = 0;
 | |
| 	}
 | |
| 	if (codeState == 4) {
 | |
| 		codeState = 0;
 | |
| 		Lang::CurrentCloudManager().switchToTestLanguage();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| } // namespace
 | |
| 
 | |
| MainWindow::MainWindow(not_null<Window::Controller*> controller)
 | |
| : Platform::MainWindow(controller) {
 | |
| 	auto logo = Core::App().logo();
 | |
| 	icon16 = logo.scaledToWidth(16, Qt::SmoothTransformation);
 | |
| 	icon32 = logo.scaledToWidth(32, Qt::SmoothTransformation);
 | |
| 	icon64 = logo.scaledToWidth(64, Qt::SmoothTransformation);
 | |
| 
 | |
| 	auto logoNoMargin = Core::App().logoNoMargin();
 | |
| 	iconbig16 = logoNoMargin.scaledToWidth(16, Qt::SmoothTransformation);
 | |
| 	iconbig32 = logoNoMargin.scaledToWidth(32, Qt::SmoothTransformation);
 | |
| 	iconbig64 = logoNoMargin.scaledToWidth(64, Qt::SmoothTransformation);
 | |
| 
 | |
| 	resize(st::windowDefaultWidth, st::windowDefaultHeight);
 | |
| 
 | |
| 	setLocale(QLocale(QLocale::English, QLocale::UnitedStates));
 | |
| 
 | |
| 	subscribe(Window::Theme::Background(), [this](const Window::Theme::BackgroundUpdate &data) {
 | |
| 		themeUpdated(data);
 | |
| 	});
 | |
| 	Core::App().passcodeLockChanges(
 | |
| 	) | rpl::start_with_next([=] {
 | |
| 		updateGlobalMenu();
 | |
| 	}, lifetime());
 | |
| 
 | |
| 	Ui::Emoji::Updated(
 | |
| 	) | rpl::start_with_next([=] {
 | |
| 		Ui::ForceFullRepaint(this);
 | |
| 	}, lifetime());
 | |
| 
 | |
| 	setAttribute(Qt::WA_NoSystemBackground);
 | |
| 	setAttribute(Qt::WA_OpaquePaintEvent);
 | |
| }
 | |
| 
 | |
| void MainWindow::initHook() {
 | |
| 	Platform::MainWindow::initHook();
 | |
| 
 | |
| 	QCoreApplication::instance()->installEventFilter(this);
 | |
| 
 | |
| 	// Non-queued activeChanged handlers must use QtSignalProducer.
 | |
| 	connect(
 | |
| 		windowHandle(),
 | |
| 		&QWindow::activeChanged,
 | |
| 		this,
 | |
| 		[=] { checkHistoryActivation(); },
 | |
| 		Qt::QueuedConnection);
 | |
| }
 | |
| 
 | |
| void MainWindow::createTrayIconMenu() {
 | |
| #ifdef Q_OS_WIN
 | |
| 	trayIconMenu = new Ui::PopupMenu(nullptr);
 | |
| 	trayIconMenu->deleteOnHide(false);
 | |
| #else // Q_OS_WIN
 | |
| 	trayIconMenu = new QMenu(this);
 | |
| #endif // else for Q_OS_WIN
 | |
| 
 | |
| 	auto notificationActionText = Core::App().settings().desktopNotify()
 | |
| 		? tr::lng_disable_notifications_from_tray(tr::now)
 | |
| 		: tr::lng_enable_notifications_from_tray(tr::now);
 | |
| 
 | |
| 	if (Platform::IsLinux() && !Platform::IsWayland()) {
 | |
| 		trayIconMenu->addAction(tr::lng_open_from_tray(tr::now), this, SLOT(showFromTray()));
 | |
| 	}
 | |
| 	trayIconMenu->addAction(tr::lng_minimize_to_tray(tr::now), this, SLOT(minimizeToTray()));
 | |
| 	trayIconMenu->addAction(notificationActionText, this, SLOT(toggleDisplayNotifyFromTray()));
 | |
| 	trayIconMenu->addAction(tr::lng_quit_from_tray(tr::now), this, SLOT(quitFromTray()));
 | |
| 
 | |
| 	initTrayMenuHook();
 | |
| }
 | |
| 
 | |
| void MainWindow::applyInitialWorkMode() {
 | |
| 	Global::RefWorkMode().setForced(Global::WorkMode().value(), true);
 | |
| 
 | |
| 	if (cWindowPos().maximized) {
 | |
| 		DEBUG_LOG(("Window Pos: First show, setting maximized."));
 | |
| 		setWindowState(Qt::WindowMaximized);
 | |
| 	}
 | |
| 	if (cStartInTray()
 | |
| 		|| (cLaunchMode() == LaunchModeAutoStart
 | |
| 			&& cStartMinimized()
 | |
| 			&& !Core::App().passcodeLocked())) {
 | |
| 		const auto minimizeAndHide = [=] {
 | |
| 			DEBUG_LOG(("Window Pos: First show, setting minimized after."));
 | |
| 			setWindowState(windowState() | Qt::WindowMinimized);
 | |
| 			if (Global::WorkMode().value() == dbiwmTrayOnly
 | |
| 				|| Global::WorkMode().value() == dbiwmWindowAndTray) {
 | |
| 				hide();
 | |
| 			}
 | |
| 		};
 | |
| 
 | |
| 		if (Platform::IsLinux()) {
 | |
| 			// If I call hide() synchronously here after show() then on Ubuntu 14.04
 | |
| 			// it will show a window frame with transparent window body, without content.
 | |
| 			// And to be able to "Show from tray" one more hide() will be required.
 | |
| 			crl::on_main(this, minimizeAndHide);
 | |
| 		} else {
 | |
| 			minimizeAndHide();
 | |
| 		}
 | |
| 	}
 | |
| 	setPositionInited();
 | |
| }
 | |
| 
 | |
| void MainWindow::finishFirstShow() {
 | |
| 	createTrayIconMenu();
 | |
| 	initShadows();
 | |
| 	applyInitialWorkMode();
 | |
| 	createGlobalMenu();
 | |
| 	firstShadowsUpdate();
 | |
| 	updateTrayMenu();
 | |
| 
 | |
| 	windowDeactivateEvents(
 | |
| 	) | rpl::start_with_next([=] {
 | |
| 		Ui::Tooltip::Hide();
 | |
| 	}, lifetime());
 | |
| }
 | |
| 
 | |
| void MainWindow::clearWidgetsHook() {
 | |
| 	_mediaPreview.destroy();
 | |
| 	_main.destroy();
 | |
| 	_intro.destroy();
 | |
| 	if (!Core::App().passcodeLocked()) {
 | |
| 		_passcodeLock.destroy();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| QPixmap MainWindow::grabInner() {
 | |
| 	if (_passcodeLock) {
 | |
| 		return Ui::GrabWidget(_passcodeLock);
 | |
| 	} else if (_intro) {
 | |
| 		return Ui::GrabWidget(_intro);
 | |
| 	} else if (_main) {
 | |
| 		return Ui::GrabWidget(_main);
 | |
| 	}
 | |
| 	return {};
 | |
| }
 | |
| 
 | |
| void MainWindow::setupPasscodeLock() {
 | |
| 	auto animated = (_main || _intro);
 | |
| 	auto bg = animated ? grabInner() : QPixmap();
 | |
| 	_passcodeLock.create(bodyWidget(), &controller());
 | |
| 	updateControlsGeometry();
 | |
| 
 | |
| 	Core::App().hideMediaView();
 | |
| 	Ui::hideSettingsAndLayer(anim::type::instant);
 | |
| 	if (_main) {
 | |
| 		_main->hide();
 | |
| 	}
 | |
| 	if (_intro) {
 | |
| 		_intro->hide();
 | |
| 	}
 | |
| 	if (animated) {
 | |
| 		_passcodeLock->showAnimated(bg);
 | |
| 	} else {
 | |
| 		_passcodeLock->showFinished();
 | |
| 		setInnerFocus();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::clearPasscodeLock() {
 | |
| 	if (!_passcodeLock) {
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	if (_intro) {
 | |
| 		auto bg = grabInner();
 | |
| 		_passcodeLock.destroy();
 | |
| 		_intro->show();
 | |
| 		updateControlsGeometry();
 | |
| 		_intro->showAnimated(bg, true);
 | |
| 	} else if (_main) {
 | |
| 		auto bg = grabInner();
 | |
| 		_passcodeLock.destroy();
 | |
| 		_main->show();
 | |
| 		updateControlsGeometry();
 | |
| 		_main->showAnimated(bg, true);
 | |
| 		Core::App().checkStartUrl();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::setupIntro(Intro::EnterPoint point) {
 | |
| 	auto animated = (_main || _passcodeLock);
 | |
| 	auto bg = animated ? grabInner() : QPixmap();
 | |
| 
 | |
| 	destroyLayer();
 | |
| 	auto created = object_ptr<Intro::Widget>(bodyWidget(), &account(), point);
 | |
| 	clearWidgets();
 | |
| 	_intro = std::move(created);
 | |
| 	if (_passcodeLock) {
 | |
| 		_intro->hide();
 | |
| 	} else {
 | |
| 		_intro->show();
 | |
| 		updateControlsGeometry();
 | |
| 		if (animated) {
 | |
| 			_intro->showAnimated(bg);
 | |
| 		} else {
 | |
| 			setInnerFocus();
 | |
| 		}
 | |
| 	}
 | |
| 	fixOrder();
 | |
| }
 | |
| 
 | |
| void MainWindow::setupMain() {
 | |
| 	Expects(account().sessionExists());
 | |
| 
 | |
| 	const auto animated = (_intro || _passcodeLock);
 | |
| 	const auto bg = animated ? grabInner() : QPixmap();
 | |
| 	const auto weak = (_main && _layer)
 | |
| 		? Ui::MakeWeak(_layer.get())
 | |
| 		: nullptr;
 | |
| 	if (weak) {
 | |
| 		Assert(!animated);
 | |
| 		_layer->hideAllAnimatedPrepare();
 | |
| 	} else {
 | |
| 		destroyLayer();
 | |
| 	}
 | |
| 	auto created = object_ptr<MainWidget>(bodyWidget(), sessionController());
 | |
| 	clearWidgets();
 | |
| 	_main = std::move(created);
 | |
| 	if (_passcodeLock) {
 | |
| 		_main->hide();
 | |
| 	} else {
 | |
| 		_main->show();
 | |
| 		updateControlsGeometry();
 | |
| 		if (animated) {
 | |
| 			_main->showAnimated(bg);
 | |
| 		} else {
 | |
| 			_main->activate();
 | |
| 		}
 | |
| 		Core::App().checkStartUrl();
 | |
| 	}
 | |
| 	fixOrder();
 | |
| 	if (const auto strong = weak.data()) {
 | |
| 		strong->hideAllAnimatedRun();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::showSettings() {
 | |
| 	if (isHidden()) {
 | |
| 		showFromTray();
 | |
| 	}
 | |
| 	if (_passcodeLock) {
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	if (const auto session = sessionController()) {
 | |
| 		session->showSettings();
 | |
| 	} else {
 | |
| 		showSpecialLayer(
 | |
| 			Box<Settings::LayerWidget>(&controller()),
 | |
| 			anim::type::normal);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::showSpecialLayer(
 | |
| 		object_ptr<Ui::LayerWidget> layer,
 | |
| 		anim::type animated) {
 | |
| 	if (_passcodeLock) {
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	if (layer) {
 | |
| 		ensureLayerCreated();
 | |
| 		_layer->showSpecialLayer(std::move(layer), animated);
 | |
| 	} else if (_layer) {
 | |
| 		_layer->hideSpecialLayer(animated);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool MainWindow::showSectionInExistingLayer(
 | |
| 		not_null<Window::SectionMemento*> memento,
 | |
| 		const Window::SectionShow ¶ms) {
 | |
| 	if (_layer) {
 | |
| 		return _layer->showSectionInternal(memento, params);
 | |
| 	}
 | |
| 	return false;
 | |
| }
 | |
| 
 | |
| void MainWindow::showMainMenu() {
 | |
| 	if (_passcodeLock) return;
 | |
| 
 | |
| 	if (isHidden()) showFromTray();
 | |
| 
 | |
| 	ensureLayerCreated();
 | |
| 	_layer->showMainMenu(
 | |
| 		object_ptr<Window::MainMenu>(this, sessionController()),
 | |
| 		anim::type::normal);
 | |
| }
 | |
| 
 | |
| void MainWindow::ensureLayerCreated() {
 | |
| 	if (_layer) {
 | |
| 		return;
 | |
| 	}
 | |
| 	_layer = base::make_unique_q<Ui::LayerStackWidget>(
 | |
| 		bodyWidget());
 | |
| 
 | |
| 	_layer->hideFinishEvents(
 | |
| 	) | rpl::filter([=] {
 | |
| 		return _layer != nullptr; // Last hide finish is sent from destructor.
 | |
| 	}) | rpl::start_with_next([=] {
 | |
| 		destroyLayer();
 | |
| 	}, _layer->lifetime());
 | |
| 
 | |
| 	if (const auto controller = sessionController()) {
 | |
| 		controller->enableGifPauseReason(Window::GifPauseReason::Layer);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::destroyLayer() {
 | |
| 	if (!_layer) {
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	auto layer = base::take(_layer);
 | |
| 	const auto resetFocus = Ui::InFocusChain(layer);
 | |
| 	if (resetFocus) {
 | |
| 		setFocus();
 | |
| 	}
 | |
| 	layer = nullptr;
 | |
| 
 | |
| 	if (const auto controller = sessionController()) {
 | |
| 		controller->disableGifPauseReason(Window::GifPauseReason::Layer);
 | |
| 	}
 | |
| 	if (resetFocus) {
 | |
| 		setInnerFocus();
 | |
| 	}
 | |
| 	InvokeQueued(this, [=] {
 | |
| 		checkHistoryActivation();
 | |
| 	});
 | |
| }
 | |
| 
 | |
| void MainWindow::ui_hideSettingsAndLayer(anim::type animated) {
 | |
| 	if (animated == anim::type::instant) {
 | |
| 		destroyLayer();
 | |
| 	} else if (_layer) {
 | |
| 		_layer->hideAll(animated);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::ui_removeLayerBlackout() {
 | |
| 	if (_layer) {
 | |
| 		_layer->removeBodyCache();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| MainWidget *MainWindow::sessionContent() const {
 | |
| 	return _main.data();
 | |
| }
 | |
| 
 | |
| void MainWindow::ui_showBox(
 | |
| 		object_ptr<Ui::BoxContent> box,
 | |
| 		Ui::LayerOptions options,
 | |
| 		anim::type animated) {
 | |
| 	if (box) {
 | |
| 		ensureLayerCreated();
 | |
| 		_layer->showBox(std::move(box), options, animated);
 | |
| 	} else {
 | |
| 		if (_layer) {
 | |
| 			_layer->hideTopLayer(animated);
 | |
| 			if ((animated == anim::type::instant)
 | |
| 				&& _layer
 | |
| 				&& !_layer->layerShown()) {
 | |
| 				destroyLayer();
 | |
| 			}
 | |
| 		}
 | |
| 		Core::App().hideMediaView();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool MainWindow::ui_isLayerShown() {
 | |
| 	return _layer != nullptr;
 | |
| }
 | |
| 
 | |
| bool MainWindow::showMediaPreview(
 | |
| 		Data::FileOrigin origin,
 | |
| 		not_null<DocumentData*> document) {
 | |
| 	const auto media = document->activeMediaView();
 | |
| 	const auto preview = Data::VideoPreviewState(media.get());
 | |
| 	if (!document->sticker()
 | |
| 		&& (!document->isAnimation() || !preview.loaded())) {
 | |
| 		return false;
 | |
| 	}
 | |
| 	if (!_mediaPreview) {
 | |
| 		_mediaPreview.create(bodyWidget(), sessionController());
 | |
| 		updateControlsGeometry();
 | |
| 	}
 | |
| 	if (_mediaPreview->isHidden()) {
 | |
| 		fixOrder();
 | |
| 	}
 | |
| 	_mediaPreview->showPreview(origin, document);
 | |
| 	return true;
 | |
| }
 | |
| 
 | |
| bool MainWindow::showMediaPreview(
 | |
| 		Data::FileOrigin origin,
 | |
| 		not_null<PhotoData*> photo) {
 | |
| 	if (!_mediaPreview) {
 | |
| 		_mediaPreview.create(bodyWidget(), sessionController());
 | |
| 		updateControlsGeometry();
 | |
| 	}
 | |
| 	if (_mediaPreview->isHidden()) {
 | |
| 		fixOrder();
 | |
| 	}
 | |
| 	_mediaPreview->showPreview(origin, photo);
 | |
| 	return true;
 | |
| }
 | |
| 
 | |
| void MainWindow::hideMediaPreview() {
 | |
| 	if (!_mediaPreview) {
 | |
| 		return;
 | |
| 	}
 | |
| 	_mediaPreview->hidePreview();
 | |
| }
 | |
| 
 | |
| void MainWindow::themeUpdated(const Window::Theme::BackgroundUpdate &data) {
 | |
| 	using Type = Window::Theme::BackgroundUpdate::Type;
 | |
| 
 | |
| 	// We delay animating theme warning because we want all other
 | |
| 	// subscribers to receive paltte changed notification before any
 | |
| 	// animations (that include pixmap caches with old palette values).
 | |
| 	if (data.type == Type::TestingTheme) {
 | |
| 		if (!_testingThemeWarning) {
 | |
| 			_testingThemeWarning.create(bodyWidget());
 | |
| 			_testingThemeWarning->hide();
 | |
| 			_testingThemeWarning->setGeometry(rect());
 | |
| 			_testingThemeWarning->setHiddenCallback([this] { _testingThemeWarning.destroyDelayed(); });
 | |
| 		}
 | |
| 		crl::on_main(this, [=] {
 | |
| 			if (_testingThemeWarning) {
 | |
| 				_testingThemeWarning->showAnimated();
 | |
| 			}
 | |
| 		});
 | |
| 	} else if (data.type == Type::RevertingTheme || data.type == Type::ApplyingTheme) {
 | |
| 		if (_testingThemeWarning) {
 | |
| 			if (_testingThemeWarning->isHidden()) {
 | |
| 				_testingThemeWarning.destroy();
 | |
| 			} else {
 | |
| 				crl::on_main(this, [=] {
 | |
| 					if (_testingThemeWarning) {
 | |
| 						_testingThemeWarning->hideAnimated();
 | |
| 						_testingThemeWarning = nullptr;
 | |
| 					}
 | |
| 					setInnerFocus();
 | |
| 				});
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool MainWindow::doWeMarkAsRead() {
 | |
| 	if (!_main || Ui::isLayerShown()) {
 | |
| 		return false;
 | |
| 	}
 | |
| 	updateIsActive();
 | |
| 	return isActive() && _main->doWeMarkAsRead();
 | |
| }
 | |
| 
 | |
| void MainWindow::checkHistoryActivation() {
 | |
| 	if (_main) {
 | |
| 		_main->checkHistoryActivation();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool MainWindow::contentOverlapped(const QRect &globalRect) {
 | |
| 	if (_main && _main->contentOverlapped(globalRect)) return true;
 | |
| 	if (_layer && _layer->contentOverlapped(globalRect)) return true;
 | |
| 	return false;
 | |
| }
 | |
| 
 | |
| void MainWindow::setInnerFocus() {
 | |
| 	if (_testingThemeWarning) {
 | |
| 		_testingThemeWarning->setFocus();
 | |
| 	} else if (_layer && _layer->canSetFocus()) {
 | |
| 		_layer->setInnerFocus();
 | |
| 	} else if (_passcodeLock) {
 | |
| 		_passcodeLock->setInnerFocus();
 | |
| 	} else if (_main) {
 | |
| 		_main->setInnerFocus();
 | |
| 	} else if (_intro) {
 | |
| 		_intro->setInnerFocus();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool MainWindow::eventFilter(QObject *object, QEvent *e) {
 | |
| 	switch (e->type()) {
 | |
| 	case QEvent::KeyPress: {
 | |
| 		if (Logs::DebugEnabled()
 | |
| 			&& (e->type() == QEvent::KeyPress)
 | |
| 			&& object == windowHandle()) {
 | |
| 			auto key = static_cast<QKeyEvent*>(e)->key();
 | |
| 			FeedLangTestingKey(key);
 | |
| 		}
 | |
| 	} break;
 | |
| 
 | |
| 	case QEvent::MouseMove: {
 | |
| 		const auto position = static_cast<QMouseEvent*>(e)->globalPos();
 | |
| 		if (_lastMousePosition != position) {
 | |
| 			if (const auto controller = sessionController()) {
 | |
| 				if (controller->session().updates().isIdle()) {
 | |
| 					Core::App().updateNonIdle();
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		_lastMousePosition = position;
 | |
| 	} break;
 | |
| 
 | |
| 	case QEvent::MouseButtonRelease: {
 | |
| 		hideMediaPreview();
 | |
| 	} break;
 | |
| 
 | |
| 	case QEvent::ApplicationActivate: {
 | |
| 		if (object == QCoreApplication::instance()) {
 | |
| 			InvokeQueued(this, [=] {
 | |
| 				handleActiveChanged();
 | |
| 			});
 | |
| 		}
 | |
| 	} break;
 | |
| 
 | |
| 	case QEvent::WindowStateChange: {
 | |
| 		if (object == this) {
 | |
| 			auto state = (windowState() & Qt::WindowMinimized) ? Qt::WindowMinimized :
 | |
| 				((windowState() & Qt::WindowMaximized) ? Qt::WindowMaximized :
 | |
| 				((windowState() & Qt::WindowFullScreen) ? Qt::WindowFullScreen : Qt::WindowNoState));
 | |
| 			handleStateChanged(state);
 | |
| 		}
 | |
| 	} break;
 | |
| 
 | |
| 	case QEvent::Move:
 | |
| 	case QEvent::Resize: {
 | |
| 		if (object == this) {
 | |
| 			positionUpdated();
 | |
| 		}
 | |
| 	} break;
 | |
| 	}
 | |
| 
 | |
| 	return Platform::MainWindow::eventFilter(object, e);
 | |
| }
 | |
| 
 | |
| void MainWindow::updateTrayMenu(bool force) {
 | |
| 	if (!trayIconMenu || (Platform::IsWindows() && !force)) return;
 | |
| 
 | |
| 	auto actions = trayIconMenu->actions();
 | |
| 	if (Platform::IsLinux() && !Platform::IsWayland()) {
 | |
| 		auto minimizeAction = actions.at(1);
 | |
| 		minimizeAction->setEnabled(isVisible());
 | |
| 	} else {
 | |
| 		updateIsActive();
 | |
| 		auto active = Platform::IsWayland() ? isVisible() : isActive();
 | |
| 		auto toggleAction = actions.at(0);
 | |
| 		disconnect(toggleAction, SIGNAL(triggered(bool)), this, SLOT(minimizeToTray()));
 | |
| 		disconnect(toggleAction, SIGNAL(triggered(bool)), this, SLOT(showFromTray()));
 | |
| 		connect(toggleAction, SIGNAL(triggered(bool)), this, active ? SLOT(minimizeToTray()) : SLOT(showFromTray()));
 | |
| 		toggleAction->setText(active
 | |
| 			? tr::lng_minimize_to_tray(tr::now)
 | |
| 			: tr::lng_open_from_tray(tr::now));
 | |
| 	}
 | |
| 	auto notificationAction = actions.at(Platform::IsLinux() && !Platform::IsWayland() ? 2 : 1);
 | |
| 	auto notificationActionText = Core::App().settings().desktopNotify()
 | |
| 		? tr::lng_disable_notifications_from_tray(tr::now)
 | |
| 		: tr::lng_enable_notifications_from_tray(tr::now);
 | |
| 	notificationAction->setText(notificationActionText);
 | |
| 
 | |
| 	psTrayMenuUpdated();
 | |
| }
 | |
| 
 | |
| void MainWindow::onShowAddContact() {
 | |
| 	if (isHidden()) showFromTray();
 | |
| 
 | |
| 	if (const auto controller = sessionController()) {
 | |
| 		Ui::show(
 | |
| 			Box<AddContactBox>(&controller->session()),
 | |
| 			Ui::LayerOption::KeepOther);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::onShowNewGroup() {
 | |
| 	if (isHidden()) showFromTray();
 | |
| 
 | |
| 	if (const auto controller = sessionController()) {
 | |
| 		Ui::show(
 | |
| 			Box<GroupInfoBox>(controller, GroupInfoBox::Type::Group),
 | |
| 			Ui::LayerOption::KeepOther);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::onShowNewChannel() {
 | |
| 	if (isHidden()) showFromTray();
 | |
| 
 | |
| 	if (const auto controller = sessionController()) {
 | |
| 		Ui::show(
 | |
| 			Box<GroupInfoBox>(controller, GroupInfoBox::Type::Channel),
 | |
| 			Ui::LayerOption::KeepOther);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::showLogoutConfirmation() {
 | |
| 	if (isHidden()) {
 | |
| 		showFromTray();
 | |
| 	}
 | |
| 
 | |
| 	const auto account = Core::App().passcodeLocked()
 | |
| 		? nullptr
 | |
| 		: sessionController()
 | |
| 		? &sessionController()->session().account()
 | |
| 		: nullptr;
 | |
| 	const auto weak = base::make_weak(account);
 | |
| 	const auto callback = [=] {
 | |
| 		if (account && !weak) {
 | |
| 			return;
 | |
| 		}
 | |
| 		if (account
 | |
| 			&& account->sessionExists()
 | |
| 			&& Core::App().exportManager().inProgress(&account->session())) {
 | |
| 			Ui::hideLayer();
 | |
| 			Core::App().exportManager().stopWithConfirmation([=] {
 | |
| 				Core::App().logout(account);
 | |
| 			});
 | |
| 		} else {
 | |
| 			Core::App().logout(account);
 | |
| 		}
 | |
| 	};
 | |
| 	Ui::show(Box<ConfirmBox>(
 | |
| 		tr::lng_sure_logout(tr::now),
 | |
| 		tr::lng_settings_logout(tr::now),
 | |
| 		st::attentionBoxButton,
 | |
| 		callback));
 | |
| }
 | |
| 
 | |
| void MainWindow::quitFromTray() {
 | |
| 	App::quit();
 | |
| }
 | |
| 
 | |
| void MainWindow::activate() {
 | |
| 	bool wasHidden = !isVisible();
 | |
| 	setWindowState(windowState() & ~Qt::WindowMinimized);
 | |
| 	setVisible(true);
 | |
| 	psActivateProcess();
 | |
| 	activateWindow();
 | |
| 	controller().updateIsActiveFocus();
 | |
| 	if (wasHidden) {
 | |
| 		if (_main) {
 | |
| 			_main->windowShown();
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool MainWindow::takeThirdSectionFromLayer() {
 | |
| 	return _layer ? _layer->takeToThirdSection() : false;
 | |
| }
 | |
| 
 | |
| void MainWindow::fixOrder() {
 | |
| 	if (_passcodeLock) _passcodeLock->raise();
 | |
| 	if (_layer) _layer->raise();
 | |
| 	if (_mediaPreview) _mediaPreview->raise();
 | |
| 	if (_testingThemeWarning) _testingThemeWarning->raise();
 | |
| }
 | |
| 
 | |
| void MainWindow::showFromTray(QSystemTrayIcon::ActivationReason reason) {
 | |
| 	if (reason != QSystemTrayIcon::Context) {
 | |
| 		base::call_delayed(1, this, [this] {
 | |
| 			updateTrayMenu();
 | |
| 			updateGlobalMenu();
 | |
| 		});
 | |
| 		activate();
 | |
| 		updateUnreadCounter();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::handleTrayIconActication(
 | |
| 		QSystemTrayIcon::ActivationReason reason) {
 | |
| 	updateIsActive();
 | |
| 	if (Platform::IsMac() && isActive()) {
 | |
| 		if (trayIcon && !trayIcon->contextMenu()) {
 | |
| 			showFromTray(reason);
 | |
| 		}
 | |
| 		return;
 | |
| 	}
 | |
| 	if (reason == QSystemTrayIcon::Context) {
 | |
| 		updateTrayMenu(true);
 | |
| 		QTimer::singleShot(1, this, SLOT(psShowTrayMenu()));
 | |
| 	} else if (!skipTrayClick()) {
 | |
| 		if (Platform::IsWayland() ? isVisible() : isActive()) {
 | |
| 			minimizeToTray();
 | |
| 		} else {
 | |
| 			showFromTray(reason);
 | |
| 		}
 | |
| 		_lastTrayClickTime = crl::now();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| bool MainWindow::skipTrayClick() const {
 | |
| 	return (_lastTrayClickTime > 0)
 | |
| 		&& (crl::now() - _lastTrayClickTime
 | |
| 			< QApplication::doubleClickInterval());
 | |
| }
 | |
| 
 | |
| void MainWindow::toggleDisplayNotifyFromTray() {
 | |
| 	if (controller().locked()) {
 | |
| 		if (!isActive()) showFromTray();
 | |
| 		Ui::show(Box<InformBox>(tr::lng_passcode_need_unblock(tr::now)));
 | |
| 		return;
 | |
| 	}
 | |
| 	if (!sessionController()) {
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	auto soundNotifyChanged = false;
 | |
| 	auto flashBounceNotifyChanged = false;
 | |
| 	auto &settings = Core::App().settings();
 | |
| 	settings.setDesktopNotify(!settings.desktopNotify());
 | |
| 	if (settings.desktopNotify()) {
 | |
| 		if (settings.rememberedSoundNotifyFromTray()
 | |
| 			&& !settings.soundNotify()) {
 | |
| 			settings.setSoundNotify(true);
 | |
| 			settings.setRememberedSoundNotifyFromTray(false);
 | |
| 			soundNotifyChanged = true;
 | |
| 		}
 | |
| 		if (settings.rememberedFlashBounceNotifyFromTray()
 | |
| 			&& !settings.flashBounceNotify()) {
 | |
| 			settings.setFlashBounceNotify(true);
 | |
| 			settings.setRememberedFlashBounceNotifyFromTray(false);
 | |
| 			flashBounceNotifyChanged = true;
 | |
| 		}
 | |
| 	} else {
 | |
| 		if (settings.soundNotify()) {
 | |
| 			settings.setSoundNotify(false);
 | |
| 			settings.setRememberedSoundNotifyFromTray(true);
 | |
| 			soundNotifyChanged = true;
 | |
| 		} else {
 | |
| 			settings.setRememberedSoundNotifyFromTray(false);
 | |
| 		}
 | |
| 		if (settings.flashBounceNotify()) {
 | |
| 			settings.setFlashBounceNotify(false);
 | |
| 			settings.setRememberedFlashBounceNotifyFromTray(true);
 | |
| 			flashBounceNotifyChanged = true;
 | |
| 		} else {
 | |
| 			settings.setRememberedFlashBounceNotifyFromTray(false);
 | |
| 		}
 | |
| 	}
 | |
| 	account().session().saveSettings();
 | |
| 	using Change = Window::Notifications::ChangeType;
 | |
| 	auto &changes = Core::App().notifications().settingsChanged();
 | |
| 	changes.notify(Change::DesktopEnabled);
 | |
| 	if (soundNotifyChanged) {
 | |
| 		changes.notify(Change::SoundEnabled);
 | |
| 	}
 | |
| 	if (flashBounceNotifyChanged) {
 | |
| 		changes.notify(Change::FlashBounceEnabled);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::closeEvent(QCloseEvent *e) {
 | |
| 	if (Core::Sandbox::Instance().isSavingSession()) {
 | |
| 		e->accept();
 | |
| 		App::quit();
 | |
| 	} else {
 | |
| 		e->ignore();
 | |
| 		const auto hasAuth = [&] {
 | |
| 			if (!Core::App().domain().started()) {
 | |
| 				return false;
 | |
| 			}
 | |
| 			for (const auto &[_, account] : Core::App().domain().accounts()) {
 | |
| 				if (account->sessionExists()) {
 | |
| 					return true;
 | |
| 				}
 | |
| 			}
 | |
| 			return false;
 | |
| 		}();
 | |
| 		if (!hasAuth || !hideNoQuit()) {
 | |
| 			App::quit();
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::updateControlsGeometry() {
 | |
| 	Platform::MainWindow::updateControlsGeometry();
 | |
| 
 | |
| 	auto body = bodyWidget()->rect();
 | |
| 	if (_passcodeLock) _passcodeLock->setGeometry(body);
 | |
| 	auto mainLeft = 0;
 | |
| 	auto mainWidth = body.width();
 | |
| 	if (const auto session = sessionController()) {
 | |
| 		if (const auto skip = session->filtersWidth()) {
 | |
| 			mainLeft += skip;
 | |
| 			mainWidth -= skip;
 | |
| 		}
 | |
| 	}
 | |
| 	if (_main) {
 | |
| 		_main->setGeometry({
 | |
| 			body.x() + mainLeft,
 | |
| 			body.y(),
 | |
| 			mainWidth,
 | |
| 			body.height() });
 | |
| 	}
 | |
| 	if (_intro) _intro->setGeometry(body);
 | |
| 	if (_layer) _layer->setGeometry(body);
 | |
| 	if (_mediaPreview) _mediaPreview->setGeometry(body);
 | |
| 	if (_testingThemeWarning) _testingThemeWarning->setGeometry(body);
 | |
| 
 | |
| 	if (_main) _main->checkMainSectionToLayer();
 | |
| }
 | |
| 
 | |
| void MainWindow::placeSmallCounter(QImage &img, int size, int count, style::color bg, const QPoint &shift, style::color color) {
 | |
| 	QPainter p(&img);
 | |
| 
 | |
| 	QString cnt = (count < 100) ? QString("%1").arg(count) : QString("..%1").arg(count % 10, 1, 10, QChar('0'));
 | |
| 	int32 cntSize = cnt.size();
 | |
| 
 | |
| 	p.setBrush(bg->b);
 | |
| 	p.setPen(Qt::NoPen);
 | |
| 	p.setRenderHint(QPainter::Antialiasing);
 | |
| 	int32 fontSize;
 | |
| 	if (size == 16) {
 | |
| 		fontSize = 8;
 | |
| 	} else if (size == 32) {
 | |
| 		fontSize = (cntSize < 2) ? 12 : 12;
 | |
| 	} else {
 | |
| 		fontSize = (cntSize < 2) ? 22 : 22;
 | |
| 	}
 | |
| 	style::font f = { fontSize, 0, 0 };
 | |
| 	int32 w = f->width(cnt), d, r;
 | |
| 	if (size == 16) {
 | |
| 		d = (cntSize < 2) ? 2 : 1;
 | |
| 		r = (cntSize < 2) ? 4 : 3;
 | |
| 	} else if (size == 32) {
 | |
| 		d = (cntSize < 2) ? 5 : 2;
 | |
| 		r = (cntSize < 2) ? 8 : 7;
 | |
| 	} else {
 | |
| 		d = (cntSize < 2) ? 9 : 4;
 | |
| 		r = (cntSize < 2) ? 16 : 14;
 | |
| 	}
 | |
| 	p.drawRoundedRect(QRect(shift.x() + size - w - d * 2, shift.y() + size - f->height, w + d * 2, f->height), r, r);
 | |
| 	p.setFont(f->f);
 | |
| 
 | |
| 	p.setPen(color->p);
 | |
| 
 | |
| 	p.drawText(shift.x() + size - w - d, shift.y() + size - f->height + f->ascent, cnt);
 | |
| 
 | |
| }
 | |
| 
 | |
| QImage MainWindow::iconWithCounter(int size, int count, style::color bg, style::color fg, bool smallIcon) {
 | |
| 	bool layer = false;
 | |
| 	if (size < 0) {
 | |
| 		size = -size;
 | |
| 		layer = true;
 | |
| 	}
 | |
| 	if (layer) {
 | |
| 		if (size != 16 && size != 20 && size != 24) size = 32;
 | |
| 
 | |
| 		// platform/linux/main_window_linux depends on count used the same
 | |
| 		// way for all the same (count % 1000) values.
 | |
| 		QString cnt = (count < 1000) ? QString("%1").arg(count) : QString("..%1").arg(count % 100, 2, 10, QChar('0'));
 | |
| 		QImage result(size, size, QImage::Format_ARGB32);
 | |
| 		int32 cntSize = cnt.size();
 | |
| 		result.fill(Qt::transparent);
 | |
| 		{
 | |
| 			QPainter p(&result);
 | |
| 			p.setBrush(bg);
 | |
| 			p.setPen(Qt::NoPen);
 | |
| 			p.setRenderHint(QPainter::Antialiasing);
 | |
| 			int32 fontSize;
 | |
| 			if (size == 16) {
 | |
| 				fontSize = (cntSize < 2) ? 11 : ((cntSize < 3) ? 11 : 8);
 | |
| 			} else if (size == 20) {
 | |
| 				fontSize = (cntSize < 2) ? 14 : ((cntSize < 3) ? 13 : 10);
 | |
| 			} else if (size == 24) {
 | |
| 				fontSize = (cntSize < 2) ? 17 : ((cntSize < 3) ? 16 : 12);
 | |
| 			} else {
 | |
| 				fontSize = (cntSize < 2) ? 22 : ((cntSize < 3) ? 20 : 16);
 | |
| 			}
 | |
| 			style::font f = { fontSize, 0, 0 };
 | |
| 			int32 w = f->width(cnt), d, r;
 | |
| 			if (size == 16) {
 | |
| 				d = (cntSize < 2) ? 5 : ((cntSize < 3) ? 2 : 1);
 | |
| 				r = (cntSize < 2) ? 8 : ((cntSize < 3) ? 7 : 3);
 | |
| 			} else if (size == 20) {
 | |
| 				d = (cntSize < 2) ? 6 : ((cntSize < 3) ? 2 : 1);
 | |
| 				r = (cntSize < 2) ? 10 : ((cntSize < 3) ? 9 : 5);
 | |
| 			} else if (size == 24) {
 | |
| 				d = (cntSize < 2) ? 7 : ((cntSize < 3) ? 3 : 1);
 | |
| 				r = (cntSize < 2) ? 12 : ((cntSize < 3) ? 11 : 6);
 | |
| 			} else {
 | |
| 				d = (cntSize < 2) ? 9 : ((cntSize < 3) ? 4 : 2);
 | |
| 				r = (cntSize < 2) ? 16 : ((cntSize < 3) ? 14 : 8);
 | |
| 			}
 | |
| 			p.drawRoundedRect(QRect(size - w - d * 2, size - f->height, w + d * 2, f->height), r, r);
 | |
| 			p.setFont(f);
 | |
| 
 | |
| 			p.setPen(fg);
 | |
| 
 | |
| 			p.drawText(size - w - d, size - f->height + f->ascent, cnt);
 | |
| 		}
 | |
| 		return result;
 | |
| 	} else {
 | |
| 		if (size != 16 && size != 32) size = 64;
 | |
| 	}
 | |
| 
 | |
| 	QImage img(smallIcon ? ((size == 16) ? iconbig16 : (size == 32 ? iconbig32 : iconbig64)) : ((size == 16) ? icon16 : (size == 32 ? icon32 : icon64)));
 | |
| 	if (const auto controller = sessionController()) {
 | |
| 		if (controller->session().supportMode()) {
 | |
| 			Window::ConvertIconToBlack(img);
 | |
| 		}
 | |
| 	}
 | |
| 	if (!count) return img;
 | |
| 
 | |
| 	if (smallIcon) {
 | |
| 		placeSmallCounter(img, size, count, bg, QPoint(), fg);
 | |
| 	} else {
 | |
| 		QPainter p(&img);
 | |
| 		p.drawPixmap(size / 2, size / 2, App::pixmapFromImageInPlace(iconWithCounter(-size / 2, count, bg, fg, false)));
 | |
| 	}
 | |
| 	return img;
 | |
| }
 | |
| 
 | |
| void MainWindow::sendPaths() {
 | |
| 	if (controller().locked()) {
 | |
| 		return;
 | |
| 	}
 | |
| 	Core::App().hideMediaView();
 | |
| 	Ui::hideSettingsAndLayer(anim::type::instant);
 | |
| 	if (_main) {
 | |
| 		_main->activate();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void MainWindow::updateIsActiveHook() {
 | |
| 	if (const auto controller = sessionController()) {
 | |
| 		controller->session().updates().updateOnline();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| MainWindow::~MainWindow() {
 | |
| 	delete trayIcon;
 | |
| 	delete trayIconMenu;
 | |
| }
 | |
| 
 | |
| namespace App {
 | |
| 
 | |
| MainWindow *wnd() {
 | |
| 	return (Core::IsAppLaunched() && Core::App().activeWindow())
 | |
| 		? Core::App().activeWindow()->widget().get()
 | |
| 		: nullptr;
 | |
| }
 | |
| 
 | |
| } // namespace App
 | 
