aboutsummaryrefslogtreecommitdiffstats
path: root/fileencryptiondialog.h
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-14 20:19:53 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-14 20:19:53 +0000
commit141e99156c4370bb5ce19b61e070d226fa90ab8e (patch)
tree42090cf2dc87649be5d1b94ddbb753c8f4c9a599 /fileencryptiondialog.h
parentchanged verifydetailsdialog, updated todo (diff)
downloadgpg4usb-141e99156c4370bb5ce19b61e070d226fa90ab8e.tar.gz
gpg4usb-141e99156c4370bb5ce19b61e070d226fa90ab8e.zip
set modal and parent for key details dialog. left margin for verifynotification. More doxygen
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@532 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'fileencryptiondialog.h')
-rwxr-xr-xfileencryptiondialog.h53
1 files changed, 47 insertions, 6 deletions
diff --git a/fileencryptiondialog.h b/fileencryptiondialog.h
index 38d1da7..e5cc9e1 100755
--- a/fileencryptiondialog.h
+++ b/fileencryptiondialog.h
@@ -25,6 +25,7 @@
#include "context.h"
#include "keylist.h"
+QT_BEGIN_NAMESPACE
class QDialog;
class QLineEdit;
class QWidget;
@@ -36,30 +37,70 @@ class QVBoxLayout;
class QDebug;
class QFileDialog;
class QRadioButton;
+QT_END_NAMESPACE
+/**
+ * @brief
+ *
+ * @class FileEncryptionDialog fileencryptiondialog.h "fileencryptiondialog.h"
+ */
class FileEncryptionDialog : public QDialog
{
Q_OBJECT
public:
+ /**
+ * @brief
+ *
+ * @fn FileEncryptionDialog
+ * @param ctx
+ * @param iconPath
+ * @param keyList
+ * @param parent
+ */
FileEncryptionDialog(GpgME::Context *ctx, QString iconPath, QStringList keyList , QWidget *parent = 0);
public slots:
+ /**
+ * @details
+ *
+ * @fn selectInputFile
+ */
void selectInputFile();
+ /**
+ * @brief
+ *
+ * @fn selectOutputFile
+ */
void selectOutputFile();
+ /**
+ * @brief
+ *
+ * @fn executeAction
+ */
void executeAction();
+ /**
+ * @brief
+ *
+ * @fn hideKeyList
+ */
void hideKeyList();
+ /**
+ * @brief
+ *
+ * @fn showKeyList
+ */
void showKeyList();
private:
- QLineEdit *outputFileEdit;
- QLineEdit *inputFileEdit;
- QRadioButton *radioEnc;
- QRadioButton *radioDec;
+ QLineEdit *outputFileEdit; /**< TODO */
+ QLineEdit *inputFileEdit; /**< TODO */
+ QRadioButton *radioEnc; /**< TODO */
+ QRadioButton *radioDec; /**< TODO */
protected:
- GpgME::Context *mCtx;
- KeyList *mKeyList;
+ GpgME::Context *mCtx; /**< TODO */
+ KeyList *mKeyList; /**< TODO */
};
#endif // __FILEENCRYPTIONDIALOG_H__