]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/accel.h
Add wxMenuItem::IsCheck() and IsRadio() accessors.
[wxWidgets.git] / include / wx / motif / accel.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/accel.h
3 // Purpose: wxAcceleratorTable class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_ACCEL_H_
13 #define _WX_ACCEL_H_
14
15 #include "wx/object.h"
16 #include "wx/string.h"
17 #include "wx/event.h"
18
19 class WXDLLIMPEXP_CORE wxAcceleratorTable: public wxObject
20 {
21 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
22 public:
23 wxAcceleratorTable();
24 wxAcceleratorTable(const wxString& resource); // Load from .rc resource
25 wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array
26
27 virtual ~wxAcceleratorTable();
28
29 bool Ok() const { return IsOk(); }
30 bool IsOk() const;
31
32 // Implementation only
33 int GetCount() const;
34 wxAcceleratorEntry* GetEntries() const;
35 };
36
37 extern WXDLLIMPEXP_DATA_CORE(wxAcceleratorTable) wxNullAcceleratorTable;
38
39 #endif
40 // _WX_ACCEL_H_