diff options
Diffstat (limited to 'include/MainWindow.h')
-rw-r--r-- | include/MainWindow.h | 48 |
1 files changed, 28 insertions, 20 deletions
diff --git a/include/MainWindow.h b/include/MainWindow.h index efe56919..af6b1560 100644 --- a/include/MainWindow.h +++ b/include/MainWindow.h @@ -69,6 +69,34 @@ protected: */ void closeEvent(QCloseEvent *event) override; +public slots: + + /** + * @details Open a new tab for path + */ + void slotOpenFile(QString &path); + + /** + * @details Open dialog for encrypting file. + */ + void slotFileEncrypt(); + + /** + * @details Open dialog for decrypting file. + */ + void slotFileDecrypt(); + + /** + * @details Open dialog for signing file. + */ + void slotFileSign(); + + /** + * @details Open dialog for verifying file. + */ + void slotFileVerify(); + + private slots: /** @@ -158,26 +186,6 @@ private slots: void slotAbout(); /** - * @details Open dialog for encrypting file. - */ - void slotFileEncrypt(); - - /** - * @details Open dialog for decrypting file. - */ - void slotFileDecrypt(); - - /** - * @details Open dialog for signing file. - */ - void slotFileSign(); - - /** - * @details Open dialog for verifying file. - */ - void slotFileVerify(); - - /** * @details Open File Opera Tab */ void slotOpenFileTab(); |