]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: accel.h | |
3 | // Purpose: wxAcceleratorTable class | |
4 | // Author: David Webster | |
5 | // Modified by: | |
6 | // Created: 10/13/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_ACCEL_H_ | |
13 | #define _WX_ACCEL_H_ | |
14 | ||
15 | #include "wx/object.h" | |
16 | ||
17 | class WXDLLEXPORT wxAcceleratorTable; | |
18 | ||
19 | // Hold Ctrl key down | |
20 | #define wxACCEL_ALT 0x01 | |
21 | ||
22 | // Hold Ctrl key down | |
23 | #define wxACCEL_CTRL 0x02 | |
24 | ||
25 | // Hold Shift key down | |
26 | #define wxACCEL_SHIFT 0x04 | |
27 | ||
28 | // Hold no key down | |
29 | #define wxACCEL_NORMAL 0x00 | |
30 | ||
31 | class WXDLLEXPORT wxAcceleratorTable: public wxObject | |
32 | { | |
33 | DECLARE_DYNAMIC_CLASS(wxAcceleratorTable) | |
34 | public: | |
35 | wxAcceleratorTable(); | |
36 | wxAcceleratorTable(const wxString& rsResource); // Load from .rc resource | |
37 | wxAcceleratorTable( int n | |
38 | ,const wxAcceleratorEntry vaEntries[] | |
39 | ); // Load from array | |
40 | ||
41 | ~wxAcceleratorTable(); | |
42 | ||
43 | inline bool operator== (const wxAcceleratorTable& rAccel) const | |
44 | { return m_refData == rAccel.m_refData; }; | |
45 | inline bool operator!= (const wxAcceleratorTable& rAccel) const | |
46 | { return m_refData != rAccel.m_refData; }; | |
47 | ||
48 | bool Ok() const; | |
49 | void SetHACCEL(WXHACCEL hAccel); | |
50 | WXHACCEL GetHACCEL(void) const; | |
51 | ||
52 | // translate the accelerator, return TRUE if done | |
53 | bool Translate( WXHWND hWnd | |
54 | ,WXMSG* pMsg | |
55 | ) const; | |
56 | }; | |
57 | ||
58 | WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable; | |
59 | ||
60 | WXDLLEXPORT wxString wxPMTextToLabel(const wxString& rsTitle); | |
61 | #endif | |
62 | // _WX_ACCEL_H_ |