]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/palmos/accel.h
Use wxUSE_* flags for new animation code.
[wxWidgets.git] / include / wx / palmos / accel.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/accel.h
3// Purpose: wxAcceleratorTable class
4// Author: William Osborne - minimal working wxPalmOS port
5// Modified by:
6// Created: 10/13/04
7// RCS-ID: $Id$
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_ACCEL_H_
13#define _WX_ACCEL_H_
14
15// ----------------------------------------------------------------------------
16// the accel table has all accelerators for a given window or menu
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxAcceleratorTable : public wxObject
20{
21public:
22 // default ctor
23 wxAcceleratorTable();
24
25 // load from .rc resource (Windows specific)
26 wxAcceleratorTable(const wxString& resource);
27
28 // initialize from array
29 wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]);
30
31 virtual ~wxAcceleratorTable();
32
33#if WXWIN_COMPATIBILITY_2_4
34 bool operator==(const wxAcceleratorTable& accel) const
35 { return m_refData == accel.m_refData; }
36 bool operator!=(const wxAcceleratorTable& accel) const
37 { return !(*this == accel); }
38#endif
39
40 bool Ok() const { return IsOk(); }
41 bool IsOk() const;
42 void SetHACCEL(WXHACCEL hAccel);
43 WXHACCEL GetHACCEL() const;
44
45 // translate the accelerator, return true if done
46 bool Translate(wxWindow *window, WXMSG *msg) const;
47
48private:
49 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
50};
51
52#endif
53 // _WX_ACCEL_H_