summaryrefslogtreecommitdiffstats
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authortezeb <tezeb+github@outoftheblue.pl>2016-12-30 22:09:18 +0100
committertezeb <tezeb+github@outoftheblue.pl>2016-12-30 22:09:18 +0100
commite0964b9c170754ce92d391ac1ed43da88f3cedbf (patch)
treedd70c63a1b1f6115655020364527e236e907b6ef /src/mainwindow.h
parentfe57825d8ba62a328e9aeeb1ac448d9c82e38050 (diff)
new signal interface for internal processes
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 6d42a371..f199cf11 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -77,8 +77,7 @@ private slots:
void on_treeView_clicked(const QModelIndex &index);
void on_treeView_doubleClicked(const QModelIndex &index);
void on_configButton_clicked();
- void readyRead(const QString &, const QString &);
- void processFinished(int, const QString &, const QString &);
+ void processFinished(const QString &, const QString &);
void processError(QProcess::ProcessError);
void clearClipboard();
void clearPanel(bool notify);
@@ -94,7 +93,7 @@ private slots:
void showContextMenu(const QPoint &pos);
void showBrowserContextMenu(const QPoint &pos);
void addFolder();
- void editPassword();
+ void editPassword(const QString &);
void focusInput();
void copyTextToClipboard(const QString &text);
@@ -106,7 +105,10 @@ private slots:
void setLastDecrypt(QString);
void passShowHandler(const QString &);
- void processErrorExit(const QString &);
+ void processErrorExit(int exitCode, const QString &);
+
+ void finishedInsert(const QString &, const QString &);
+ void keyGenerationComplete(const QString &p_output, const QString &p_errout);
private:
QAction *actionAddPassword;
@@ -135,8 +137,7 @@ private:
void selectFirstFile();
QModelIndex firstFile(QModelIndex parentIndex);
QString getFile(const QModelIndex &, bool);
- void setPassword(QString, bool, bool);
- QList<UserInfo> listKeys(QString keystring = "", bool secret = false);
+ void setPassword(QString, bool isNew = true);
void mountWebDav();
void updateProfileBox();