2010-09-19 14:59:32 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
|
|
|
*
|
|
|
|
|
* 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>
|
|
|
|
|
#include <QMainWindow>
|
2014-11-02 09:15:44 +00:00
|
|
|
#include <QSystemTrayIcon>
|
2010-09-19 14:59:32 +00:00
|
|
|
|
2012-08-01 08:35:37 +00:00
|
|
|
#include "core/SignalMultiplexer.h"
|
2016-12-24 00:04:43 +00:00
|
|
|
#include "core/ScreenLockListener.h"
|
2012-04-24 23:32:05 +00:00
|
|
|
#include "gui/DatabaseWidget.h"
|
2017-02-24 02:25:08 +00:00
|
|
|
#include "gui/Application.h"
|
2012-04-24 23:32:05 +00:00
|
|
|
|
2011-12-26 17:55:50 +00:00
|
|
|
namespace Ui {
|
|
|
|
|
class MainWindow;
|
|
|
|
|
}
|
2010-09-19 14:59:32 +00:00
|
|
|
|
2014-01-07 20:56:58 +00:00
|
|
|
class InactivityTimer;
|
|
|
|
|
|
2011-12-26 17:55:50 +00:00
|
|
|
class MainWindow : public QMainWindow
|
2010-09-19 14:59:32 +00:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
MainWindow();
|
2011-12-26 17:55:50 +00:00
|
|
|
~MainWindow();
|
2017-05-17 08:05:45 +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
|
|
|
|
2017-03-10 14:58:42 +00:00
|
|
|
public slots:
|
2012-05-17 21:59:31 +00:00
|
|
|
void openDatabase(const QString& fileName, const QString& pw = QString(),
|
|
|
|
|
const QString& keyFile = QString());
|
2017-01-17 23:15:33 +00:00
|
|
|
void appExit();
|
2017-02-25 21:09:55 +00:00
|
|
|
void displayGlobalMessage(const QString& text, MessageWidget::MessageType type, bool showClosebutton = true);
|
|
|
|
|
void displayTabMessage(const QString& text, MessageWidget::MessageType type, bool showClosebutton = true);
|
2017-02-24 02:25:08 +00:00
|
|
|
void hideGlobalMessage();
|
2017-02-24 16:27:27 +00:00
|
|
|
void showYubiKeyPopup();
|
|
|
|
|
void hideYubiKeyPopup();
|
2011-11-13 13:55:20 +00:00
|
|
|
|
2012-04-11 18:35:52 +00:00
|
|
|
protected:
|
2015-07-24 16:28:12 +00:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
|
|
|
|
void changeEvent(QEvent* event) override;
|
2012-04-11 18:35:52 +00:00
|
|
|
|
2017-03-10 14:58:42 +00:00
|
|
|
private slots:
|
2012-04-24 23:32:05 +00:00
|
|
|
void setMenuActionState(DatabaseWidget::Mode mode = DatabaseWidget::None);
|
2012-04-21 20:02:12 +00:00
|
|
|
void updateWindowTitle();
|
2012-05-02 13:37:21 +00:00
|
|
|
void showAboutDialog();
|
2012-05-27 09:09:52 +00:00
|
|
|
void switchToDatabases();
|
|
|
|
|
void switchToSettings();
|
2016-11-24 02:59:24 +00:00
|
|
|
void switchToPasswordGen(bool enabled);
|
2017-02-11 18:04:37 +00:00
|
|
|
void switchToNewDatabase();
|
|
|
|
|
void switchToOpenDatabase();
|
|
|
|
|
void switchToDatabaseFile(QString file);
|
|
|
|
|
void switchToKeePass1Database();
|
2017-03-21 22:54:30 +00:00
|
|
|
void switchToImportCsv();
|
2016-11-24 02:59:24 +00:00
|
|
|
void closePasswordGen();
|
2016-10-08 16:55:05 +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();
|
2012-08-01 08:35:37 +00:00
|
|
|
void showEntryContextMenu(const QPoint& globalPos);
|
|
|
|
|
void showGroupContextMenu(const QPoint& globalPos);
|
2012-08-15 17:50:31 +00:00
|
|
|
void saveToolbarState(bool value);
|
2013-04-27 09:20:13 +00:00
|
|
|
void rememberOpenDatabases(const QString& filePath);
|
2014-01-07 20:56:58 +00:00
|
|
|
void applySettingsChanges();
|
2014-11-02 09:15:44 +00:00
|
|
|
void trayIconTriggered(QSystemTrayIcon::ActivationReason reason);
|
2017-03-02 02:08:10 +00:00
|
|
|
void hideWindow();
|
2014-11-02 09:15:44 +00:00
|
|
|
void toggleWindow();
|
2015-07-13 19:17:11 +00:00
|
|
|
void lockDatabasesAfterInactivity();
|
2016-01-28 22:07:04 +00:00
|
|
|
void repairDatabase();
|
2015-01-21 16:19:05 +00:00
|
|
|
void hideTabMessage();
|
2016-12-24 00:04:43 +00:00
|
|
|
void handleScreenLock();
|
2012-04-16 19:28:49 +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
|
|
|
void updateTrayIcon();
|
|
|
|
|
bool isTrayIconEnabled() const;
|
2014-03-22 11:21:49 +00:00
|
|
|
|
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;
|
2012-07-23 19:12:19 +00:00
|
|
|
QAction* m_clearHistoryAction;
|
2016-11-03 01:01:02 +00:00
|
|
|
QAction* m_searchWidgetAction;
|
2012-07-23 19:12:19 +00:00
|
|
|
QActionGroup* m_lastDatabasesActions;
|
2012-10-23 22:15:23 +00:00
|
|
|
QActionGroup* m_copyAdditionalAttributeActions;
|
2013-04-27 09:20:13 +00:00
|
|
|
QStringList m_openDatabases;
|
2014-01-07 20:56:58 +00:00
|
|
|
InactivityTimer* m_inactivityTimer;
|
2014-05-15 16:05:58 +00:00
|
|
|
int m_countDefaultAttributes;
|
2014-11-02 09:15:44 +00:00
|
|
|
QSystemTrayIcon* m_trayIcon;
|
2016-12-24 00:04:43 +00:00
|
|
|
ScreenLockListener* m_screenLockListener;
|
2011-12-26 17:55:50 +00:00
|
|
|
|
|
|
|
|
Q_DISABLE_COPY(MainWindow)
|
2015-06-18 13:23:41 +00:00
|
|
|
|
2017-05-17 08:05:45 +00:00
|
|
|
bool m_appExitCalled;
|
|
|
|
|
bool m_appExiting;
|
2010-09-19 14:59:32 +00:00
|
|
|
};
|
|
|
|
|
|
2017-02-24 18:47:03 +00:00
|
|
|
#define KEEPASSXC_MAIN_WINDOW (qobject_cast<Application*>(qApp) ? \
|
|
|
|
|
qobject_cast<MainWindow*>(qobject_cast<Application*>(qApp)->mainWindow()) : nullptr)
|
2017-02-24 02:25:08 +00:00
|
|
|
|
2010-09-19 14:59:32 +00:00
|
|
|
#endif // KEEPASSX_MAINWINDOW_H
|