diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-02-07 19:59:34 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 8c89f6fe1520d9d88fb81acab995ba803f5c4ac1 (patch) | |
tree | fb081e05e0832e91591696187c8fa148464da4c0 /desktop-widgets/tagwidget.h | |
parent | 1c854d580ae21d6647bcdd5d6db3e57cda9b5f3c (diff) | |
download | subsurface-8c89f6fe1520d9d88fb81acab995ba803f5c4ac1.tar.gz |
Undo: implement undo of tag editing
The code follows the other edit-commands, but uses its own base
class, because it is distinctly different. Editing the tag field
does not simply mean setting the tag for all dives, but rather
adding and removing individual tags.
This class will be reused for editing of dive buddies and masters.
Modify the tag widget thus that it sends an editingFinished()
signal when it goes out of focus. The editingFinished() signal
was prevented by hooking into the return, enter and tab key-events.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/tagwidget.h')
-rw-r--r-- | desktop-widgets/tagwidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/tagwidget.h b/desktop-widgets/tagwidget.h index f88b8a208..510b3c48b 100644 --- a/desktop-widgets/tagwidget.h +++ b/desktop-widgets/tagwidget.h @@ -28,6 +28,7 @@ slots: protected: void keyPressEvent(QKeyEvent *e); private: + void focusOutEvent(QFocusEvent *ev) override; QCompleter *m_completer; bool lastFinishedTag; }; |