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