]>
Commit | Line | Data |
---|---|---|
110f3205 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: accel.cpp | |
3 | // Purpose: wxAcceleratorTable | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "accel.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include <stdio.h> | |
25 | #include "wx/setup.h" | |
2432b92d | 26 | #include "wx/window.h" |
110f3205 JS |
27 | #endif |
28 | ||
110f3205 JS |
29 | #include "wx/msw/accel.h" |
30 | ||
48d1144b JS |
31 | #include "wx/msw/private.h" |
32 | ||
110f3205 | 33 | IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject) |
110f3205 JS |
34 | |
35 | class WXDLLEXPORT wxAcceleratorRefData: public wxObjectRefData | |
36 | { | |
37 | friend class WXDLLEXPORT wxAcceleratorTable; | |
38 | public: | |
c50f1fb9 VZ |
39 | wxAcceleratorRefData(); |
40 | ~wxAcceleratorRefData(); | |
110f3205 JS |
41 | |
42 | inline HACCEL GetHACCEL() const { return m_hAccel; } | |
43 | protected: | |
44 | HACCEL m_hAccel; | |
45 | bool m_ok; | |
46 | }; | |
47 | ||
48 | #define M_ACCELDATA ((wxAcceleratorRefData *)m_refData) | |
49 | ||
50 | wxAcceleratorRefData::wxAcceleratorRefData() | |
51 | { | |
52 | m_ok = FALSE; | |
53 | m_hAccel = 0; | |
54 | } | |
55 | ||
56 | wxAcceleratorRefData::~wxAcceleratorRefData() | |
57 | { | |
58 | if (m_hAccel) | |
59 | { | |
1e6d9499 | 60 | // This function not available in WIN16 |
57c208c5 | 61 | #if !defined(__WIN16__) && !defined(__TWIN32__) |
110f3205 | 62 | DestroyAcceleratorTable((HACCEL) m_hAccel); |
1e6d9499 | 63 | #endif |
110f3205 JS |
64 | } |
65 | m_hAccel = 0 ; | |
66 | } | |
67 | ||
68 | wxAcceleratorTable::wxAcceleratorTable() | |
69 | { | |
70 | m_refData = NULL; | |
71 | } | |
72 | ||
73 | wxAcceleratorTable::~wxAcceleratorTable() | |
74 | { | |
75 | } | |
76 | ||
77 | // Load from .rc resource | |
78 | wxAcceleratorTable::wxAcceleratorTable(const wxString& resource) | |
79 | { | |
80 | m_refData = new wxAcceleratorRefData; | |
81 | ||
82 | HACCEL hAccel = | |
57c208c5 | 83 | #if defined(__WIN32__) && !defined(__TWIN32__) |
110f3205 | 84 | #ifdef UNICODE |
837e5743 | 85 | ::LoadAcceleratorsW(wxGetInstance(), (const wxChar *)resource); |
110f3205 JS |
86 | #else |
87 | ::LoadAcceleratorsA(wxGetInstance(), (const char *)resource); | |
88 | #endif | |
89 | #else | |
837e5743 | 90 | ::LoadAccelerators(wxGetInstance(), (const wxChar *)resource); |
110f3205 JS |
91 | #endif |
92 | M_ACCELDATA->m_hAccel = hAccel; | |
93 | M_ACCELDATA->m_ok = (hAccel != 0); | |
94 | } | |
95 | ||
96 | extern int wxCharCodeWXToMSW(int id, bool *isVirtual); | |
97 | ||
98 | // Create from an array | |
5ea105e0 | 99 | #if !defined(__WIN16__) && !defined(__TWIN32__) && !defined(__WXWINE__) |
252eb8fd | 100 | wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]) |
110f3205 | 101 | { |
1e6d9499 | 102 | // Not available in WIN16 |
110f3205 JS |
103 | m_refData = new wxAcceleratorRefData; |
104 | ||
105 | ACCEL* arr = new ACCEL[n]; | |
106 | int i; | |
107 | for (i = 0; i < n; i++) | |
108 | { | |
109 | BYTE fVirt = 0; | |
110 | if (entries[i].m_flags & wxACCEL_ALT) | |
111 | fVirt |= FALT; | |
112 | if (entries[i].m_flags & wxACCEL_SHIFT) | |
113 | fVirt |= FSHIFT; | |
114 | if (entries[i].m_flags & wxACCEL_CTRL) | |
115 | fVirt |= FCONTROL; | |
116 | ||
117 | bool isVirtual; | |
118 | WORD key = wxCharCodeWXToMSW(entries[i].m_keyCode, & isVirtual); | |
119 | fVirt |= FVIRTKEY; | |
120 | ||
121 | WORD cmd = entries[i].m_command; | |
122 | ||
123 | arr[i].fVirt = fVirt; | |
124 | arr[i].key = key; | |
125 | arr[i].cmd = cmd; | |
126 | } | |
127 | ||
128 | M_ACCELDATA->m_hAccel = ::CreateAcceleratorTable(arr, n); | |
129 | delete[] arr; | |
130 | ||
131 | M_ACCELDATA->m_ok = (M_ACCELDATA->m_hAccel != 0); | |
132 | } | |
c50f1fb9 | 133 | #else // Win16 |
8870c26e JS |
134 | wxAcceleratorTable::wxAcceleratorTable(int WXUNUSED(n), const wxAcceleratorEntry WXUNUSED(entries)[]) |
135 | { | |
1044a386 JS |
136 | // No, we simply gracefully degrade; we don't expect the |
137 | // developer to pepper their code with #ifdefs just for this. | |
138 | // wxFAIL_MSG("not implemented"); | |
8870c26e | 139 | } |
c50f1fb9 | 140 | #endif // Win32/16 |
110f3205 | 141 | |
c50f1fb9 | 142 | bool wxAcceleratorTable::Ok() const |
110f3205 JS |
143 | { |
144 | return (M_ACCELDATA && (M_ACCELDATA->m_ok)); | |
145 | } | |
146 | ||
147 | void wxAcceleratorTable::SetHACCEL(WXHACCEL hAccel) | |
148 | { | |
149 | if (!M_ACCELDATA) | |
150 | m_refData = new wxAcceleratorRefData; | |
151 | ||
152 | M_ACCELDATA->m_hAccel = (HACCEL) hAccel; | |
153 | } | |
154 | ||
155 | WXHACCEL wxAcceleratorTable::GetHACCEL() const | |
156 | { | |
157 | if (!M_ACCELDATA) | |
158 | return 0; | |
159 | return (WXHACCEL) M_ACCELDATA->m_hAccel; | |
160 | } | |
161 | ||
c50f1fb9 VZ |
162 | bool wxAcceleratorTable::Translate(wxWindow *window, WXMSG *wxmsg) const |
163 | { | |
164 | MSG *msg = (MSG *)wxmsg; | |
165 | ||
01dba85a JS |
166 | return Ok() && ::TranslateAccelerator(GetHwndOf(window), GetHaccel(), msg); |
167 | } | |
168 |