2010-09-19 16:59:32 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MainWindow.h"
|
2011-12-26 18:55:50 +01:00
|
|
|
#include "ui_MainWindow.h"
|
2010-09-19 16:59:32 +02:00
|
|
|
|
2012-04-11 20:35:52 +02:00
|
|
|
#include <QtGui/QCloseEvent>
|
2012-08-31 11:22:59 +02:00
|
|
|
#include <QtGui/QShortcut>
|
2012-04-11 20:35:52 +02:00
|
|
|
|
2012-07-14 19:09:28 +02:00
|
|
|
#include "autotype/AutoType.h"
|
|
|
|
#include "core/Config.h"
|
2010-09-19 16:59:32 +02:00
|
|
|
#include "core/Database.h"
|
2012-10-24 00:15:23 +02:00
|
|
|
#include "core/Entry.h"
|
2012-07-18 20:44:28 +02:00
|
|
|
#include "core/FilePath.h"
|
2010-09-19 16:59:32 +02:00
|
|
|
#include "core/Metadata.h"
|
2012-05-02 15:37:21 +02:00
|
|
|
#include "gui/AboutDialog.h"
|
2011-07-08 14:51:14 +02:00
|
|
|
#include "gui/DatabaseWidget.h"
|
2012-05-16 10:16:32 +02:00
|
|
|
#include "gui/entry/EntryView.h"
|
2012-08-01 10:35:37 +02:00
|
|
|
#include "gui/group/GroupView.h"
|
2010-09-19 16:59:32 +02:00
|
|
|
|
2012-08-01 10:40:18 +02:00
|
|
|
const QString MainWindow::BaseWindowTitle = "KeePassX";
|
|
|
|
|
2010-09-19 16:59:32 +02:00
|
|
|
MainWindow::MainWindow()
|
2011-12-26 18:55:50 +01:00
|
|
|
: m_ui(new Ui::MainWindow())
|
2010-09-19 16:59:32 +02:00
|
|
|
{
|
2011-12-26 18:55:50 +01:00
|
|
|
m_ui->setupUi(this);
|
2010-09-19 16:59:32 +02:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
setWindowIcon(filePath()->applicationIcon());
|
2012-06-25 00:21:22 +02:00
|
|
|
QAction* toggleViewAction = m_ui->toolBar->toggleViewAction();
|
|
|
|
toggleViewAction->setText(tr("Show toolbar"));
|
|
|
|
m_ui->menuView->addAction(toggleViewAction);
|
2012-08-15 19:50:31 +02:00
|
|
|
bool showToolbar = config()->get("ShowToolbar").toBool();
|
|
|
|
m_ui->toolBar->setVisible(showToolbar);
|
|
|
|
connect(m_ui->toolBar, SIGNAL(visibilityChanged(bool)), this, SLOT(saveToolbarState(bool)));
|
2012-01-05 22:27:08 +01:00
|
|
|
|
2012-07-23 21:12:19 +02:00
|
|
|
m_clearHistoryAction = new QAction("Clear history", m_ui->menuFile);
|
|
|
|
m_lastDatabasesActions = new QActionGroup(m_ui->menuRecentDatabases);
|
|
|
|
connect(m_clearHistoryAction, SIGNAL(triggered()), this, SLOT(clearLastDatabases()));
|
|
|
|
connect(m_lastDatabasesActions, SIGNAL(triggered(QAction*)), this, SLOT(openRecentDatabase(QAction*)));
|
|
|
|
connect(m_ui->menuRecentDatabases, SIGNAL(aboutToShow()), this, SLOT(updateLastDatabasesMenu()));
|
|
|
|
|
2012-10-24 00:15:23 +02:00
|
|
|
m_copyAdditionalAttributeActions = new QActionGroup(m_ui->menuEntryCopyAttribute);
|
|
|
|
m_actionMultiplexer.connect(m_copyAdditionalAttributeActions, SIGNAL(triggered(QAction*)),
|
|
|
|
SLOT(copyAttribute(QAction*)));
|
|
|
|
connect(m_ui->menuEntryCopyAttribute, SIGNAL(aboutToShow()),
|
|
|
|
this, SLOT(updateCopyAttributesMenu()));
|
|
|
|
|
2012-07-14 19:09:28 +02:00
|
|
|
Qt::Key globalAutoTypeKey = static_cast<Qt::Key>(config()->get("GlobalAutoTypeKey").toInt());
|
|
|
|
Qt::KeyboardModifiers globalAutoTypeModifiers = static_cast<Qt::KeyboardModifiers>(
|
|
|
|
config()->get("GlobalAutoTypeModifiers").toInt());
|
|
|
|
if (globalAutoTypeKey > 0 && globalAutoTypeModifiers > 0) {
|
|
|
|
autoType()->registerGlobalShortcut(globalAutoTypeKey, globalAutoTypeModifiers);
|
|
|
|
}
|
|
|
|
|
2012-05-15 18:16:04 +02:00
|
|
|
setShortcut(m_ui->actionDatabaseOpen, QKeySequence::Open, Qt::CTRL + Qt::Key_O);
|
|
|
|
setShortcut(m_ui->actionDatabaseSave, QKeySequence::Save, Qt::CTRL + Qt::Key_S);
|
|
|
|
setShortcut(m_ui->actionDatabaseSaveAs, QKeySequence::SaveAs);
|
|
|
|
setShortcut(m_ui->actionDatabaseClose, QKeySequence::Close, Qt::CTRL + Qt::Key_W);
|
2012-10-12 12:12:00 +02:00
|
|
|
m_ui->actionLockDatabases->setShortcut(Qt::CTRL + Qt::Key_L);
|
2012-05-15 18:16:04 +02:00
|
|
|
setShortcut(m_ui->actionQuit, QKeySequence::Quit, Qt::CTRL + Qt::Key_Q);
|
2012-05-19 11:53:32 +02:00
|
|
|
setShortcut(m_ui->actionSearch, QKeySequence::Find, Qt::CTRL + Qt::Key_F);
|
2012-07-23 21:43:46 +02:00
|
|
|
m_ui->actionEntryNew->setShortcut(Qt::CTRL + Qt::Key_N);
|
|
|
|
m_ui->actionEntryEdit->setShortcut(Qt::CTRL + Qt::Key_E);
|
|
|
|
m_ui->actionEntryDelete->setShortcut(Qt::CTRL + Qt::Key_D);
|
|
|
|
m_ui->actionEntryClone->setShortcut(Qt::CTRL + Qt::Key_K);
|
2012-05-26 16:20:32 +02:00
|
|
|
m_ui->actionEntryCopyUsername->setShortcut(Qt::CTRL + Qt::Key_B);
|
|
|
|
m_ui->actionEntryCopyPassword->setShortcut(Qt::CTRL + Qt::Key_C);
|
2012-07-12 22:35:51 +02:00
|
|
|
setShortcut(m_ui->actionEntryAutoType, QKeySequence::Paste, Qt::CTRL + Qt::Key_V);
|
2012-07-27 18:38:52 +02:00
|
|
|
m_ui->actionEntryOpenUrl->setShortcut(Qt::CTRL + Qt::Key_U);
|
2012-05-15 18:16:04 +02:00
|
|
|
|
2012-08-31 11:22:59 +02:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
new QShortcut(Qt::CTRL + Qt::Key_M, this, SLOT(showMinimized()));
|
|
|
|
#endif
|
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
m_ui->actionDatabaseNew->setIcon(filePath()->icon("actions", "document-new"));
|
|
|
|
m_ui->actionDatabaseOpen->setIcon(filePath()->icon("actions", "document-open"));
|
|
|
|
m_ui->actionDatabaseSave->setIcon(filePath()->icon("actions", "document-save"));
|
|
|
|
m_ui->actionDatabaseSaveAs->setIcon(filePath()->icon("actions", "document-save-as"));
|
|
|
|
m_ui->actionDatabaseClose->setIcon(filePath()->icon("actions", "document-close"));
|
|
|
|
m_ui->actionChangeDatabaseSettings->setIcon(filePath()->icon("actions", "document-edit"));
|
|
|
|
m_ui->actionChangeMasterKey->setIcon(filePath()->icon("actions", "database-change-key", false));
|
2012-10-12 12:12:00 +02:00
|
|
|
m_ui->actionLockDatabases->setIcon(filePath()->icon("actions", "document-encrypt", false));
|
2012-07-18 20:44:28 +02:00
|
|
|
m_ui->actionQuit->setIcon(filePath()->icon("actions", "application-exit"));
|
2012-05-27 15:39:32 +02:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
m_ui->actionEntryNew->setIcon(filePath()->icon("actions", "entry-new", false));
|
|
|
|
m_ui->actionEntryClone->setIcon(filePath()->icon("actions", "entry-clone", false));
|
|
|
|
m_ui->actionEntryEdit->setIcon(filePath()->icon("actions", "entry-edit", false));
|
|
|
|
m_ui->actionEntryDelete->setIcon(filePath()->icon("actions", "entry-delete", false));
|
2013-03-22 19:51:39 +01:00
|
|
|
m_ui->actionEntryAutoType->setIcon(filePath()->icon("actions", "auto-type", false));
|
2012-05-27 12:46:22 +02:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
m_ui->actionGroupNew->setIcon(filePath()->icon("actions", "group-new", false));
|
|
|
|
m_ui->actionGroupEdit->setIcon(filePath()->icon("actions", "group-edit", false));
|
|
|
|
m_ui->actionGroupDelete->setIcon(filePath()->icon("actions", "group-delete", false));
|
2012-05-27 15:39:32 +02:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
m_ui->actionSettings->setIcon(filePath()->icon("actions", "configure"));
|
2012-05-27 15:39:32 +02:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
m_ui->actionAbout->setIcon(filePath()->icon("actions", "help-about"));
|
2012-05-27 19:54:18 +02:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
m_ui->actionSearch->setIcon(filePath()->icon("actions", "system-search"));
|
2012-05-27 12:46:22 +02:00
|
|
|
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(SIGNAL(currentModeChanged(DatabaseWidget::Mode)),
|
|
|
|
this, SLOT(setMenuActionState(DatabaseWidget::Mode)));
|
|
|
|
m_actionMultiplexer.connect(SIGNAL(groupChanged()),
|
|
|
|
this, SLOT(setMenuActionState()));
|
|
|
|
m_actionMultiplexer.connect(SIGNAL(entrySelectionChanged()),
|
|
|
|
this, SLOT(setMenuActionState()));
|
|
|
|
m_actionMultiplexer.connect(SIGNAL(groupContextMenuRequested(QPoint)),
|
|
|
|
this, SLOT(showGroupContextMenu(QPoint)));
|
|
|
|
m_actionMultiplexer.connect(SIGNAL(entryContextMenuRequested(QPoint)),
|
|
|
|
this, SLOT(showEntryContextMenu(QPoint)));
|
|
|
|
|
2012-04-25 20:22:55 +02:00
|
|
|
connect(m_ui->tabWidget, SIGNAL(tabNameChanged()),
|
|
|
|
SLOT(updateWindowTitle()));
|
|
|
|
connect(m_ui->tabWidget, SIGNAL(currentChanged(int)),
|
|
|
|
SLOT(updateWindowTitle()));
|
2012-05-28 18:49:16 +02:00
|
|
|
connect(m_ui->tabWidget, SIGNAL(currentChanged(int)),
|
|
|
|
SLOT(databaseTabChanged(int)));
|
2012-08-01 10:35:37 +02:00
|
|
|
connect(m_ui->tabWidget, SIGNAL(currentChanged(int)),
|
|
|
|
SLOT(setMenuActionState()));
|
2012-05-27 11:09:52 +02:00
|
|
|
connect(m_ui->stackedWidget, SIGNAL(currentChanged(int)), SLOT(setMenuActionState()));
|
2012-11-02 00:41:34 +01:00
|
|
|
connect(m_ui->stackedWidget, SIGNAL(currentChanged(int)), SLOT(updateWindowTitle()));
|
2012-05-27 20:29:15 +02:00
|
|
|
connect(m_ui->settingsWidget, SIGNAL(editFinished(bool)), SLOT(switchToDatabases()));
|
2011-12-30 18:43:24 +01:00
|
|
|
|
2012-04-25 20:22:55 +02:00
|
|
|
connect(m_ui->actionDatabaseNew, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(newDatabase()));
|
|
|
|
connect(m_ui->actionDatabaseOpen, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(openDatabase()));
|
|
|
|
connect(m_ui->actionDatabaseSave, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(saveDatabase()));
|
|
|
|
connect(m_ui->actionDatabaseSaveAs, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(saveDatabaseAs()));
|
|
|
|
connect(m_ui->actionDatabaseClose, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(closeDatabase()));
|
|
|
|
connect(m_ui->actionChangeMasterKey, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(changeMasterKey()));
|
|
|
|
connect(m_ui->actionChangeDatabaseSettings, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(changeDatabaseSettings()));
|
2012-05-12 10:08:41 +02:00
|
|
|
connect(m_ui->actionImportKeePass1, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(importKeePass1Database()));
|
2012-10-12 12:12:00 +02:00
|
|
|
connect(m_ui->actionLockDatabases, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(lockDatabases()));
|
2012-05-12 10:08:41 +02:00
|
|
|
connect(m_ui->actionQuit, SIGNAL(triggered()), SLOT(close()));
|
|
|
|
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryNew, SIGNAL(triggered()),
|
2012-04-25 20:22:55 +02:00
|
|
|
SLOT(createEntry()));
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryClone, SIGNAL(triggered()),
|
2012-05-15 21:10:39 +02:00
|
|
|
SLOT(cloneEntry()));
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryEdit, SIGNAL(triggered()),
|
|
|
|
SLOT(switchToEntryEdit()));
|
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryDelete, SIGNAL(triggered()),
|
2012-04-25 20:22:55 +02:00
|
|
|
SLOT(deleteEntry()));
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryCopyUsername, SIGNAL(triggered()),
|
2012-05-26 16:20:32 +02:00
|
|
|
SLOT(copyUsername()));
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryCopyPassword, SIGNAL(triggered()),
|
2012-05-26 16:20:32 +02:00
|
|
|
SLOT(copyPassword()));
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryAutoType, SIGNAL(triggered()),
|
2012-07-12 22:35:51 +02:00
|
|
|
SLOT(performAutoType()));
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionEntryOpenUrl, SIGNAL(triggered()),
|
2012-07-27 18:38:52 +02:00
|
|
|
SLOT(openUrl()));
|
2012-05-12 10:08:41 +02:00
|
|
|
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionGroupNew, SIGNAL(triggered()),
|
2012-04-25 20:22:55 +02:00
|
|
|
SLOT(createGroup()));
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionGroupEdit, SIGNAL(triggered()),
|
|
|
|
SLOT(switchToGroupEdit()));
|
|
|
|
m_actionMultiplexer.connect(m_ui->actionGroupDelete, SIGNAL(triggered()),
|
2012-04-25 20:22:55 +02:00
|
|
|
SLOT(deleteGroup()));
|
2012-05-19 11:53:32 +02:00
|
|
|
|
2012-05-27 11:09:52 +02:00
|
|
|
connect(m_ui->actionSettings, SIGNAL(triggered()), SLOT(switchToSettings()));
|
|
|
|
|
|
|
|
connect(m_ui->actionAbout, SIGNAL(triggered()), SLOT(showAboutDialog()));
|
|
|
|
|
2012-08-01 10:35:37 +02:00
|
|
|
m_actionMultiplexer.connect(m_ui->actionSearch, SIGNAL(triggered()),
|
|
|
|
SLOT(toggleSearch()));
|
2011-12-26 18:55:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
2010-09-19 16:59:32 +02:00
|
|
|
}
|
2011-11-16 18:47:17 +01:00
|
|
|
|
2012-08-01 10:40:18 +02:00
|
|
|
void MainWindow::updateLastDatabasesMenu()
|
|
|
|
{
|
2012-07-23 21:12:19 +02:00
|
|
|
m_ui->menuRecentDatabases->clear();
|
|
|
|
|
|
|
|
QStringList lastDatabases = config()->get("LastDatabases", QVariant()).toStringList();
|
|
|
|
Q_FOREACH (const QString& database, lastDatabases) {
|
|
|
|
QAction* action = m_ui->menuRecentDatabases->addAction(database);
|
|
|
|
m_lastDatabasesActions->addAction(action);
|
|
|
|
}
|
|
|
|
m_ui->menuRecentDatabases->addSeparator();
|
|
|
|
m_ui->menuRecentDatabases->addAction(m_clearHistoryAction);
|
|
|
|
}
|
|
|
|
|
2012-10-24 00:15:23 +02:00
|
|
|
void MainWindow::updateCopyAttributesMenu()
|
|
|
|
{
|
|
|
|
DatabaseWidget* dbWidget = m_ui->tabWidget->currentDatabaseWidget();
|
2012-11-10 18:46:01 +01:00
|
|
|
if (!dbWidget) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!dbWidget->entryView()->isSingleEntrySelected()) {
|
|
|
|
return;
|
|
|
|
}
|
2012-10-24 00:15:23 +02:00
|
|
|
|
2012-11-10 18:46:01 +01:00
|
|
|
m_ui->menuEntryCopyAttribute->clear();
|
2012-10-24 00:15:23 +02:00
|
|
|
Entry* entry = dbWidget->entryView()->currentEntry();
|
|
|
|
|
|
|
|
Q_FOREACH (const QString& key, EntryAttributes::DefaultAttributes) {
|
|
|
|
QAction* action = m_ui->menuEntryCopyAttribute->addAction(key);
|
|
|
|
m_copyAdditionalAttributeActions->addAction(action);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ui->menuEntryCopyAttribute->addSeparator();
|
|
|
|
|
|
|
|
Q_FOREACH (const QString& key, entry->attributes()->customKeys()) {
|
|
|
|
QAction* action = m_ui->menuEntryCopyAttribute->addAction(key);
|
|
|
|
m_copyAdditionalAttributeActions->addAction(action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-23 21:12:19 +02:00
|
|
|
void MainWindow::openRecentDatabase(QAction* action)
|
|
|
|
{
|
|
|
|
openDatabase(action->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::clearLastDatabases()
|
|
|
|
{
|
|
|
|
config()->set("LastDatabases", QVariant());
|
|
|
|
}
|
|
|
|
|
2012-04-24 11:47:16 +02:00
|
|
|
void MainWindow::openDatabase(const QString& fileName, const QString& pw, const QString& keyFile)
|
|
|
|
{
|
|
|
|
m_ui->tabWidget->openDatabase(fileName, pw, keyFile);
|
|
|
|
}
|
|
|
|
|
2012-04-25 01:32:05 +02:00
|
|
|
void MainWindow::setMenuActionState(DatabaseWidget::Mode mode)
|
2011-11-16 18:47:17 +01:00
|
|
|
{
|
2012-05-27 11:09:52 +02:00
|
|
|
bool inDatabaseTabWidget = (m_ui->stackedWidget->currentIndex() == 0);
|
2012-05-27 20:06:03 +02:00
|
|
|
bool inWelcomeWidget = (m_ui->stackedWidget->currentIndex() == 2);
|
2012-05-27 11:09:52 +02:00
|
|
|
|
|
|
|
if (inDatabaseTabWidget && m_ui->tabWidget->currentIndex() != -1) {
|
2012-04-16 21:28:49 +02:00
|
|
|
DatabaseWidget* dbWidget = m_ui->tabWidget->currentDatabaseWidget();
|
|
|
|
Q_ASSERT(dbWidget);
|
|
|
|
|
2012-04-25 01:32:05 +02:00
|
|
|
if (mode == DatabaseWidget::None) {
|
|
|
|
mode = dbWidget->currentMode();
|
2012-04-16 21:28:49 +02:00
|
|
|
}
|
|
|
|
|
2012-04-25 01:32:05 +02:00
|
|
|
switch (mode) {
|
2012-05-25 13:32:37 +02:00
|
|
|
case DatabaseWidget::ViewMode: {
|
2012-08-01 10:35:37 +02:00
|
|
|
bool inSearch = dbWidget->isInSearchMode();
|
|
|
|
bool singleEntrySelected = dbWidget->entryView()->isSingleEntrySelected();
|
|
|
|
bool groupSelected = dbWidget->groupView()->currentGroup();
|
|
|
|
|
|
|
|
m_ui->actionEntryNew->setEnabled(!inSearch);
|
|
|
|
m_ui->actionEntryClone->setEnabled(singleEntrySelected && !inSearch);
|
|
|
|
m_ui->actionEntryEdit->setEnabled(singleEntrySelected);
|
|
|
|
m_ui->actionEntryDelete->setEnabled(singleEntrySelected);
|
|
|
|
m_ui->actionEntryCopyUsername->setEnabled(singleEntrySelected);
|
|
|
|
m_ui->actionEntryCopyPassword->setEnabled(singleEntrySelected);
|
2012-10-24 00:15:23 +02:00
|
|
|
m_ui->menuEntryCopyAttribute->setEnabled(singleEntrySelected);
|
2012-08-01 10:35:37 +02:00
|
|
|
m_ui->actionEntryAutoType->setEnabled(singleEntrySelected);
|
|
|
|
m_ui->actionEntryOpenUrl->setEnabled(singleEntrySelected);
|
|
|
|
m_ui->actionGroupNew->setEnabled(groupSelected);
|
|
|
|
m_ui->actionGroupEdit->setEnabled(groupSelected);
|
|
|
|
m_ui->actionGroupDelete->setEnabled(groupSelected && dbWidget->canDeleteCurrentGoup());
|
2012-05-19 11:53:32 +02:00
|
|
|
m_ui->actionSearch->setEnabled(true);
|
2012-05-26 19:40:02 +02:00
|
|
|
// TODO: get checked state from db widget
|
2012-08-01 10:35:37 +02:00
|
|
|
m_ui->actionSearch->setChecked(inSearch);
|
2012-04-25 20:22:55 +02:00
|
|
|
m_ui->actionChangeMasterKey->setEnabled(true);
|
|
|
|
m_ui->actionChangeDatabaseSettings->setEnabled(true);
|
|
|
|
m_ui->actionDatabaseSave->setEnabled(true);
|
|
|
|
m_ui->actionDatabaseSaveAs->setEnabled(true);
|
|
|
|
break;
|
2012-05-25 13:32:37 +02:00
|
|
|
}
|
2012-04-25 20:22:55 +02:00
|
|
|
case DatabaseWidget::EditMode:
|
2012-10-12 12:12:00 +02:00
|
|
|
case DatabaseWidget::LockedMode:
|
2012-08-01 10:35:37 +02:00
|
|
|
Q_FOREACH (QAction* action, m_ui->menuEntries->actions()) {
|
|
|
|
action->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_FOREACH (QAction* action, m_ui->menuGroups->actions()) {
|
|
|
|
action->setEnabled(false);
|
|
|
|
}
|
2012-10-24 00:15:23 +02:00
|
|
|
m_ui->menuEntryCopyAttribute->setEnabled(false);
|
2012-08-01 10:35:37 +02:00
|
|
|
|
2012-05-19 11:53:32 +02:00
|
|
|
m_ui->actionSearch->setEnabled(false);
|
|
|
|
m_ui->actionSearch->setChecked(false);
|
2012-04-25 20:22:55 +02:00
|
|
|
m_ui->actionChangeMasterKey->setEnabled(false);
|
|
|
|
m_ui->actionChangeDatabaseSettings->setEnabled(false);
|
|
|
|
m_ui->actionDatabaseSave->setEnabled(false);
|
|
|
|
m_ui->actionDatabaseSaveAs->setEnabled(false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Q_ASSERT(false);
|
2012-04-16 21:28:49 +02:00
|
|
|
}
|
|
|
|
m_ui->actionDatabaseClose->setEnabled(true);
|
|
|
|
}
|
|
|
|
else {
|
2012-08-01 10:35:37 +02:00
|
|
|
Q_FOREACH (QAction* action, m_ui->menuEntries->actions()) {
|
|
|
|
action->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_FOREACH (QAction* action, m_ui->menuGroups->actions()) {
|
|
|
|
action->setEnabled(false);
|
|
|
|
}
|
2012-10-24 00:15:23 +02:00
|
|
|
m_ui->menuEntryCopyAttribute->setEnabled(false);
|
2012-08-01 10:35:37 +02:00
|
|
|
|
2012-05-19 11:53:32 +02:00
|
|
|
m_ui->actionSearch->setEnabled(false);
|
|
|
|
m_ui->actionSearch->setChecked(false);
|
2012-04-16 21:28:49 +02:00
|
|
|
m_ui->actionChangeMasterKey->setEnabled(false);
|
2012-04-19 16:20:20 +02:00
|
|
|
m_ui->actionChangeDatabaseSettings->setEnabled(false);
|
2012-04-16 21:28:49 +02:00
|
|
|
m_ui->actionDatabaseSave->setEnabled(false);
|
|
|
|
m_ui->actionDatabaseSaveAs->setEnabled(false);
|
|
|
|
|
|
|
|
m_ui->actionDatabaseClose->setEnabled(false);
|
|
|
|
}
|
2012-05-27 11:09:52 +02:00
|
|
|
|
2012-07-23 23:50:17 +02:00
|
|
|
bool inDatabaseTabWidgetOrWelcomeWidget = inDatabaseTabWidget || inWelcomeWidget;
|
|
|
|
m_ui->actionDatabaseNew->setEnabled(inDatabaseTabWidgetOrWelcomeWidget);
|
|
|
|
m_ui->actionDatabaseOpen->setEnabled(inDatabaseTabWidgetOrWelcomeWidget);
|
|
|
|
m_ui->menuRecentDatabases->setEnabled(inDatabaseTabWidgetOrWelcomeWidget);
|
|
|
|
m_ui->actionImportKeePass1->setEnabled(inDatabaseTabWidgetOrWelcomeWidget);
|
2012-10-12 12:12:00 +02:00
|
|
|
|
|
|
|
m_ui->actionLockDatabases->setEnabled(m_ui->tabWidget->hasLockableDatabases());
|
2011-11-16 18:47:17 +01:00
|
|
|
}
|
2012-04-11 20:35:52 +02:00
|
|
|
|
2012-04-21 22:02:12 +02:00
|
|
|
void MainWindow::updateWindowTitle()
|
|
|
|
{
|
2012-11-02 01:00:50 +01:00
|
|
|
QString customWindowTitlePart;
|
2012-11-02 00:41:34 +01:00
|
|
|
int stackedWidgetIndex = m_ui->stackedWidget->currentIndex();
|
2012-11-02 01:00:50 +01:00
|
|
|
int tabWidgetIndex = m_ui->tabWidget->currentIndex();
|
|
|
|
if (stackedWidgetIndex == 0 && tabWidgetIndex != -1) {
|
|
|
|
customWindowTitlePart = m_ui->tabWidget->tabText(tabWidgetIndex);
|
|
|
|
if (m_ui->tabWidget->readOnly(tabWidgetIndex)) {
|
2012-11-02 10:15:37 +01:00
|
|
|
customWindowTitlePart.append(QString(" [%1]").arg(tr("read-only")));
|
2012-05-28 18:38:33 +02:00
|
|
|
}
|
2012-11-02 00:41:34 +01:00
|
|
|
} else if (stackedWidgetIndex == 1) {
|
2012-11-02 01:00:50 +01:00
|
|
|
customWindowTitlePart = tr("Settings");
|
|
|
|
}
|
|
|
|
|
|
|
|
QString windowTitle;
|
|
|
|
if (customWindowTitlePart.isEmpty()) {
|
2012-11-02 00:41:34 +01:00
|
|
|
windowTitle = BaseWindowTitle;
|
2012-11-02 01:00:50 +01:00
|
|
|
} else {
|
2012-11-02 10:15:37 +01:00
|
|
|
windowTitle = QString("%1 - %2").arg(customWindowTitlePart, BaseWindowTitle);
|
2012-04-21 22:02:12 +02:00
|
|
|
}
|
2012-11-02 00:41:34 +01:00
|
|
|
|
|
|
|
setWindowTitle(windowTitle);
|
2012-04-21 22:02:12 +02:00
|
|
|
}
|
|
|
|
|
2012-05-02 15:37:21 +02:00
|
|
|
void MainWindow::showAboutDialog()
|
|
|
|
{
|
|
|
|
AboutDialog* aboutDialog = new AboutDialog(this);
|
|
|
|
aboutDialog->show();
|
|
|
|
}
|
|
|
|
|
2012-05-27 11:09:52 +02:00
|
|
|
void MainWindow::switchToDatabases()
|
|
|
|
{
|
2012-05-30 15:17:51 +02:00
|
|
|
if (m_ui->tabWidget->currentIndex() == -1) {
|
|
|
|
m_ui->stackedWidget->setCurrentIndex(2);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_ui->stackedWidget->setCurrentIndex(0);
|
|
|
|
}
|
2012-05-27 11:09:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::switchToSettings()
|
|
|
|
{
|
|
|
|
m_ui->settingsWidget->loadSettings();
|
|
|
|
m_ui->stackedWidget->setCurrentIndex(1);
|
|
|
|
}
|
|
|
|
|
2012-05-28 18:49:16 +02:00
|
|
|
void MainWindow::databaseTabChanged(int tabIndex)
|
|
|
|
{
|
|
|
|
if (tabIndex != -1 && m_ui->stackedWidget->currentIndex() == 2) {
|
2012-05-30 15:17:51 +02:00
|
|
|
m_ui->stackedWidget->setCurrentIndex(0);
|
2012-05-28 18:49:16 +02:00
|
|
|
}
|
2012-05-28 18:53:39 +02:00
|
|
|
else if (tabIndex == -1 && m_ui->stackedWidget->currentIndex() == 0) {
|
|
|
|
m_ui->stackedWidget->setCurrentIndex(2);
|
|
|
|
}
|
2012-08-01 10:35:37 +02:00
|
|
|
|
|
|
|
m_actionMultiplexer.setCurrentObject(m_ui->tabWidget->currentDatabaseWidget());
|
2012-05-28 18:49:16 +02:00
|
|
|
}
|
|
|
|
|
2012-06-30 00:22:07 +02:00
|
|
|
void MainWindow::closeEvent(QCloseEvent* event)
|
|
|
|
{
|
2012-04-11 20:35:52 +02:00
|
|
|
if (!m_ui->tabWidget->closeAllDatabases()) {
|
|
|
|
event->ignore();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
}
|
2012-05-15 18:16:04 +02:00
|
|
|
|
2012-08-01 10:35:37 +02:00
|
|
|
void MainWindow::showEntryContextMenu(const QPoint& globalPos)
|
|
|
|
{
|
|
|
|
m_ui->menuEntries->popup(globalPos);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::showGroupContextMenu(const QPoint& globalPos)
|
|
|
|
{
|
|
|
|
m_ui->menuGroups->popup(globalPos);
|
|
|
|
}
|
|
|
|
|
2012-08-15 19:50:31 +02:00
|
|
|
void MainWindow::saveToolbarState(bool value)
|
|
|
|
{
|
|
|
|
config()->set("ShowToolbar", value);
|
|
|
|
}
|
|
|
|
|
2012-05-15 18:16:04 +02:00
|
|
|
void MainWindow::setShortcut(QAction* action, QKeySequence::StandardKey standard, int fallback)
|
|
|
|
{
|
|
|
|
if (!QKeySequence::keyBindings(standard).isEmpty()) {
|
|
|
|
action->setShortcuts(standard);
|
|
|
|
}
|
|
|
|
else if (fallback != 0) {
|
|
|
|
action->setShortcut(QKeySequence(fallback));
|
|
|
|
}
|
|
|
|
}
|