]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: 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 | |
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 |
83df96d6 | 26 | |
9b6dbb09 | 27 | // Copy constructors |
72cdf4c9 VZ |
28 | wxAcceleratorTable(const wxAcceleratorTable& accel) { Ref(accel); } |
29 | wxAcceleratorTable(const wxAcceleratorTable* accel) { if (accel) Ref(*accel); } | |
83df96d6 | 30 | |
9b6dbb09 | 31 | ~wxAcceleratorTable(); |
83df96d6 | 32 | |
72cdf4c9 | 33 | wxAcceleratorTable& operator = (const wxAcceleratorTable& accel) { if (*this == accel) return (*this); Ref(accel); return *this; } |
fbfb8bcc VZ |
34 | bool operator == (const wxAcceleratorTable& accel) const { return m_refData == accel.m_refData; } |
35 | bool operator != (const wxAcceleratorTable& accel) const { return m_refData != accel.m_refData; } | |
83df96d6 | 36 | |
9b6dbb09 | 37 | bool Ok() const; |
83df96d6 JS |
38 | |
39 | // Implementation only | |
8aa04e8b JS |
40 | int GetCount() const; |
41 | wxAcceleratorEntry* GetEntries() const; | |
9b6dbb09 JS |
42 | }; |
43 | ||
44 | WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable; | |
45 | ||
46 | #endif | |
83df96d6 | 47 | // _WX_ACCEL_H_ |