mirror of https://github.com/procxx/kepka.git
Remove some App::wnd() occurences.
This commit is contained in:
parent
b08732cf28
commit
65d81f96f3
|
@ -280,15 +280,6 @@ PeerData *getPeerForMouseAction() {
|
||||||
return Messenger::Instance().ui_getPeerForMouseAction();
|
return Messenger::Instance().ui_getPeerForMouseAction();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool hideWindowNoQuit() {
|
|
||||||
if (!App::quitting()) {
|
|
||||||
if (auto w = App::wnd()) {
|
|
||||||
return w->hideNoQuit();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool skipPaintEvent(QWidget *widget, QPaintEvent *event) {
|
bool skipPaintEvent(QWidget *widget, QPaintEvent *event) {
|
||||||
if (auto w = App::wnd()) {
|
if (auto w = App::wnd()) {
|
||||||
if (w->contentOverlapped(widget, event)) {
|
if (w->contentOverlapped(widget, event)) {
|
||||||
|
|
|
@ -147,8 +147,6 @@ inline void showChatsListAsync() {
|
||||||
}
|
}
|
||||||
PeerData *getPeerForMouseAction();
|
PeerData *getPeerForMouseAction();
|
||||||
|
|
||||||
bool hideWindowNoQuit();
|
|
||||||
|
|
||||||
bool skipPaintEvent(QWidget *widget, QPaintEvent *event);
|
bool skipPaintEvent(QWidget *widget, QPaintEvent *event);
|
||||||
|
|
||||||
} // namespace Ui
|
} // namespace Ui
|
||||||
|
|
|
@ -776,7 +776,7 @@ void MainWindow::closeEvent(QCloseEvent *e) {
|
||||||
App::quit();
|
App::quit();
|
||||||
} else {
|
} else {
|
||||||
e->ignore();
|
e->ignore();
|
||||||
if (!AuthSession::Exists() || !Ui::hideWindowNoQuit()) {
|
if (!AuthSession::Exists() || !hideNoQuit()) {
|
||||||
App::quit();
|
App::quit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -187,7 +187,9 @@ Messenger::Messenger() : QObject()
|
||||||
bool Messenger::hideMediaView() {
|
bool Messenger::hideMediaView() {
|
||||||
if (_mediaView && !_mediaView->isHidden()) {
|
if (_mediaView && !_mediaView->isHidden()) {
|
||||||
_mediaView->hide();
|
_mediaView->hide();
|
||||||
_window->reActivateWindow();
|
if (auto activeWindow = getActiveWindow()) {
|
||||||
|
activeWindow->reActivateWindow();
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
@ -930,10 +932,36 @@ Messenger::~Messenger() {
|
||||||
SingleInstance = nullptr;
|
SingleInstance = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
MainWindow *Messenger::getActiveWindow() {
|
MainWindow *Messenger::getActiveWindow() const {
|
||||||
return _window.get();
|
return _window.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Messenger::closeActiveWindow() {
|
||||||
|
if (hideMediaView()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (auto activeWindow = getActiveWindow()) {
|
||||||
|
if (!activeWindow->hideNoQuit()) {
|
||||||
|
activeWindow->close();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Messenger::minimizeActiveWindow() {
|
||||||
|
hideMediaView();
|
||||||
|
if (auto activeWindow = getActiveWindow()) {
|
||||||
|
if (Global::WorkMode().value() == dbiwmTrayOnly) {
|
||||||
|
activeWindow->minimizeToTray();
|
||||||
|
} else {
|
||||||
|
activeWindow->setWindowState(Qt::WindowMinimized);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget *Messenger::getFileDialogParent() {
|
QWidget *Messenger::getFileDialogParent() {
|
||||||
return (_mediaView && _mediaView->isVisible()) ? (QWidget*)_mediaView.get() : (QWidget*)getActiveWindow();
|
return (_mediaView && _mediaView->isVisible()) ? (QWidget*)_mediaView.get() : (QWidget*)getActiveWindow();
|
||||||
}
|
}
|
||||||
|
@ -955,12 +983,14 @@ void Messenger::loggedOut() {
|
||||||
}
|
}
|
||||||
|
|
||||||
QPoint Messenger::getPointForCallPanelCenter() const {
|
QPoint Messenger::getPointForCallPanelCenter() const {
|
||||||
Expects(_window != nullptr);
|
if (auto activeWindow = getActiveWindow()) {
|
||||||
Expects(_window->windowHandle() != nullptr);
|
t_assert(activeWindow->windowHandle() != nullptr);
|
||||||
if (_window->isActive()) {
|
if (activeWindow->isActive()) {
|
||||||
return _window->geometry().center();
|
return activeWindow->geometry().center();
|
||||||
|
}
|
||||||
|
return activeWindow->windowHandle()->screen()->geometry().center();
|
||||||
}
|
}
|
||||||
return _window->windowHandle()->screen()->geometry().center();
|
return QApplication::desktop()->screenGeometry().center();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Messenger::QuitAttempt() {
|
void Messenger::QuitAttempt() {
|
||||||
|
|
|
@ -71,7 +71,9 @@ public:
|
||||||
~Messenger();
|
~Messenger();
|
||||||
|
|
||||||
// Windows interface.
|
// Windows interface.
|
||||||
MainWindow *getActiveWindow();
|
MainWindow *getActiveWindow() const;
|
||||||
|
bool closeActiveWindow();
|
||||||
|
bool minimizeActiveWindow();
|
||||||
QWidget *getFileDialogParent();
|
QWidget *getFileDialogParent();
|
||||||
QWidget *getGlobalShortcutParent() {
|
QWidget *getGlobalShortcutParent() {
|
||||||
return &_globalShortcutParent;
|
return &_globalShortcutParent;
|
||||||
|
|
|
@ -33,38 +33,19 @@ namespace ShortcutCommands {
|
||||||
using Handler = bool(*)();
|
using Handler = bool(*)();
|
||||||
|
|
||||||
bool lock_telegram() {
|
bool lock_telegram() {
|
||||||
if (auto w = App::wnd()) {
|
if (!App::passcoded() && Global::LocalPasscode()) {
|
||||||
if (App::passcoded()) {
|
Messenger::Instance().setupPasscode();
|
||||||
w->passcodeWidget()->onSubmit();
|
return true;
|
||||||
return true;
|
|
||||||
} else if (Global::LocalPasscode()) {
|
|
||||||
Messenger::Instance().setupPasscode();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool minimize_telegram() {
|
bool minimize_telegram() {
|
||||||
if (auto w = App::wnd()) {
|
return Messenger::Instance().minimizeActiveWindow();
|
||||||
if (Global::WorkMode().value() == dbiwmTrayOnly) {
|
|
||||||
w->minimizeToTray();
|
|
||||||
} else {
|
|
||||||
w->setWindowState(Qt::WindowMinimized);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool close_telegram() {
|
bool close_telegram() {
|
||||||
if (!Messenger::Instance().hideMediaView()) {
|
return Messenger::Instance().closeActiveWindow();
|
||||||
if (!Ui::hideWindowNoQuit()) {
|
|
||||||
if (auto w = App::wnd()) {
|
|
||||||
w->close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool quit_telegram() {
|
bool quit_telegram() {
|
||||||
|
|
|
@ -80,6 +80,9 @@ MainWindow::MainWindow() : QWidget()
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWindow::hideNoQuit() {
|
bool MainWindow::hideNoQuit() {
|
||||||
|
if (App::quitting()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
if (Global::WorkMode().value() == dbiwmTrayOnly || Global::WorkMode().value() == dbiwmWindowAndTray) {
|
if (Global::WorkMode().value() == dbiwmTrayOnly || Global::WorkMode().value() == dbiwmWindowAndTray) {
|
||||||
if (minimizeToTray()) {
|
if (minimizeToTray()) {
|
||||||
Ui::showChatsList();
|
Ui::showChatsList();
|
||||||
|
|
Loading…
Reference in New Issue