From bce1c4508862a4f402551b66f1f4a8cc4e8a70da Mon Sep 17 00:00:00 2001 From: nils Date: Sun, 4 Jan 2009 00:51:28 +0000 Subject: added missing files git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@205 34ebc366-c3a9-4b3c-9f84-69acf7962910 --- fileencryptiondialog.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 fileencryptiondialog.h (limited to 'fileencryptiondialog.h') diff --git a/fileencryptiondialog.h b/fileencryptiondialog.h new file mode 100755 index 0000000..97854e8 --- /dev/null +++ b/fileencryptiondialog.h @@ -0,0 +1,32 @@ +#include +#include +#include + +#include "context.h" +#include "keylist.h" + +class FileEncryptionDialog : public QDialog +{ + Q_OBJECT + +public: + FileEncryptionDialog(GpgME::Context *ctx, QString iconPath); + +public slots: + void selectInputFile(); + void selectOutputFile(); + void executeAction(); + void hideKeyList(); + void showKeyList(); + +private: + QLineEdit *outputFileEdit; + QLineEdit *inputFileEdit; + QRadioButton *radioEnc; + QRadioButton *radioDec; + +protected: + GpgME::Context *mCtx; + KeyList *mKeyList; + +}; -- cgit v1.2.3