]>
Commit | Line | Data |
---|---|---|
110f3205 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1e6feb95 | 2 | // Name: wx/msw/accel.h |
110f3205 JS |
3 | // Purpose: wxAcceleratorTable class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 31/7/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
110f3205 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_ACCEL_H_ | |
13 | #define _WX_ACCEL_H_ | |
14 | ||
b5dbe15d | 15 | class WXDLLIMPEXP_FWD_CORE wxWindow; |
706e740f | 16 | |
c50f1fb9 VZ |
17 | // ---------------------------------------------------------------------------- |
18 | // the accel table has all accelerators for a given window or menu | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
53a2db12 | 21 | class WXDLLIMPEXP_CORE wxAcceleratorTable : public wxObject |
110f3205 | 22 | { |
110f3205 | 23 | public: |
1e6feb95 | 24 | // default ctor |
f8855e47 | 25 | wxAcceleratorTable() { } |
1e6feb95 VZ |
26 | |
27 | // load from .rc resource (Windows specific) | |
28 | wxAcceleratorTable(const wxString& resource); | |
29 | ||
30 | // initialize from array | |
31 | wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); | |
110f3205 | 32 | |
b7cacb43 VZ |
33 | bool Ok() const { return IsOk(); } |
34 | bool IsOk() const; | |
110f3205 JS |
35 | void SetHACCEL(WXHACCEL hAccel); |
36 | WXHACCEL GetHACCEL() const; | |
c50f1fb9 | 37 | |
77c46f00 | 38 | // translate the accelerator, return true if done |
c50f1fb9 | 39 | bool Translate(wxWindow *window, WXMSG *msg) const; |
110f3205 | 40 | |
1e6feb95 VZ |
41 | private: |
42 | DECLARE_DYNAMIC_CLASS(wxAcceleratorTable) | |
43 | }; | |
110f3205 JS |
44 | |
45 | #endif | |
46 | // _WX_ACCEL_H_ |