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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MainWindow.h"
|
2011-12-26 12:55:50 -05:00
|
|
|
#include "ui_MainWindow.h"
|
2010-09-19 10:59:32 -04:00
|
|
|
|
2012-04-11 14:35:52 -04:00
|
|
|
#include <QtGui/QCloseEvent>
|
|
|
|
|
2010-09-19 10:59:32 -04:00
|
|
|
#include "core/Database.h"
|
2012-01-05 16:27:08 -05:00
|
|
|
#include "core/DataPath.h"
|
2010-09-19 10:59:32 -04:00
|
|
|
#include "core/Metadata.h"
|
2012-05-02 09:37:21 -04:00
|
|
|
#include "gui/AboutDialog.h"
|
2011-07-08 08:51:14 -04:00
|
|
|
#include "gui/DatabaseWidget.h"
|
2012-05-16 04:16:32 -04:00
|
|
|
#include "gui/entry/EntryView.h"
|
2010-09-19 10:59:32 -04:00
|
|
|
|
|
|
|
MainWindow::MainWindow()
|
2011-12-26 12:55:50 -05:00
|
|
|
: m_ui(new Ui::MainWindow())
|
2010-09-19 10:59:32 -04:00
|
|
|
{
|
2011-12-26 12:55:50 -05:00
|
|
|
m_ui->setupUi(this);
|
2010-09-19 10:59:32 -04:00
|
|
|
|
2012-01-05 16:36:06 -05:00
|
|
|
setWindowIcon(dataPath()->applicationIcon());
|
2012-05-06 14:17:26 -04:00
|
|
|
m_ui->toolBar->toggleViewAction()->setText(tr("Show toolbar"));
|
2012-01-05 16:27:08 -05:00
|
|
|
|
2012-05-15 12:16:04 -04: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);
|
|
|
|
setShortcut(m_ui->actionQuit, QKeySequence::Quit, Qt::CTRL + Qt::Key_Q);
|
2012-05-19 05:53:32 -04:00
|
|
|
setShortcut(m_ui->actionSearch, QKeySequence::Find, Qt::CTRL + Qt::Key_F);
|
2012-05-15 12:16:04 -04:00
|
|
|
|
2012-04-25 14:22:55 -04:00
|
|
|
connect(m_ui->tabWidget, SIGNAL(entrySelectionChanged(bool)),
|
|
|
|
SLOT(setMenuActionState()));
|
|
|
|
connect(m_ui->tabWidget, SIGNAL(currentWidgetModeChanged(DatabaseWidget::Mode)),
|
|
|
|
SLOT(setMenuActionState(DatabaseWidget::Mode)));
|
|
|
|
connect(m_ui->tabWidget, SIGNAL(tabNameChanged()),
|
|
|
|
SLOT(updateWindowTitle()));
|
|
|
|
connect(m_ui->tabWidget, SIGNAL(currentChanged(int)),
|
|
|
|
SLOT(updateWindowTitle()));
|
2011-12-30 12:43:24 -05:00
|
|
|
|
2012-04-25 14:22:55 -04: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 04:08:41 -04:00
|
|
|
connect(m_ui->actionImportKeePass1, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(importKeePass1Database()));
|
|
|
|
connect(m_ui->actionQuit, SIGNAL(triggered()), SLOT(close()));
|
|
|
|
connect(m_ui->actionAbout, SIGNAL(triggered()), SLOT(showAboutDialog()));
|
|
|
|
|
2012-04-25 14:22:55 -04:00
|
|
|
connect(m_ui->actionEntryNew, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(createEntry()));
|
2012-05-15 15:10:39 -04:00
|
|
|
connect(m_ui->actionEntryClone, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(cloneEntry()));
|
2012-04-25 14:22:55 -04:00
|
|
|
connect(m_ui->actionEntryEdit, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(editEntry()));
|
|
|
|
connect(m_ui->actionEntryDelete, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(deleteEntry()));
|
2012-05-12 04:08:41 -04:00
|
|
|
|
2012-04-25 14:22:55 -04:00
|
|
|
connect(m_ui->actionGroupNew, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(createGroup()));
|
|
|
|
connect(m_ui->actionGroupEdit, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(editGroup()));
|
|
|
|
connect(m_ui->actionGroupDelete, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(deleteGroup()));
|
2012-05-19 05:53:32 -04:00
|
|
|
|
|
|
|
connect(m_ui->actionSearch, SIGNAL(triggered()), m_ui->tabWidget,
|
|
|
|
SLOT(toggleSearch()));
|
2011-12-26 12:55:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
2010-09-19 10:59:32 -04:00
|
|
|
}
|
2011-11-16 12:47:17 -05:00
|
|
|
|
2012-04-24 05:47:16 -04:00
|
|
|
void MainWindow::openDatabase(const QString& fileName, const QString& pw, const QString& keyFile)
|
|
|
|
{
|
|
|
|
m_ui->tabWidget->openDatabase(fileName, pw, keyFile);
|
|
|
|
}
|
|
|
|
|
2012-05-14 13:10:42 -04:00
|
|
|
const QString MainWindow::BaseWindowTitle = "KeePassX";
|
2012-04-21 16:02:12 -04:00
|
|
|
|
2012-04-24 19:32:05 -04:00
|
|
|
void MainWindow::setMenuActionState(DatabaseWidget::Mode mode)
|
2011-11-16 12:47:17 -05:00
|
|
|
{
|
2012-04-18 18:25:57 -04:00
|
|
|
if (m_ui->tabWidget->currentIndex() != -1) {
|
2012-04-16 15:28:49 -04:00
|
|
|
m_ui->actionDatabaseClose->setEnabled(true);
|
|
|
|
DatabaseWidget* dbWidget = m_ui->tabWidget->currentDatabaseWidget();
|
|
|
|
Q_ASSERT(dbWidget);
|
|
|
|
|
2012-04-24 19:32:05 -04:00
|
|
|
if (mode == DatabaseWidget::None) {
|
|
|
|
mode = dbWidget->currentMode();
|
2012-04-16 15:28:49 -04:00
|
|
|
}
|
|
|
|
|
2012-04-24 19:32:05 -04:00
|
|
|
switch (mode) {
|
2012-04-25 14:22:55 -04:00
|
|
|
case DatabaseWidget::ViewMode:
|
2012-05-13 12:08:22 -04:00
|
|
|
if (dbWidget->entryView()->inSearch()) {
|
|
|
|
m_ui->actionEntryNew->setEnabled(false);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_ui->actionEntryNew->setEnabled(true);
|
|
|
|
}
|
2012-05-15 15:10:39 -04:00
|
|
|
if (dbWidget->entryView()->inSearch() ||
|
|
|
|
!dbWidget->entryView()->currentIndex().isValid()) {
|
|
|
|
m_ui->actionEntryClone->setEnabled(false);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_ui->actionEntryClone->setEnabled(true);
|
|
|
|
}
|
2012-05-13 12:08:22 -04:00
|
|
|
|
2012-04-25 14:22:55 -04:00
|
|
|
if (dbWidget->entryView()->currentIndex().isValid()) {
|
|
|
|
m_ui->actionEntryEdit->setEnabled(true);
|
|
|
|
m_ui->actionEntryDelete->setEnabled(true);
|
|
|
|
}
|
|
|
|
else {
|
2012-04-16 15:28:49 -04:00
|
|
|
m_ui->actionEntryEdit->setEnabled(false);
|
|
|
|
m_ui->actionEntryDelete->setEnabled(false);
|
2012-04-25 14:22:55 -04:00
|
|
|
}
|
|
|
|
|
2012-05-13 12:08:22 -04:00
|
|
|
if (dbWidget->entryView()->inSearch()) {
|
|
|
|
m_ui->actionGroupNew->setEnabled(false);
|
|
|
|
m_ui->actionGroupEdit->setEnabled(false);
|
|
|
|
m_ui->actionGroupDelete->setEnabled(false);
|
2012-04-25 14:22:55 -04:00
|
|
|
}
|
|
|
|
else {
|
2012-05-13 12:08:22 -04:00
|
|
|
m_ui->actionGroupNew->setEnabled(true);
|
|
|
|
m_ui->actionGroupEdit->setEnabled(true);
|
|
|
|
if (dbWidget->canDeleteCurrentGoup()) {
|
|
|
|
m_ui->actionGroupDelete->setEnabled(true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_ui->actionGroupDelete->setEnabled(false);
|
|
|
|
}
|
2012-04-25 14:22:55 -04:00
|
|
|
}
|
2012-05-19 05:53:32 -04:00
|
|
|
m_ui->actionSearch->setEnabled(true);
|
|
|
|
if (dbWidget->entryView()->inSearch()) {
|
|
|
|
m_ui->actionSearch->setChecked(true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_ui->actionSearch->setChecked(false);
|
|
|
|
}
|
2012-04-25 14:22:55 -04:00
|
|
|
m_ui->actionChangeMasterKey->setEnabled(true);
|
|
|
|
m_ui->actionChangeDatabaseSettings->setEnabled(true);
|
|
|
|
m_ui->actionDatabaseSave->setEnabled(true);
|
|
|
|
m_ui->actionDatabaseSaveAs->setEnabled(true);
|
|
|
|
break;
|
|
|
|
case DatabaseWidget::EditMode:
|
|
|
|
m_ui->actionEntryNew->setEnabled(false);
|
|
|
|
m_ui->actionGroupNew->setEnabled(false);
|
2012-05-15 15:10:39 -04:00
|
|
|
m_ui->actionEntryClone->setEnabled(false);
|
2012-04-25 14:22:55 -04:00
|
|
|
m_ui->actionEntryEdit->setEnabled(false);
|
|
|
|
m_ui->actionGroupEdit->setEnabled(false);
|
|
|
|
m_ui->actionEntryDelete->setEnabled(false);
|
|
|
|
m_ui->actionGroupDelete->setEnabled(false);
|
2012-05-19 05:53:32 -04:00
|
|
|
m_ui->actionSearch->setEnabled(false);
|
|
|
|
m_ui->actionSearch->setChecked(false);
|
2012-04-25 14:22:55 -04: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 15:28:49 -04:00
|
|
|
}
|
|
|
|
m_ui->actionDatabaseClose->setEnabled(true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_ui->actionEntryNew->setEnabled(false);
|
|
|
|
m_ui->actionGroupNew->setEnabled(false);
|
2012-05-15 15:10:39 -04:00
|
|
|
m_ui->actionEntryClone->setEnabled(false);
|
2012-04-16 15:28:49 -04:00
|
|
|
m_ui->actionEntryEdit->setEnabled(false);
|
|
|
|
m_ui->actionGroupEdit->setEnabled(false);
|
|
|
|
m_ui->actionEntryDelete->setEnabled(false);
|
2012-04-21 13:06:28 -04:00
|
|
|
m_ui->actionGroupDelete->setEnabled(false);
|
2012-05-19 05:53:32 -04:00
|
|
|
m_ui->actionSearch->setEnabled(false);
|
|
|
|
m_ui->actionSearch->setChecked(false);
|
2012-04-16 15:28:49 -04:00
|
|
|
m_ui->actionChangeMasterKey->setEnabled(false);
|
2012-04-19 10:20:20 -04:00
|
|
|
m_ui->actionChangeDatabaseSettings->setEnabled(false);
|
2012-04-16 15:28:49 -04:00
|
|
|
m_ui->actionDatabaseSave->setEnabled(false);
|
|
|
|
m_ui->actionDatabaseSaveAs->setEnabled(false);
|
|
|
|
|
|
|
|
m_ui->actionDatabaseClose->setEnabled(false);
|
|
|
|
}
|
2011-11-16 12:47:17 -05:00
|
|
|
}
|
2012-04-11 14:35:52 -04:00
|
|
|
|
2012-04-21 16:02:12 -04:00
|
|
|
void MainWindow::updateWindowTitle()
|
|
|
|
{
|
|
|
|
int index = m_ui->tabWidget->currentIndex();
|
|
|
|
if (index == -1) {
|
2012-05-14 13:10:42 -04:00
|
|
|
setWindowTitle(BaseWindowTitle);
|
2012-04-21 16:02:12 -04:00
|
|
|
}
|
|
|
|
else {
|
2012-05-14 13:10:42 -04:00
|
|
|
setWindowTitle(m_ui->tabWidget->tabText(index).append(" - ").append(BaseWindowTitle));
|
2012-04-21 16:02:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-02 09:37:21 -04:00
|
|
|
void MainWindow::showAboutDialog()
|
|
|
|
{
|
|
|
|
AboutDialog* aboutDialog = new AboutDialog(this);
|
|
|
|
aboutDialog->show();
|
|
|
|
}
|
|
|
|
|
2012-05-02 11:04:03 -04:00
|
|
|
void MainWindow::closeEvent(QCloseEvent* event) {
|
2012-04-11 14:35:52 -04:00
|
|
|
if (!m_ui->tabWidget->closeAllDatabases()) {
|
|
|
|
event->ignore();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
}
|
2012-05-15 12:16:04 -04: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));
|
|
|
|
}
|
|
|
|
}
|