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
27 wxAcceleratorTable() : wxObject() { }
30 wxAcceleratorTable(const wxAcceleratorTable
& accel
) : wxObject(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 wxAcceleratorTable
& operator=(const wxAcceleratorTable
& accel
)
45 bool operator==(const wxAcceleratorTable
& accel
) const;
46 bool operator!=(const wxAcceleratorTable
& accel
) const
47 { return !(*this == accel
); }
50 void SetHACCEL(WXHACCEL hAccel
);
51 WXHACCEL
GetHACCEL() const;
53 // translate the accelerator, return true if done
54 bool Translate(wxWindow
*window
, WXMSG
*msg
) const;
57 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable
)