mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
97 lines
3.4 KiB
C++
97 lines
3.4 KiB
C++
/*
|
|
* 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 <QFile>
|
|
|
|
#include "config-keepassx.h"
|
|
#include "core/Config.h"
|
|
#include "core/qcommandlineparser.h"
|
|
#include "core/Tools.h"
|
|
#include "crypto/Crypto.h"
|
|
#include "gui/Application.h"
|
|
#include "gui/MainWindow.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
#ifdef QT_NO_DEBUG
|
|
Tools::disableCoreDumps();
|
|
#endif
|
|
|
|
Application app(argc, argv);
|
|
Application::setApplicationName("keepassx");
|
|
Application::setApplicationVersion(KEEPASSX_VERSION);
|
|
// don't set organizationName as that changes the return value of
|
|
// QDesktopServices::storageLocation(QDesktopServices::DataLocation)
|
|
|
|
Crypto::init();
|
|
|
|
QCommandLineParser parser;
|
|
parser.setApplicationDescription(QCoreApplication::translate("main", "KeePassX - cross-platform password manager"));
|
|
parser.addPositionalArgument("filename", QCoreApplication::translate("main", "filename of the password database to open (*.kdbx)"));
|
|
|
|
QCommandLineOption configOption("config",
|
|
QCoreApplication::translate("main", "path to a custom config file"),
|
|
"config");
|
|
QCommandLineOption passwordOption("password",
|
|
QCoreApplication::translate("main", "password of the database (DANGEROUS!)"),
|
|
"password");
|
|
QCommandLineOption keyfileOption("keyfile",
|
|
QCoreApplication::translate("main", "key file of the database"),
|
|
"keyfile");
|
|
|
|
parser.addHelpOption();
|
|
parser.addVersionOption();
|
|
parser.addOption(configOption);
|
|
parser.addOption(passwordOption);
|
|
parser.addOption(keyfileOption);
|
|
|
|
parser.process(app);
|
|
const QStringList args = parser.positionalArguments();
|
|
|
|
if (parser.isSet(configOption)) {
|
|
Config::createConfigFromFile(parser.value(configOption));
|
|
}
|
|
|
|
#ifdef Q_OS_MAC
|
|
// Don't show menu icons on OSX
|
|
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
|
#endif
|
|
|
|
MainWindow mainWindow;
|
|
mainWindow.show();
|
|
|
|
QObject::connect(&app, SIGNAL(openFile(QString)), &mainWindow, SLOT(openDatabase(QString)));
|
|
|
|
if (!args.isEmpty()) {
|
|
QString filename = args[0];
|
|
if (!filename.isEmpty() && QFile::exists(filename)) {
|
|
mainWindow.openDatabase(filename, parser.value(passwordOption), parser.value(keyfileOption));
|
|
}
|
|
}
|
|
|
|
if (config()->get("OpenPreviousDatabasesOnStartup").toBool()) {
|
|
QStringList filenames = config()->get("LastOpenedDatabases").toStringList();
|
|
Q_FOREACH (const QString& filename, filenames) {
|
|
if (!filename.isEmpty() && QFile::exists(filename)) {
|
|
mainWindow.openDatabase(filename, QString(), QString());
|
|
}
|
|
}
|
|
}
|
|
|
|
return app.exec();
|
|
}
|