1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxAcceleratorTable class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "accel.h"
19 #include "wx/object.h"
20 #include "wx/string.h"
22 class WXDLLEXPORT wxAcceleratorTable
;
25 #define wxACCEL_ALT 0x01
28 #define wxACCEL_CTRL 0x02
30 // Hold Shift key down
31 #define wxACCEL_SHIFT 0x04
33 class WXDLLEXPORT wxAcceleratorEntry
36 wxAcceleratorEntry(int flags
= 0, int keyCode
= 0, int cmd
= 0)
38 m_flags
= flags
; m_keyCode
= keyCode
; m_command
= cmd
;
41 inline void Set(int flags
, int keyCode
, int cmd
)
42 { m_flags
= flags
; m_keyCode
= keyCode
; m_command
= cmd
; }
44 inline int GetFlags() const { return m_flags
; }
45 inline int GetKeyCode() const { return m_keyCode
; }
46 inline int GetCommand() const { return m_command
; }
49 int m_keyCode
; // ASCII or virtual keycode
50 int m_command
; // Command id to generate
53 class WXDLLEXPORT wxAcceleratorTable
: public wxObject
55 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable
)
58 wxAcceleratorTable(const wxString
& resource
); // Load from .rc resource
59 wxAcceleratorTable(int n
, wxAcceleratorEntry entries
[]); // Load from array
62 inline wxAcceleratorTable(const wxAcceleratorTable
& accel
) { Ref(accel
); }
63 inline wxAcceleratorTable(const wxAcceleratorTable
* accel
) { if (accel
) Ref(*accel
); }
65 ~wxAcceleratorTable();
67 inline wxAcceleratorTable
& operator = (const wxAcceleratorTable
& accel
) { if (*this == accel
) return (*this); Ref(accel
); return *this; }
68 inline bool operator == (const wxAcceleratorTable
& accel
) { return m_refData
== accel
.m_refData
; }
69 inline bool operator != (const wxAcceleratorTable
& accel
) { return m_refData
!= accel
.m_refData
; }
74 WXDLLEXPORT_DATA(extern wxAcceleratorTable
) wxNullAcceleratorTable
;