1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/accel.h
3 // Purpose: wxAcceleratorTable class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "accel.h"
19 // ----------------------------------------------------------------------------
20 // the accel table has all accelerators for a given window or menu
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxAcceleratorTable
: public wxObject
30 wxAcceleratorTable(const wxAcceleratorTable
& accel
) { Ref(accel
); }
32 // load from .rc resource (Windows specific)
33 wxAcceleratorTable(const wxString
& resource
);
35 // initialize from array
36 wxAcceleratorTable(int n
, const wxAcceleratorEntry entries
[]);
38 virtual ~wxAcceleratorTable();
40 wxAcceleratorTable
& operator = (const wxAcceleratorTable
& accel
) { if ( *this != accel
) Ref(accel
); return *this; }
41 bool operator==(const wxAcceleratorTable
& accel
) const
42 { return m_refData
== accel
.m_refData
; } // FIXME: this is wrong (VZ)
43 bool operator!=(const wxAcceleratorTable
& accel
) const
44 { return !(*this == accel
); }
47 void SetHACCEL(WXHACCEL hAccel
);
48 WXHACCEL
GetHACCEL() const;
50 // translate the accelerator, return TRUE if done
51 bool Translate(wxWindow
*window
, WXMSG
*msg
) const;
54 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable
)