1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/accel.h
3 // Purpose: wxAcceleratorTable class
4 // Author: Stefan Csomor
7 // Copyright: (c) Stefan Csomor
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
14 #include "wx/string.h"
17 class WXDLLIMPEXP_CORE wxAcceleratorTable
: public wxObject
19 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable
)
22 wxAcceleratorTable(int n
, const wxAcceleratorEntry entries
[]); // Load from array
24 virtual ~wxAcceleratorTable();
26 bool Ok() const { return IsOk(); }
29 int GetCommand( wxKeyEvent
&event
);