1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxAcceleratorTable class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/object.h"
17 class WXDLLEXPORT wxAcceleratorTable
;
20 #define wxACCEL_ALT 0x01
23 #define wxACCEL_CTRL 0x02
25 // Hold Shift key down
26 #define wxACCEL_SHIFT 0x04
29 #define wxACCEL_NORMAL 0x00
31 class WXDLLEXPORT wxAcceleratorTable
: public wxObject
33 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable
)
36 wxAcceleratorTable(const wxString
& rsResource
); // Load from .rc resource
37 wxAcceleratorTable( int n
38 ,const wxAcceleratorEntry vaEntries
[]
41 ~wxAcceleratorTable();
43 inline bool operator== (const wxAcceleratorTable
& rAccel
) const
44 { return m_refData
== rAccel
.m_refData
; };
45 inline bool operator!= (const wxAcceleratorTable
& rAccel
) const
46 { return m_refData
!= rAccel
.m_refData
; };
49 void SetHACCEL(WXHACCEL hAccel
);
50 WXHACCEL
GetHACCEL(void) const;
52 // translate the accelerator, return TRUE if done
53 bool Translate( WXHWND hWnd
58 WXDLLEXPORT_DATA(extern wxAcceleratorTable
) wxNullAcceleratorTable
;
60 WXDLLEXPORT wxString
wxPMTextToLabel(const wxString
& rsTitle
);