]> git.saurik.com Git - wxWidgets.git/blame - include/wx/palmos/accel.h
add an assert indicating that old code overriding OnExecute() must be updated with 2.9
[wxWidgets.git] / include / wx / palmos / accel.h
CommitLineData
ffecfa5a
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/accel.h
3// Purpose: wxAcceleratorTable class
e1d63b79 4// Author: William Osborne - minimal working wxPalmOS port
ffecfa5a
JS
5// Modified by:
6// Created: 10/13/04
e1d63b79 7// RCS-ID: $Id$
ffecfa5a
JS
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_ACCEL_H_
13#define _WX_ACCEL_H_
14
ffecfa5a
JS
15// ----------------------------------------------------------------------------
16// the accel table has all accelerators for a given window or menu
17// ----------------------------------------------------------------------------
18
53a2db12 19class WXDLLIMPEXP_CORE wxAcceleratorTable : public wxObject
ffecfa5a
JS
20{
21public:
22 // default ctor
23 wxAcceleratorTable();
24
ffecfa5a
JS
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
b7cacb43
VZ
33 bool Ok() const { return IsOk(); }
34 bool IsOk() const;
ffecfa5a
JS
35 void SetHACCEL(WXHACCEL hAccel);
36 WXHACCEL GetHACCEL() const;
37
767e3be0 38 // translate the accelerator, return true if done
ffecfa5a
JS
39 bool Translate(wxWindow *window, WXMSG *msg) const;
40
41private:
42 DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
43};
44
45#endif
46 // _WX_ACCEL_H_