2010-09-19 10:59:32 -04: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
|
|
|
|
|
2012-07-23 15:12:19 -04:00
|
|
|
#include <QtGui/QActionGroup>
|
2011-12-26 12:55:50 -05:00
|
|
|
#include <QtGui/QMainWindow>
|
2010-09-19 10:59:32 -04:00
|
|
|
|
2012-08-01 04:35:37 -04:00
|
|
|
#include "core/SignalMultiplexer.h"
|
2012-04-24 19:32:05 -04:00
|
|
|
#include "gui/DatabaseWidget.h"
|
|
|
|
|
2011-12-26 12:55:50 -05:00
|
|
|
namespace Ui {
|
|
|
|
class MainWindow;
|
|
|
|
}
|
2010-09-19 10:59:32 -04:00
|
|
|
|
2011-12-26 12:55:50 -05:00
|
|
|
class MainWindow : public QMainWindow
|
2010-09-19 10:59:32 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
MainWindow();
|
2011-12-26 12:55:50 -05:00
|
|
|
~MainWindow();
|
2012-05-17 17:59:31 -04:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void openDatabase(const QString& fileName, const QString& pw = QString(),
|
|
|
|
const QString& keyFile = QString());
|
2011-11-13 08:55:20 -05:00
|
|
|
|
2012-04-11 14:35:52 -04:00
|
|
|
protected:
|
2012-06-29 08:37:29 -04:00
|
|
|
void closeEvent(QCloseEvent* event) Q_DECL_OVERRIDE;
|
2012-04-11 14:35:52 -04:00
|
|
|
|
2011-11-16 12:47:17 -05:00
|
|
|
private Q_SLOTS:
|
2012-04-24 19:32:05 -04:00
|
|
|
void setMenuActionState(DatabaseWidget::Mode mode = DatabaseWidget::None);
|
2012-04-21 16:02:12 -04:00
|
|
|
void updateWindowTitle();
|
2012-05-02 09:37:21 -04:00
|
|
|
void showAboutDialog();
|
2012-05-27 05:09:52 -04:00
|
|
|
void switchToDatabases();
|
|
|
|
void switchToSettings();
|
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);
|
2012-08-15 13:50:31 -04:00
|
|
|
void saveToolbarState(bool value);
|
2013-04-27 05:20:13 -04:00
|
|
|
void rememberOpenDatabases(const QString& filePath);
|
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;
|
|
|
|
|
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;
|
|
|
|
QActionGroup* m_lastDatabasesActions;
|
2012-10-23 18:15:23 -04:00
|
|
|
QActionGroup* m_copyAdditionalAttributeActions;
|
2013-04-27 05:20:13 -04:00
|
|
|
QStringList m_openDatabases;
|
2011-12-26 12:55:50 -05:00
|
|
|
|
|
|
|
Q_DISABLE_COPY(MainWindow)
|
2010-09-19 10:59:32 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_MAINWINDOW_H
|