diff options
author | Saturneric <[email protected]> | 2021-05-11 22:09:22 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-05-11 22:09:22 +0000 |
commit | 8a63cb095c5a6b488e0bbf19269ab7aae492bfcc (patch) | |
tree | 13dd8241e6267b4fae6bb1356d3789e7de40ea37 /include/fileencryptiondialog.h | |
parent | Qt5 & Cmake Supported. (diff) | |
download | GpgFrontend-8a63cb095c5a6b488e0bbf19269ab7aae492bfcc.tar.gz GpgFrontend-8a63cb095c5a6b488e0bbf19269ab7aae492bfcc.zip |
Change CXX Standard to C++14
Headers Tidy and Reformat
Diffstat (limited to '')
-rwxr-xr-x | include/fileencryptiondialog.h | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/include/fileencryptiondialog.h b/include/fileencryptiondialog.h index af6edff5..f929716b 100755 --- a/include/fileencryptiondialog.h +++ b/include/fileencryptiondialog.h @@ -26,27 +26,14 @@ #include "keylist.h" #include "verifydetailsdialog.h" -QT_BEGIN_NAMESPACE -class QDialog; -class QLineEdit; -class QWidget; -class QDialogButtonBox; -class QLabel; -class QPushButton; -class QHBoxLayout; -class QVBoxLayout; -class QDebug; -class QFileDialog; -QT_END_NAMESPACE /** * @brief * * @class FileEncryptionDialog fileencryptiondialog.h "fileencryptiondialog.h" */ -class FileEncryptionDialog : public QDialog -{ - Q_OBJECT +class FileEncryptionDialog : public QDialog { +Q_OBJECT public: @@ -65,38 +52,45 @@ public: * @param keyList * @param parent */ - FileEncryptionDialog(GpgME::GpgContext *ctx, QStringList keyList, DialogAction action, QWidget *parent = 0); + FileEncryptionDialog(GpgME::GpgContext *ctx, QStringList keyList, DialogAction action, QWidget *parent = nullptr); + public slots: + /** * @details * * @fn selectInputFile */ void slotSelectInputFile(); + /** * @brief * * @fn selectOutputFile */ void slotSelectOutputFile(); + /** * @brief * * @fn selectSignFile */ void slotSelectSignFile(); + /** * @brief * * @fn executeAction */ void slotExecuteAction(); + /** * @brief * * @fn hideKeyList */ void slotHideKeyList(); + /** * @brief * @@ -115,4 +109,5 @@ protected: KeyList *mKeyList; /**< TODO */ }; + #endif // __FILEENCRYPTIONDIALOG_H__ |