adding missing initializer to raw_control, fixes #13963
[wxWidgets.git] / include / wx / kbdstate.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/kbdstate.h
3 // Purpose: Declaration of wxKeyboardState class
4 // Author: Vadim Zeitlin
5 // Created: 2008-09-19
6 // RCS-ID: $Id$
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_KBDSTATE_H_
12 #define _WX_KBDSTATE_H_
13
14 #include "wx/defs.h"
15
16 // ----------------------------------------------------------------------------
17 // wxKeyboardState stores the state of the keyboard modifier keys
18 // ----------------------------------------------------------------------------
19
20 class WXDLLIMPEXP_CORE wxKeyboardState
21 {
22 public:
23 wxKeyboardState(bool controlDown = false,
24 bool shiftDown = false,
25 bool altDown = false,
26 bool metaDown = false)
27 : m_controlDown(controlDown),
28 m_shiftDown(shiftDown),
29 m_altDown(altDown),
30 m_metaDown(metaDown)
31 #ifdef __WXOSX__
32 ,m_rawControlDown(false)
33 #endif
34 {
35 }
36
37 // default copy ctor, assignment operator and dtor are ok
38
39
40 // accessors for the various modifier keys
41 // ---------------------------------------
42
43 // should be used check if the key event has exactly the given modifiers:
44 // "GetModifiers() = wxMOD_CONTROL" is easier to write than "ControlDown()
45 // && !MetaDown() && !AltDown() && !ShiftDown()"
46 int GetModifiers() const
47 {
48 return (m_controlDown ? wxMOD_CONTROL : 0) |
49 (m_shiftDown ? wxMOD_SHIFT : 0) |
50 (m_metaDown ? wxMOD_META : 0) |
51 #ifdef __WXOSX__
52 (m_rawControlDown ? wxMOD_RAW_CONTROL : 0) |
53 #endif
54 (m_altDown ? wxMOD_ALT : 0);
55 }
56
57 // returns true if any modifiers at all are pressed
58 bool HasModifiers() const { return GetModifiers() != wxMOD_NONE; }
59
60 // accessors for individual modifier keys
61 bool ControlDown() const { return m_controlDown; }
62 bool RawControlDown() const
63 {
64 #ifdef __WXOSX__
65 return m_rawControlDown;
66 #else
67 return m_controlDown;
68 #endif
69 }
70 bool ShiftDown() const { return m_shiftDown; }
71 bool MetaDown() const { return m_metaDown; }
72 bool AltDown() const { return m_altDown; }
73
74 // "Cmd" is a pseudo key which is Control for PC and Unix platforms but
75 // Apple ("Command") key under Macs: it makes often sense to use it instead
76 // of, say, ControlDown() because Cmd key is used for the same thing under
77 // Mac as Ctrl elsewhere (but Ctrl still exists, just not used for this
78 // purpose under Mac)
79 bool CmdDown() const
80 {
81 return ControlDown();
82 }
83
84 // these functions are mostly used by wxWidgets itself
85 // ---------------------------------------------------
86
87 void SetControlDown(bool down) { m_controlDown = down; }
88 void SetRawControlDown(bool down)
89 {
90 #ifdef __WXOSX__
91 m_rawControlDown = down;
92 #else
93 m_controlDown = down;
94 #endif
95 }
96 void SetShiftDown(bool down) { m_shiftDown = down; }
97 void SetAltDown(bool down) { m_altDown = down; }
98 void SetMetaDown(bool down) { m_metaDown = down; }
99
100
101 // for backwards compatibility with the existing code accessing these
102 // members of wxKeyEvent directly, these variables are public, however you
103 // should not use them in any new code, please use the accessors instead
104 public:
105 bool m_controlDown : 1;
106 bool m_shiftDown : 1;
107 bool m_altDown : 1;
108 bool m_metaDown : 1;
109 #ifdef __WXOSX__
110 bool m_rawControlDown : 1;
111 #endif
112 };
113
114 #endif // _WX_KBDSTATE_H_
115