diff options
author | nils <[email protected]> | 2016-02-07 20:49:42 +0000 |
---|---|---|
committer | nils <[email protected]> | 2016-02-07 20:49:42 +0000 |
commit | 646ec2ba7cd74d65014fac420d58c6e402d6ef98 (patch) | |
tree | 53c173856129b8fc4fed337dec21d7437ffe2b58 /mainwindow.h | |
parent | seoma more refactoring (diff) | |
download | gpg4usb-646ec2ba7cd74d65014fac420d58c6e402d6ef98.tar.gz gpg4usb-646ec2ba7cd74d65014fac420d58c6e402d6ef98.zip |
added findwidget
Diffstat (limited to 'mainwindow.h')
-rw-r--r-- | mainwindow.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h index 9e699d3..2d6f855 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -29,6 +29,7 @@ #include "fileencryptiondialog.h" #include "settingsdialog.h" #include "verifynotification.h" +#include "findwidget.h" #include "wizard.h" QT_BEGIN_NAMESPACE @@ -106,6 +107,10 @@ private slots: void slotShowKeyDetails(); + /** + * @details Open find widget. + */ + void slotFind(); void slotStartWizard(); @@ -311,6 +316,7 @@ private: QAction *cutAct; /** Action to cut text */ QAction *pasteAct; /** Action to paste text */ QAction *selectallAct; /** Action to select whole text */ + QAction *findAct; /** Action to find text */ QAction *undoAct; /** Action to undo last action */ QAction *redoAct; /** Action to redo last action */ QAction *zoomInAct; /** Action to zoom in */ |