2010-09-19 10:59:32 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
2017-06-09 17:40:36 -04:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2010-09-19 10:59:32 -04: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 09:18:16 -04:00
|
|
|
#include <QActionGroup>
|
|
|
|
#include <QMainWindow>
|
2014-11-02 04:15:44 -05:00
|
|
|
#include <QSystemTrayIcon>
|
2010-09-19 10:59:32 -04:00
|
|
|
|
2016-12-23 19:04:43 -05:00
|
|
|
#include "core/ScreenLockListener.h"
|
2018-03-31 16:01:30 -04:00
|
|
|
#include "core/SignalMultiplexer.h"
|
2017-02-23 21:25:08 -05:00
|
|
|
#include "gui/Application.h"
|
2018-03-31 16:01:30 -04:00
|
|
|
#include "gui/DatabaseWidget.h"
|
2012-04-24 19:32:05 -04:00
|
|
|
|
2018-03-31 16:01:30 -04:00
|
|
|
namespace Ui
|
|
|
|
{
|
2011-12-26 12:55:50 -05:00
|
|
|
class MainWindow;
|
|
|
|
}
|
2010-09-19 10:59:32 -04:00
|
|
|
|
2014-01-07 15:56:58 -05:00
|
|
|
class InactivityTimer;
|
2019-06-11 03:37:23 -04:00
|
|
|
class SearchWidget;
|
2014-01-07 15:56:58 -05:00
|
|
|
|
2011-12-26 12:55:50 -05:00
|
|
|
class MainWindow : public QMainWindow
|
2010-09-19 10:59:32 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2018-03-31 16:01:30 -04:00
|
|
|
|
2018-10-26 09:19:04 -04:00
|
|
|
#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) && !defined(QT_NO_DBUS)
|
2018-01-15 18:49:32 -05:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.keepassxc.KeePassXC.MainWindow")
|
2017-02-10 09:42:18 -05:00
|
|
|
#endif
|
2010-09-19 10:59:32 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
MainWindow();
|
2011-12-26 12:55:50 -05:00
|
|
|
~MainWindow();
|
2017-05-17 04:05:45 -04:00
|
|
|
|
2017-03-29 16:00:03 -04:00
|
|
|
enum StackedWidgetIndex
|
|
|
|
{
|
|
|
|
DatabaseTabScreen = 0,
|
|
|
|
SettingsScreen = 1,
|
|
|
|
WelcomeScreen = 2,
|
|
|
|
PasswordGeneratorScreen = 3
|
|
|
|
};
|
2012-05-17 17:59:31 -04:00
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
public slots:
|
2019-03-21 17:36:57 -04:00
|
|
|
void openDatabase(const QString& filePath, const QString& password = {}, const QString& keyfile = {});
|
2017-01-17 18:15:33 -05:00
|
|
|
void appExit();
|
2018-03-31 16:01:30 -04:00
|
|
|
void displayGlobalMessage(const QString& text,
|
|
|
|
MessageWidget::MessageType type,
|
|
|
|
bool showClosebutton = true,
|
2017-10-19 14:46:09 -04:00
|
|
|
int autoHideTimeout = MessageWidget::DefaultAutoHideTimeout);
|
2018-03-31 16:01:30 -04:00
|
|
|
void displayTabMessage(const QString& text,
|
|
|
|
MessageWidget::MessageType type,
|
|
|
|
bool showClosebutton = true,
|
2017-10-19 14:46:09 -04:00
|
|
|
int autoHideTimeout = MessageWidget::DefaultAutoHideTimeout);
|
2017-02-23 21:25:08 -05:00
|
|
|
void hideGlobalMessage();
|
2017-02-24 11:27:27 -05:00
|
|
|
void showYubiKeyPopup();
|
|
|
|
void hideYubiKeyPopup();
|
2018-09-14 17:41:30 -04:00
|
|
|
void hideWindow();
|
|
|
|
void toggleWindow();
|
2017-12-05 10:25:08 -05:00
|
|
|
void bringToFront();
|
2017-02-10 09:42:18 -05:00
|
|
|
void closeAllDatabases();
|
2018-01-15 18:49:32 -05:00
|
|
|
void lockAllDatabases();
|
2019-02-21 00:51:23 -05:00
|
|
|
void displayDesktopNotification(const QString& msg, QString title = "", int msTimeoutHint = 10000);
|
2011-11-13 08:55:20 -05:00
|
|
|
|
2012-04-11 14:35:52 -04:00
|
|
|
protected:
|
2018-01-15 18:49:32 -05:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
|
|
|
void changeEvent(QEvent* event) override;
|
2012-04-11 14:35:52 -04:00
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
private slots:
|
2018-11-22 05:47:31 -05:00
|
|
|
void setMenuActionState(DatabaseWidget::Mode mode = DatabaseWidget::Mode::None);
|
2012-04-21 16:02:12 -04:00
|
|
|
void updateWindowTitle();
|
2012-05-02 09:37:21 -04:00
|
|
|
void showAboutDialog();
|
2019-01-30 09:11:50 -05:00
|
|
|
void showUpdateCheckStartup();
|
|
|
|
void showUpdateCheckDialog();
|
2019-05-03 14:40:45 -04:00
|
|
|
void focusWindowChanged(QWindow* focusWindow);
|
2019-01-30 09:11:50 -05:00
|
|
|
void hasUpdateAvailable(bool hasUpdate, const QString& version, bool isManuallyRequested);
|
2018-08-20 18:46:46 -04:00
|
|
|
void openDonateUrl();
|
|
|
|
void openBugReportUrl();
|
2019-06-18 20:46:46 -04:00
|
|
|
void openGettingStartedGuide();
|
|
|
|
void openUserGuide();
|
|
|
|
void openOnlineHelp();
|
2012-05-27 05:09:52 -04:00
|
|
|
void switchToDatabases();
|
2018-08-20 18:46:46 -04:00
|
|
|
void switchToSettings(bool enabled);
|
2016-11-23 21:59:24 -05:00
|
|
|
void switchToPasswordGen(bool enabled);
|
2017-02-11 13:04:37 -05:00
|
|
|
void switchToNewDatabase();
|
|
|
|
void switchToOpenDatabase();
|
2018-10-28 07:49:32 -04:00
|
|
|
void switchToDatabaseFile(const QString& file);
|
2017-02-11 13:04:37 -05:00
|
|
|
void switchToKeePass1Database();
|
2019-05-19 17:49:48 -04:00
|
|
|
void switchToOpVaultDatabase();
|
2018-05-13 17:21:43 -04:00
|
|
|
void switchToCsvImport();
|
2016-11-23 21:59:24 -05:00
|
|
|
void closePasswordGen();
|
2018-03-31 16:01:30 -04:00
|
|
|
void databaseStatusChanged(DatabaseWidget* dbWidget);
|
2012-05-28 12:49:16 -04:00
|
|
|
void databaseTabChanged(int tabIndex);
|
2012-07-23 15:12:19 -04:00
|
|
|
void openRecentDatabase(QAction* action);
|
|
|
|
void clearLastDatabases();
|
|
|
|
void updateLastDatabasesMenu();
|
2012-10-23 18:15:23 -04:00
|
|
|
void updateCopyAttributesMenu();
|
2012-08-01 04:35:37 -04:00
|
|
|
void showEntryContextMenu(const QPoint& globalPos);
|
|
|
|
void showGroupContextMenu(const QPoint& globalPos);
|
2014-01-07 15:56:58 -05:00
|
|
|
void applySettingsChanges();
|
2014-11-02 04:15:44 -05:00
|
|
|
void trayIconTriggered(QSystemTrayIcon::ActivationReason reason);
|
2019-05-03 14:40:45 -04:00
|
|
|
void processTrayIconTrigger();
|
2015-07-13 15:17:11 -04:00
|
|
|
void lockDatabasesAfterInactivity();
|
2018-04-04 11:39:26 -04:00
|
|
|
void forgetTouchIDAfterInactivity();
|
2016-12-23 19:04:43 -05:00
|
|
|
void handleScreenLock();
|
2018-03-03 10:49:00 -05:00
|
|
|
void showErrorMessage(const QString& message);
|
2018-09-14 17:41:30 -04:00
|
|
|
void selectNextDatabaseTab();
|
|
|
|
void selectPreviousDatabaseTab();
|
2018-11-16 10:00:59 -05:00
|
|
|
void togglePasswordsHidden();
|
|
|
|
void toggleUsernamesHidden();
|
2019-06-11 03:37:23 -04:00
|
|
|
void obtainContextFocusLock();
|
2019-05-30 17:28:47 -04:00
|
|
|
void releaseContextFocusLock();
|
2012-04-16 15:28:49 -04:00
|
|
|
|
2011-11-13 08:55:20 -05:00
|
|
|
private:
|
2012-05-15 12:16:04 -04:00
|
|
|
static void setShortcut(QAction* action, QKeySequence::StandardKey standard, int fallback = 0);
|
|
|
|
|
2012-05-14 13:10:42 -04:00
|
|
|
static const QString BaseWindowTitle;
|
|
|
|
|
2014-03-22 07:21:49 -04:00
|
|
|
void saveWindowInformation();
|
2014-03-22 07:53:42 -04:00
|
|
|
bool saveLastDatabases();
|
2014-11-02 04:15:44 -05:00
|
|
|
void updateTrayIcon();
|
|
|
|
bool isTrayIconEnabled() const;
|
2019-06-18 20:46:46 -04:00
|
|
|
void customOpenUrl(QString url);
|
2014-03-22 07:21:49 -04:00
|
|
|
|
2017-12-05 02:44:01 -05:00
|
|
|
static QStringList kdbxFilesFromUrls(const QList<QUrl>& urls);
|
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
|
2012-04-23 13:44:43 -04:00
|
|
|
const QScopedPointer<Ui::MainWindow> m_ui;
|
2012-08-01 04:35:37 -04:00
|
|
|
SignalMultiplexer m_actionMultiplexer;
|
2012-07-23 15:12:19 -04:00
|
|
|
QAction* m_clearHistoryAction;
|
2016-11-02 21:01:02 -04:00
|
|
|
QAction* m_searchWidgetAction;
|
2012-07-23 15:12:19 -04:00
|
|
|
QActionGroup* m_lastDatabasesActions;
|
2012-10-23 18:15:23 -04:00
|
|
|
QActionGroup* m_copyAdditionalAttributeActions;
|
2014-01-07 15:56:58 -05:00
|
|
|
InactivityTimer* m_inactivityTimer;
|
2018-04-04 11:39:26 -04:00
|
|
|
InactivityTimer* m_touchIDinactivityTimer;
|
2014-05-15 12:05:58 -04:00
|
|
|
int m_countDefaultAttributes;
|
2014-11-02 04:15:44 -05:00
|
|
|
QSystemTrayIcon* m_trayIcon;
|
2016-12-23 19:04:43 -05:00
|
|
|
ScreenLockListener* m_screenLockListener;
|
2019-06-11 03:37:23 -04:00
|
|
|
QPointer<SearchWidget> m_searchWidget;
|
2011-12-26 12:55:50 -05:00
|
|
|
|
|
|
|
Q_DISABLE_COPY(MainWindow)
|
2015-06-18 09:23:41 -04:00
|
|
|
|
2017-05-17 04:05:45 -04:00
|
|
|
bool m_appExitCalled;
|
|
|
|
bool m_appExiting;
|
2019-05-30 17:28:47 -04:00
|
|
|
bool m_contextMenuFocusLock;
|
2019-05-03 14:40:45 -04:00
|
|
|
uint m_lastFocusOutTime;
|
|
|
|
QTimer m_trayIconTriggerTimer;
|
|
|
|
QSystemTrayIcon::ActivationReason m_trayIconTriggerReason;
|
2010-09-19 10:59:32 -04:00
|
|
|
};
|
|
|
|
|
2018-11-01 21:33:27 -04:00
|
|
|
/**
|
|
|
|
* Return instance of MainWindow created on app load
|
|
|
|
* non-gui instances will return nullptr
|
|
|
|
*
|
|
|
|
* @return MainWindow instance or nullptr
|
|
|
|
*/
|
|
|
|
MainWindow* getMainWindow();
|
2017-02-23 21:25:08 -05:00
|
|
|
|
2010-09-19 10:59:32 -04:00
|
|
|
#endif // KEEPASSX_MAINWINDOW_H
|