summaryrefslogtreecommitdiffstats
path: root/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'mainwindow.h')
-rw-r--r--mainwindow.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h
index 2eeb079e..8cd092a4 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -17,6 +17,12 @@ namespace Ui {
class MainWindow;
}
+struct execQueueItem {
+ QString app;
+ QString args;
+ QString input;
+};
+
struct UserInfo;
class MainWindow : public QMainWindow
@@ -79,6 +85,8 @@ private:
QString clippedPass;
actionType currentAction;
QString lastDecrypt;
+ bool wrapperRunning;
+ QQueue<execQueueItem> *execQueue;
void updateText();
void executePass(QString, QString = QString());
void executeWrapper(QString, QString, QString = QString());