summaryrefslogtreecommitdiffstats
path: root/dialog.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-05-27 05:22:43 +0200
committerAnne Jan Brouwer <annejan@noprotocol.com>2015-05-27 05:22:43 +0200
commitc629a26013a5de6f065b2b90f48838d8251623ad (patch)
treedfadeebc848986d9b48256d12b5d30db6ea2de5c /dialog.cpp
parent5719afc09a7cb612c1109b38fb7270ca743a0be3 (diff)
minor visual additions
Diffstat (limited to 'dialog.cpp')
-rw-r--r--dialog.cpp88
1 files changed, 45 insertions, 43 deletions
diff --git a/dialog.cpp b/dialog.cpp
index a313d245..52be32ec 100644
--- a/dialog.cpp
+++ b/dialog.cpp
@@ -18,6 +18,7 @@ Dialog::Dialog(MainWindow *parent) :
ui->setupUi(this);
ui->profileTable->verticalHeader()->hide();
ui->profileTable->horizontalHeader()->setStretchLastSection(true);
+ ui->label->setText(ui->label->text() + VERSION);
}
/**
@@ -360,49 +361,6 @@ void Dialog::addGPGId(bool addGPGId)
{
ui->checkBoxAddGPGId->setChecked(addGPGId);
}
-/**
- * @brief Dialog::wizard
- */
-void Dialog::wizard()
-{
- //mainWindow->checkConfig();
-
- QString gpg = ui->gpgPath->text();
- //QString gpg = mainWindow->getGpgExecutable();
- if(!QFile(gpg).exists()){
- QMessageBox::critical(this, tr("GnuPG not found"),
- tr("Please install GnuPG on your system.<br>Install <strong>gpg</strong> using your favorite package manager<br>or <a href=\"https://www.gnupg.org/download/#sec-1-2\">download</a> it from GnuPG.org"));
-
- // TODO REST ?
- }
-
- QStringList names = mainWindow->getSecretKeys();
- //qDebug() << names;
- if (QFile(gpg).exists() && names.empty()) {
- KeygenDialog d(this);
- d.exec();
- }
-
- QString passStore = ui->storePath->text();
- if(!QFile(passStore + ".gpg-id").exists()){
- QMessageBox::critical(this, tr("Password store not initialised"),
- tr("The folder %1 doesn't seem to be a password store or is not yet initialised.").arg(passStore));
- while(!QFile(passStore).exists()) {
- on_toolButtonStore_clicked();
- passStore = ui->storePath->text();
- }
- if (!QFile(passStore + ".gpg-id").exists()) {
- // apears not to be store
- // init yes / no ?
- mainWindow->userDialog(passStore);
- }
- }
-
- // Can you use the store?
-
-
- //ui->gpgPath->setText(gpg);
-}
/**
* @brief Dialog::genKey
@@ -518,3 +476,47 @@ void Dialog::on_deleteButton_clicked()
ui->deleteButton->setEnabled(false);
}
}
+
+/**
+ * @brief Dialog::wizard
+ */
+void Dialog::wizard()
+{
+ //mainWindow->checkConfig();
+
+ QString gpg = ui->gpgPath->text();
+ //QString gpg = mainWindow->getGpgExecutable();
+ if(!QFile(gpg).exists()){
+ QMessageBox::critical(this, tr("GnuPG not found"),
+ tr("Please install GnuPG on your system.<br>Install <strong>gpg</strong> using your favorite package manager<br>or <a href=\"https://www.gnupg.org/download/#sec-1-2\">download</a> it from GnuPG.org"));
+
+ // TODO REST ?
+ }
+
+ QStringList names = mainWindow->getSecretKeys();
+ //qDebug() << names;
+ if (QFile(gpg).exists() && names.empty()) {
+ KeygenDialog d(this);
+ d.exec();
+ }
+
+ QString passStore = ui->storePath->text();
+ if(!QFile(passStore + ".gpg-id").exists()){
+ QMessageBox::critical(this, tr("Password store not initialised"),
+ tr("The folder %1 doesn't seem to be a password store or is not yet initialised.").arg(passStore));
+ while(!QFile(passStore).exists()) {
+ on_toolButtonStore_clicked();
+ passStore = ui->storePath->text();
+ }
+ if (!QFile(passStore + ".gpg-id").exists()) {
+ // apears not to be store
+ // init yes / no ?
+ mainWindow->userDialog(passStore);
+ }
+ }
+
+ // Can you use the store?
+
+
+ //ui->gpgPath->setText(gpg);
+}