diff options
| author | Mavridis Philippe <mavridisf@gmail.com> | 2023-12-01 21:20:22 +0200 |
|---|---|---|
| committer | Mavridis Philippe <mavridisf@gmail.com> | 2023-12-17 14:56:17 +0200 |
| commit | f30ac87a4f8f5f7ee6df01c4d9e6605de908d9f5 (patch) | |
| tree | ffac623ac9eaead4c6d82614e7b0e7bab5b6eed3 /src/kernel/ntqnamespace.h | |
| parent | c339f68fc0b054762600bf3a0402ab1e46b20650 (diff) | |
| download | tqt-f30ac87a4f8f5f7ee6df01c4d9e6605de908d9f5.tar.gz tqt-f30ac87a4f8f5f7ee6df01c4d9e6605de908d9f5.zip | |
Add support for HistoryBackButton and HistoryForwardButton
This resolves TDE/tdebase#421.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit aec0061106cfff96bb21499850c863b0054ecb5f)
Diffstat (limited to 'src/kernel/ntqnamespace.h')
| -rw-r--r-- | src/kernel/ntqnamespace.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/src/kernel/ntqnamespace.h b/src/kernel/ntqnamespace.h index b044494b1..a8261be23 100644 --- a/src/kernel/ntqnamespace.h +++ b/src/kernel/ntqnamespace.h @@ -74,17 +74,19 @@ public: // documented in qevent.cpp enum ButtonState { // mouse/keyboard state values - NoButton = 0x0000, - LeftButton = 0x0001, - RightButton = 0x0002, - MidButton = 0x0004, - MouseButtonMask = 0x0007, - ShiftButton = 0x0100, - ControlButton = 0x0200, - AltButton = 0x0400, - MetaButton = 0x0800, - KeyButtonMask = 0x0f00, - Keypad = 0x4000 + NoButton = 0x0000, + LeftButton = 0x0001, + RightButton = 0x0002, + MidButton = 0x0004, + HistoryBackButton = 0x0008, + HistoryForwardButton = 0x0010, + MouseButtonMask = 0x001f, + ShiftButton = 0x0100, + ControlButton = 0x0200, + AltButton = 0x0400, + MetaButton = 0x0800, + KeyButtonMask = 0x0f00, + Keypad = 0x4000 }; // documented in qobject.cpp |
