]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/accel.h
don't test for __WIN95__ which doesn't exist any more; don't do compiler checks here...
[wxWidgets.git] / include / wx / motif / accel.h
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
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 WXDLLEXPORT 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 // Copy constructors
28 wxAcceleratorTable(const wxAcceleratorTable& accel) { Ref(accel); }
29 wxAcceleratorTable(const wxAcceleratorTable* accel) { if (accel) Ref(*accel); }
30
31 ~wxAcceleratorTable();
32
33 wxAcceleratorTable& operator = (const wxAcceleratorTable& accel) { if (*this == accel) return (*this); Ref(accel); return *this; }
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; }
36
37 bool Ok() const;
38
39 // Implementation only
40 int GetCount() const;
41 wxAcceleratorEntry* GetEntries() const;
42 };
43
44 WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable;
45
46 #endif
47 // _WX_ACCEL_H_