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 virtual ~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
; };
48 bool Ok() const { return IsOk(); }
50 void SetHACCEL(WXHACCEL hAccel
);
51 WXHACCEL
GetHACCEL(void) const;
53 // translate the accelerator, return TRUE if done
54 bool Translate( WXHWND hWnd
59 WXDLLEXPORT_DATA(extern wxAcceleratorTable
) wxNullAcceleratorTable
;
61 WXDLLEXPORT wxString
wxPMTextToLabel(const wxString
& rsTitle
);