2010-09-19 14:59:32 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
2020-10-09 02:48:45 +00:00
|
|
|
* Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
|
2010-09-19 14:59:32 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
|
* version 3 of the License.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef KEEPASSX_MAINWINDOW_H
|
|
|
|
|
#define KEEPASSX_MAINWINDOW_H
|
|
|
|
|
|
2013-10-03 13:18:16 +00:00
|
|
|
#include <QActionGroup>
|
2021-04-01 03:12:59 +00:00
|
|
|
#include <QLabel>
|
2013-10-03 13:18:16 +00:00
|
|
|
#include <QMainWindow>
|
2021-04-01 03:12:59 +00:00
|
|
|
#include <QProgressBar>
|
2014-11-02 09:15:44 +00:00
|
|
|
#include <QSystemTrayIcon>
|
2010-09-19 14:59:32 +00:00
|
|
|
|
2018-03-31 20:01:30 +00:00
|
|
|
#include "core/SignalMultiplexer.h"
|
|
|
|
|
#include "gui/DatabaseWidget.h"
|
2020-10-03 16:16:35 +00:00
|
|
|
#include "gui/osutils/ScreenLockListener.h"
|
2012-04-24 23:32:05 +00:00
|
|
|
|
2018-03-31 20:01:30 +00:00
|
|
|
namespace Ui
|
|
|
|
|
{
|
2011-12-26 17:55:50 +00:00
|
|
|
class MainWindow;
|
|
|
|
|
}
|
2010-09-19 14:59:32 +00:00
|
|
|
|
2014-01-07 20:56:58 +00:00
|
|
|
class InactivityTimer;
|
2019-06-11 07:37:23 +00:00
|
|
|
class SearchWidget;
|
2020-12-22 00:03:39 +00:00
|
|
|
class MainWindowEventFilter;
|
2014-01-07 20:56:58 +00:00
|
|
|
|
2011-12-26 17:55:50 +00:00
|
|
|
class MainWindow : public QMainWindow
|
2010-09-19 14:59:32 +00:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2018-03-31 20:01:30 +00:00
|
|
|
|
2018-10-26 13:19:04 +00:00
|
|
|
#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) && !defined(QT_NO_DBUS)
|
2018-01-15 23:49:32 +00:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.keepassxc.KeePassXC.MainWindow")
|
2017-02-10 14:42:18 +00:00
|
|
|
#endif
|
2010-09-19 14:59:32 +00:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
MainWindow();
|
2011-12-26 17:55:50 +00:00
|
|
|
~MainWindow();
|
2017-05-17 08:05:45 +00:00
|
|
|
|
2020-05-11 01:20:00 +00:00
|
|
|
QList<DatabaseWidget*> getOpenDatabases();
|
2020-10-09 02:48:45 +00:00
|
|
|
void restoreConfigState();
|
2020-05-11 01:20:00 +00:00
|
|
|
|
2017-03-29 20:00:03 +00:00
|
|
|
enum StackedWidgetIndex
|
|
|
|
|
{
|
|
|
|
|
DatabaseTabScreen = 0,
|
|
|
|
|
SettingsScreen = 1,
|
|
|
|
|
WelcomeScreen = 2,
|
|
|
|
|
PasswordGeneratorScreen = 3
|
|
|
|
|
};
|
2012-05-17 21:59:31 +00:00
|
|
|
|
2021-02-15 22:28:16 +00:00
|
|
|
signals:
|
|
|
|
|
void databaseUnlocked(DatabaseWidget* dbWidget);
|
|
|
|
|
void databaseLocked(DatabaseWidget* dbWidget);
|
|
|
|
|
void activeDatabaseChanged(DatabaseWidget* dbWidget);
|
|
|
|
|
|
2017-03-10 14:58:42 +00:00
|
|
|
public slots:
|
2019-03-21 21:36:57 +00:00
|
|
|
void openDatabase(const QString& filePath, const QString& password = {}, const QString& keyfile = {});
|
2017-01-17 23:15:33 +00:00
|
|
|
void appExit();
|
2022-05-14 13:41:03 +00:00
|
|
|
bool isHardwareKeySupported();
|
|
|
|
|
bool refreshHardwareKeys();
|
2018-03-31 20:01:30 +00:00
|
|
|
void displayGlobalMessage(const QString& text,
|
|
|
|
|
MessageWidget::MessageType type,
|
|
|
|
|
bool showClosebutton = true,
|
2017-10-19 18:46:09 +00:00
|
|
|
int autoHideTimeout = MessageWidget::DefaultAutoHideTimeout);
|
2018-03-31 20:01:30 +00:00
|
|
|
void displayTabMessage(const QString& text,
|
|
|
|
|
MessageWidget::MessageType type,
|
|
|
|
|
bool showClosebutton = true,
|
2017-10-19 18:46:09 +00:00
|
|
|
int autoHideTimeout = MessageWidget::DefaultAutoHideTimeout);
|
2017-02-24 02:25:08 +00:00
|
|
|
void hideGlobalMessage();
|
2017-02-24 16:27:27 +00:00
|
|
|
void showYubiKeyPopup();
|
|
|
|
|
void hideYubiKeyPopup();
|
2020-02-24 11:33:43 +00:00
|
|
|
void hide();
|
|
|
|
|
void show();
|
2018-09-14 21:41:30 +00:00
|
|
|
void hideWindow();
|
2020-02-24 11:33:43 +00:00
|
|
|
void minimizeOrHide();
|
2018-09-14 21:41:30 +00:00
|
|
|
void toggleWindow();
|
2017-12-05 15:25:08 +00:00
|
|
|
void bringToFront();
|
2017-02-10 14:42:18 +00:00
|
|
|
void closeAllDatabases();
|
2018-01-15 23:49:32 +00:00
|
|
|
void lockAllDatabases();
|
2021-02-14 03:13:10 +00:00
|
|
|
void closeModalWindow();
|
2019-02-21 05:51:23 +00:00
|
|
|
void displayDesktopNotification(const QString& msg, QString title = "", int msTimeoutHint = 10000);
|
2020-06-28 14:01:24 +00:00
|
|
|
void restartApp(const QString& message);
|
2011-11-13 13:55:20 +00:00
|
|
|
|
2012-04-11 18:35:52 +00:00
|
|
|
protected:
|
2018-01-15 23:49:32 +00:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
|
|
|
|
void changeEvent(QEvent* event) override;
|
2020-07-14 22:34:53 +00:00
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
2020-04-21 22:46:21 +00:00
|
|
|
bool focusNextPrevChild(bool next) override;
|
2012-04-11 18:35:52 +00:00
|
|
|
|
2017-03-10 14:58:42 +00:00
|
|
|
private slots:
|
2018-11-22 10:47:31 +00:00
|
|
|
void setMenuActionState(DatabaseWidget::Mode mode = DatabaseWidget::Mode::None);
|
2020-04-30 09:24:26 +00:00
|
|
|
void updateToolbarSeparatorVisibility();
|
2012-04-21 20:02:12 +00:00
|
|
|
void updateWindowTitle();
|
2012-05-02 13:37:21 +00:00
|
|
|
void showAboutDialog();
|
2020-06-03 02:57:12 +00:00
|
|
|
void performUpdateCheck();
|
2019-01-30 14:11:50 +00:00
|
|
|
void showUpdateCheckDialog();
|
2019-05-03 18:40:45 +00:00
|
|
|
void focusWindowChanged(QWindow* focusWindow);
|
2019-01-30 14:11:50 +00:00
|
|
|
void hasUpdateAvailable(bool hasUpdate, const QString& version, bool isManuallyRequested);
|
2018-08-20 22:46:46 +00:00
|
|
|
void openDonateUrl();
|
|
|
|
|
void openBugReportUrl();
|
2019-06-19 00:46:46 +00:00
|
|
|
void openGettingStartedGuide();
|
|
|
|
|
void openUserGuide();
|
|
|
|
|
void openOnlineHelp();
|
2019-08-31 02:55:02 +00:00
|
|
|
void openKeyboardShortcuts();
|
2012-05-27 09:09:52 +00:00
|
|
|
void switchToDatabases();
|
2018-08-20 22:46:46 +00:00
|
|
|
void switchToSettings(bool enabled);
|
2020-06-04 12:11:12 +00:00
|
|
|
void togglePasswordGenerator(bool enabled);
|
2017-02-11 18:04:37 +00:00
|
|
|
void switchToNewDatabase();
|
|
|
|
|
void switchToOpenDatabase();
|
2018-10-28 11:49:32 +00:00
|
|
|
void switchToDatabaseFile(const QString& file);
|
2017-02-11 18:04:37 +00:00
|
|
|
void switchToKeePass1Database();
|
2019-05-19 21:49:48 +00:00
|
|
|
void switchToOpVaultDatabase();
|
2018-05-13 21:21:43 +00:00
|
|
|
void switchToCsvImport();
|
2018-03-31 20:01:30 +00:00
|
|
|
void databaseStatusChanged(DatabaseWidget* dbWidget);
|
2012-05-28 16:49:16 +00:00
|
|
|
void databaseTabChanged(int tabIndex);
|
2012-07-23 19:12:19 +00:00
|
|
|
void openRecentDatabase(QAction* action);
|
|
|
|
|
void clearLastDatabases();
|
|
|
|
|
void updateLastDatabasesMenu();
|
2012-10-23 22:15:23 +00:00
|
|
|
void updateCopyAttributesMenu();
|
2022-09-07 23:25:23 +00:00
|
|
|
void updateSetTagsMenu();
|
2012-08-01 08:35:37 +00:00
|
|
|
void showEntryContextMenu(const QPoint& globalPos);
|
|
|
|
|
void showGroupContextMenu(const QPoint& globalPos);
|
2014-01-07 20:56:58 +00:00
|
|
|
void applySettingsChanges();
|
2014-11-02 09:15:44 +00:00
|
|
|
void trayIconTriggered(QSystemTrayIcon::ActivationReason reason);
|
2019-05-03 18:40:45 +00:00
|
|
|
void processTrayIconTrigger();
|
2015-07-13 19:17:11 +00:00
|
|
|
void lockDatabasesAfterInactivity();
|
2016-12-24 00:04:43 +00:00
|
|
|
void handleScreenLock();
|
2018-03-03 15:49:00 +00:00
|
|
|
void showErrorMessage(const QString& message);
|
2018-09-14 21:41:30 +00:00
|
|
|
void selectNextDatabaseTab();
|
|
|
|
|
void selectPreviousDatabaseTab();
|
2020-02-09 08:06:19 +00:00
|
|
|
void selectDatabaseTab(int tabIndex, bool wrap = false);
|
2019-06-11 07:37:23 +00:00
|
|
|
void obtainContextFocusLock();
|
2019-05-30 21:28:47 +00:00
|
|
|
void releaseContextFocusLock();
|
2018-05-10 13:12:36 +00:00
|
|
|
void agentEnabled(bool enabled);
|
2020-05-30 20:46:06 +00:00
|
|
|
void updateTrayIcon();
|
2021-04-01 03:12:59 +00:00
|
|
|
void updateProgressBar(int percentage, QString message);
|
2022-09-05 16:56:10 +00:00
|
|
|
void updateEntryCountLabel();
|
2021-02-21 13:28:10 +00:00
|
|
|
void focusSearchWidget();
|
2020-05-30 20:46:06 +00:00
|
|
|
|
2011-11-13 13:55:20 +00:00
|
|
|
private:
|
2012-05-15 16:16:04 +00:00
|
|
|
static void setShortcut(QAction* action, QKeySequence::StandardKey standard, int fallback = 0);
|
|
|
|
|
|
2012-05-14 17:10:42 +00:00
|
|
|
static const QString BaseWindowTitle;
|
|
|
|
|
|
2014-03-22 11:21:49 +00:00
|
|
|
void saveWindowInformation();
|
2014-03-22 11:53:42 +00:00
|
|
|
bool saveLastDatabases();
|
2014-11-02 09:15:44 +00:00
|
|
|
bool isTrayIconEnabled() const;
|
2019-06-19 00:46:46 +00:00
|
|
|
void customOpenUrl(QString url);
|
2014-03-22 11:21:49 +00:00
|
|
|
|
2017-12-05 07:44:01 +00:00
|
|
|
static QStringList kdbxFilesFromUrls(const QList<QUrl>& urls);
|
|
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
|
|
2020-06-28 14:01:24 +00:00
|
|
|
void initViewMenu();
|
|
|
|
|
|
2012-04-23 17:44:43 +00:00
|
|
|
const QScopedPointer<Ui::MainWindow> m_ui;
|
2012-08-01 08:35:37 +00:00
|
|
|
SignalMultiplexer m_actionMultiplexer;
|
2019-10-26 14:14:28 +00:00
|
|
|
QPointer<QAction> m_clearHistoryAction;
|
|
|
|
|
QPointer<QAction> m_searchWidgetAction;
|
|
|
|
|
QPointer<QMenu> m_entryContextMenu;
|
2019-10-26 18:54:52 +00:00
|
|
|
QPointer<QMenu> m_entryNewContextMenu;
|
2019-10-26 14:14:28 +00:00
|
|
|
QPointer<QActionGroup> m_lastDatabasesActions;
|
|
|
|
|
QPointer<QActionGroup> m_copyAdditionalAttributeActions;
|
2022-09-07 23:25:23 +00:00
|
|
|
QPointer<QActionGroup> m_setTagsMenuActions;
|
2019-10-26 14:14:28 +00:00
|
|
|
QPointer<InactivityTimer> m_inactivityTimer;
|
|
|
|
|
QPointer<InactivityTimer> m_touchIDinactivityTimer;
|
2014-05-15 16:05:58 +00:00
|
|
|
int m_countDefaultAttributes;
|
2019-10-26 14:14:28 +00:00
|
|
|
QPointer<QSystemTrayIcon> m_trayIcon;
|
|
|
|
|
QPointer<ScreenLockListener> m_screenLockListener;
|
2019-06-11 07:37:23 +00:00
|
|
|
QPointer<SearchWidget> m_searchWidget;
|
2021-04-01 03:12:59 +00:00
|
|
|
QPointer<QProgressBar> m_progressBar;
|
|
|
|
|
QPointer<QLabel> m_progressBarLabel;
|
2022-09-05 16:56:10 +00:00
|
|
|
QPointer<QLabel> m_statusBarLabel;
|
2011-12-26 17:55:50 +00:00
|
|
|
|
|
|
|
|
Q_DISABLE_COPY(MainWindow)
|
2015-06-18 13:23:41 +00:00
|
|
|
|
2019-10-26 14:14:28 +00:00
|
|
|
bool m_appExitCalled = false;
|
|
|
|
|
bool m_appExiting = false;
|
2020-06-28 14:01:24 +00:00
|
|
|
bool m_restartRequested = false;
|
2019-10-26 14:14:28 +00:00
|
|
|
bool m_contextMenuFocusLock = false;
|
2020-01-06 02:00:25 +00:00
|
|
|
bool m_showToolbarSeparator = false;
|
2020-02-24 11:33:43 +00:00
|
|
|
qint64 m_lastFocusOutTime = 0;
|
|
|
|
|
qint64 m_lastShowTime = 0;
|
2020-06-03 02:57:12 +00:00
|
|
|
QTimer m_updateCheckTimer;
|
2019-05-03 18:40:45 +00:00
|
|
|
QTimer m_trayIconTriggerTimer;
|
|
|
|
|
QSystemTrayIcon::ActivationReason m_trayIconTriggerReason;
|
2020-12-22 00:03:39 +00:00
|
|
|
|
|
|
|
|
friend class MainWindowEventFilter;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
|
|
|
|
|
class MainWindowEventFilter : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit MainWindowEventFilter(QObject* parent);
|
|
|
|
|
bool eventFilter(QObject* watched, QEvent* event) override;
|
2010-09-19 14:59:32 +00:00
|
|
|
};
|
2020-12-22 00:03:39 +00:00
|
|
|
#endif
|
2010-09-19 14:59:32 +00:00
|
|
|
|
2018-11-02 01:33:27 +00:00
|
|
|
/**
|
|
|
|
|
* Return instance of MainWindow created on app load
|
|
|
|
|
* non-gui instances will return nullptr
|
|
|
|
|
*
|
|
|
|
|
* @return MainWindow instance or nullptr
|
|
|
|
|
*/
|
|
|
|
|
MainWindow* getMainWindow();
|
2017-02-24 02:25:08 +00:00
|
|
|
|
2010-09-19 14:59:32 +00:00
|
|
|
#endif // KEEPASSX_MAINWINDOW_H
|