]>
Commit | Line | Data |
---|---|---|
9b6dbb09 | 1 | ///////////////////////////////////////////////////////////////////////////// |
925f7740 | 2 | // Name: wx/motif/accel.h |
9b6dbb09 JS |
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 | |
65571936 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_ACCEL_H_ | |
13 | #define _WX_ACCEL_H_ | |
14 | ||
9b6dbb09 JS |
15 | #include "wx/object.h" |
16 | #include "wx/string.h" | |
8aa04e8b | 17 | #include "wx/event.h" |
9b6dbb09 | 18 | |
9b6dbb09 JS |
19 | class WXDLLEXPORT wxAcceleratorTable: public wxObject |
20 | { | |
83df96d6 | 21 | DECLARE_DYNAMIC_CLASS(wxAcceleratorTable) |
9b6dbb09 JS |
22 | public: |
23 | wxAcceleratorTable(); | |
24 | wxAcceleratorTable(const wxString& resource); // Load from .rc resource | |
3c674514 | 25 | wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array |
f8855e47 | 26 | |
d3c7fc99 | 27 | virtual ~wxAcceleratorTable(); |
f8855e47 | 28 | |
b7cacb43 VZ |
29 | bool Ok() const { return IsOk(); } |
30 | bool IsOk() const; | |
925f7740 | 31 | |
83df96d6 | 32 | // Implementation only |
8aa04e8b JS |
33 | int GetCount() const; |
34 | wxAcceleratorEntry* GetEntries() const; | |
9b6dbb09 JS |
35 | }; |
36 | ||
37 | WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable; | |
38 | ||
39 | #endif | |
83df96d6 | 40 | // _WX_ACCEL_H_ |