summaryrefslogtreecommitdiffstats
path: root/mainwindow.h
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2016-10-18 15:20:58 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2016-10-18 15:20:58 +0200
commit29385ceb731ce943699904d1c6a3c419f0a24c47 (patch)
treec17ac7e6c83b83e01fbeed2a5cc5a09cca412071 /mainwindow.h
parentff4b585f3595509aa0e1ad450af7c524747ffc1a (diff)
Missing documentation
Diffstat (limited to 'mainwindow.h')
-rw-r--r--mainwindow.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h
index e4aff0d0..2b2f1463 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -25,8 +25,17 @@ class MainWindow;
\brief Execution queue items for non-interactive ordered execution.
*/
struct execQueueItem {
+ /**
+ * @brief app executable path.
+ */
QString app;
+ /**
+ * @brief args arguments for executable.
+ */
QString args;
+ /**
+ * @brief input stdio input.
+ */
QString input;
};
@@ -37,8 +46,17 @@ struct UserInfo;
\brief holds the Password configuration settings
*/
struct passwordConfiguration {
+ /**
+ * @brief passwordConfiguration::selected character set.
+ */
int selected;
+ /**
+ * @brief passwordConfiguration::length of password.
+ */
int length;
+ /**
+ * @brief passwordConfiguration::Characters the different character sets.
+ */
QString Characters[4];
passwordConfiguration() {
length = 16;
@@ -69,6 +87,12 @@ class MainWindow : public QMainWindow {
enum actionType { GPG, GIT, EDIT, DELETE, GPG_INTERNAL, PWGEN };
public:
+ /**
+ * @brief MainWindow::clipBoardType enum
+ * 0 Never
+ * 1 Always
+ * 2 On demand
+ */
enum clipBoardType {
CLIPBOARD_NEVER = 0,
CLIPBOARD_ALWAYS = 1,
@@ -91,6 +115,10 @@ public:
void config();
void executePassGitInit();
+ /**
+ * @brief MainWindow::pwdConfig instance of passwordConfiguration.
+ * @sa MainWindow::passwordConfiguration
+ */
passwordConfiguration pwdConfig;
protected: