1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#include "mainwindow.h"
#include <QApplication>
#include <QTranslator>
/*! \mainpage QtPass
*
* \section intro_sec Introduction
*
* QtPass is a multi-platform GUI for pass, the standard unix password manager.
*
* https://qtpass.org/
*
* \section install_sec Installation
*
* \subsection dependencies Dependencies
*
* - QtPass requires Qt 4.8 or later, preferably Qt5.5 or later.
* - The Linguist package is required to compile the translations.
* - For use of the fallback icons the SVG library is required.
*
* At runtime the only real dependency is gpg2 but to make the most of it,
* you'll need git and pass too.
*
* \subsection source From source
*
* On most *nix systems all you need is:
*
* `qmake && make && make install`
*/
/**
* @brief main
* @param argc
* @param argv
* @return
*/
int main(int argc, char *argv[]) {
QString text = "";
for (int i = 1; i < argc; ++i) {
if (i > 1)
text += " ";
text += argv[i];
}
if (text.indexOf("-psn_") == 0) {
text.clear();
}
#if SINGLE_APP
QString name = qgetenv("USER");
if (name.isEmpty())
name = qgetenv("USERNAME");
SingleApplication app(argc, argv, name + "QtPass");
if (app.isRunning()) {
if (text.length() > 0)
app.sendMessage(text);
return 0;
}
#else
QApplication app(argc, argv);
#endif
QCoreApplication::setOrganizationName("IJHack");
QCoreApplication::setOrganizationDomain("ijhack.org");
QCoreApplication::setApplicationName("QtPass");
QCoreApplication::setApplicationVersion(VERSION);
// Setup and load translator for localization
QTranslator translator;
QString locale = QLocale::system().name();
// locale = "nl_NL";
// locale = "he_IL";
// locale = "ar_MA";
translator.load(QString(":localization/localization_") + locale +
QString(".qm"));
app.installTranslator(&translator);
app.setLayoutDirection(QObject::tr("LTR") == "RTL" ? Qt::RightToLeft
: Qt::LeftToRight);
MainWindow w;
QObject::connect(&app, SIGNAL(aboutToQuit()), &w, SLOT(clearClipboard()));
app.setActiveWindow(&w);
app.setWindowIcon(QIcon(":artwork/icon.png"));
w.setApp(&app);
w.setText(text);
w.show();
return app.exec();
}
|