]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/accel.h
initial draft of wxCollapsiblePane (patch 1577412 by Francesco)
[wxWidgets.git] / include / wx / generic / accel.h
CommitLineData
21aeca5e
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/generic/accel.h
3// Purpose: wxAcceleratorTable class
4// Author: Robert Roebling
5// RCS-ID: $Id$
6// Copyright: (c) Robert Roebling
65571936 7// Licence: wxWindows licence
21aeca5e
VZ
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_GENERIC_ACCEL_H_
11#define _WX_GENERIC_ACCEL_H_
12
21aeca5e
VZ
13class WXDLLEXPORT wxKeyEvent;
14
15// ----------------------------------------------------------------------------
16// wxAcceleratorTable
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxAcceleratorTable : public wxObject
20{
21public:
22 wxAcceleratorTable();
3c674514 23 wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]);
21aeca5e
VZ
24 virtual ~wxAcceleratorTable();
25
84df1042 26#if WXWIN_COMPATIBILITY_2_4
21aeca5e 27 bool operator==(const wxAcceleratorTable& accel) const
84df1042 28 { return m_refData == accel.m_refData; }
21aeca5e
VZ
29 bool operator!=(const wxAcceleratorTable& accel) const
30 { return !(*this == accel); }
84df1042 31#endif
21aeca5e 32
b7cacb43
VZ
33 bool Ok() const { return IsOk(); }
34 bool IsOk() const;
21aeca5e
VZ
35
36 void Add(const wxAcceleratorEntry& entry);
37 void Remove(const wxAcceleratorEntry& entry);
38
39 // implementation
40 // --------------
41
42 wxMenuItem *GetMenuItem(const wxKeyEvent& event) const;
43 int GetCommand(const wxKeyEvent& event) const;
44
45 const wxAcceleratorEntry *GetEntry(const wxKeyEvent& event) const;
46
fa03793d
VS
47protected:
48 // ref counting code
49 virtual wxObjectRefData *CreateRefData() const;
50 virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;
51
21aeca5e
VZ
52private:
53 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
54};
55
56#endif // _WX_GENERIC_ACCEL_H_
57