]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: accel.cpp | |
3 | // Purpose: wxAcceleratorTable | |
d88de032 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
d88de032 | 6 | // Created: 10/13/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
d88de032 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
75f11ad7 DW |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
0e320a79 | 14 | |
75f11ad7 DW |
15 | #ifndef WX_PRECOMP |
16 | #include <stdio.h> | |
0e320a79 | 17 | #include "wx/setup.h" |
75f11ad7 | 18 | #include "wx/window.h" |
f6bcfd97 BP |
19 | #include "wx/app.h" |
20 | #include "wx/frame.h" | |
75f11ad7 DW |
21 | #endif |
22 | ||
23 | #include "wx/os2/accel.h" | |
24 | ||
25 | #include "wx/os2/private.h" | |
26 | ||
0e320a79 | 27 | |
0e320a79 | 28 | IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject) |
0e320a79 DW |
29 | |
30 | class WXDLLEXPORT wxAcceleratorRefData: public wxObjectRefData | |
31 | { | |
32 | friend class WXDLLEXPORT wxAcceleratorTable; | |
33 | public: | |
34 | wxAcceleratorRefData(); | |
35 | ~wxAcceleratorRefData(); | |
36 | ||
0e320a79 DW |
37 | inline HACCEL GetHACCEL() const { return m_hAccel; } |
38 | protected: | |
39 | HACCEL m_hAccel; | |
d88de032 | 40 | bool m_ok; |
0e320a79 DW |
41 | }; |
42 | ||
43 | #define M_ACCELDATA ((wxAcceleratorRefData *)m_refData) | |
44 | ||
45 | wxAcceleratorRefData::wxAcceleratorRefData() | |
46 | { | |
f6bcfd97 BP |
47 | m_ok = FALSE; |
48 | m_hAccel = 0; | |
49 | } // end of wxAcceleratorRefData::wxAcceleratorRefData | |
0e320a79 DW |
50 | |
51 | wxAcceleratorRefData::~wxAcceleratorRefData() | |
52 | { | |
f6bcfd97 BP |
53 | if (m_hAccel) |
54 | { | |
55 | WinDestroyAccelTable((HACCEL) m_hAccel); | |
56 | } | |
57 | m_hAccel = 0 ; | |
58 | } // end of wxAcceleratorRefData::~wxAcceleratorRefData | |
0e320a79 DW |
59 | |
60 | wxAcceleratorTable::wxAcceleratorTable() | |
61 | { | |
f6bcfd97 BP |
62 | m_refData = NULL; |
63 | } // end of wxAcceleratorTable::wxAcceleratorTable | |
0e320a79 DW |
64 | |
65 | wxAcceleratorTable::~wxAcceleratorTable() | |
66 | { | |
f6bcfd97 | 67 | } // end of wxAcceleratorTable::~wxAcceleratorTable |
0e320a79 DW |
68 | |
69 | // Load from .rc resource | |
f6bcfd97 BP |
70 | wxAcceleratorTable::wxAcceleratorTable( |
71 | const wxString& rResource | |
72 | ) | |
0e320a79 | 73 | { |
f6bcfd97 BP |
74 | HACCEL hAccel; |
75 | ULONG ulId; | |
76 | ||
0e320a79 DW |
77 | m_refData = new wxAcceleratorRefData; |
78 | ||
f6bcfd97 BP |
79 | ulId = atol((char*)rResource.c_str()); |
80 | hAccel = ::WinLoadAccelTable( vHabmain | |
81 | ,NULL // resources always in .exe | |
82 | ,(ULONG)ulId | |
83 | ); | |
84 | if (wxTheApp->GetTopWindow() != NULL) | |
85 | { | |
86 | // | |
87 | // If we have accelerators the top window is the frame | |
88 | // | |
89 | wxFrame* pFrame = (wxFrame*)wxTheApp->GetTopWindow(); | |
90 | ||
91 | ::WinSetAccelTable( vHabmain | |
f6bcfd97 | 92 | ,hAccel |
598d8cac | 93 | ,(HWND)pFrame->GetFrame() |
f6bcfd97 BP |
94 | ); |
95 | } | |
0e320a79 DW |
96 | M_ACCELDATA->m_hAccel = hAccel; |
97 | M_ACCELDATA->m_ok = (hAccel != 0); | |
0e320a79 DW |
98 | } |
99 | ||
f6bcfd97 BP |
100 | extern int wxCharCodeWXToOS2( |
101 | int nId | |
102 | , bool* pbIsVirtual | |
103 | ); | |
d88de032 | 104 | |
0e320a79 | 105 | // Create from an array |
f6bcfd97 BP |
106 | wxAcceleratorTable::wxAcceleratorTable( |
107 | int n | |
3c674514 | 108 | , const wxAcceleratorEntry vaEntries[] |
f6bcfd97 | 109 | ) |
0e320a79 | 110 | { |
f6bcfd97 BP |
111 | int nAccelLength = ((sizeof(ACCEL) * n) + sizeof(ACCELTABLE)); |
112 | PACCELTABLE pArr; | |
113 | int i; | |
0e320a79 | 114 | |
f6bcfd97 BP |
115 | m_refData = new wxAcceleratorRefData; |
116 | pArr = (PACCELTABLE) new BYTE[nAccelLength]; | |
117 | ||
118 | for (i = 0; i < n; i++) | |
119 | { | |
120 | USHORT uVirt = AF_CHAR; | |
121 | ||
122 | if (vaEntries[i].GetFlags() & wxACCEL_ALT) | |
3febf684 | 123 | { |
f6bcfd97 | 124 | uVirt |= AF_ALT; |
3febf684 DW |
125 | uVirt |= AF_VIRTUALKEY; |
126 | } | |
f6bcfd97 | 127 | if (vaEntries[i].GetFlags() & wxACCEL_SHIFT) |
3febf684 | 128 | { |
f6bcfd97 | 129 | uVirt |= AF_SHIFT; |
3febf684 DW |
130 | uVirt |= AF_VIRTUALKEY; |
131 | } | |
f6bcfd97 | 132 | if (vaEntries[i].GetFlags() & wxACCEL_CTRL) |
3febf684 | 133 | { |
f6bcfd97 | 134 | uVirt |= AF_CONTROL; |
3febf684 DW |
135 | uVirt |= AF_VIRTUALKEY; |
136 | } | |
f6bcfd97 | 137 | |
6670f564 WS |
138 | bool bIsVirtual; |
139 | USHORT uKey = (USHORT)wxCharCodeWXToOS2( vaEntries[i].GetKeyCode(), | |
140 | &bIsVirtual); | |
f6bcfd97 BP |
141 | if (bIsVirtual) |
142 | uVirt = AF_CHAR | AF_VIRTUALKEY; | |
143 | ||
6670f564 | 144 | USHORT uCmd = (USHORT)vaEntries[i].GetCommand(); |
f6bcfd97 BP |
145 | |
146 | pArr->aaccel[i].fs = uVirt; | |
147 | pArr->aaccel[i].key = uKey; | |
148 | pArr->aaccel[i].cmd = uCmd; | |
149 | } | |
6670f564 | 150 | pArr->codepage = (USHORT)::WinQueryCp(wxTheApp->m_hMq); |
f6bcfd97 BP |
151 | pArr->cAccel = (USHORT)n; |
152 | M_ACCELDATA->m_hAccel = ::WinCreateAccelTable( vHabmain | |
153 | ,pArr | |
154 | ); | |
155 | if (wxTheApp->GetTopWindow() != NULL) | |
156 | { | |
157 | // | |
158 | // If we have accelerators the top window is the frame | |
159 | // | |
6670f564 | 160 | wxFrame* pFrame = (wxFrame*)wxTheApp->GetTopWindow(); |
f6bcfd97 BP |
161 | |
162 | ::WinSetAccelTable( vHabmain | |
f6bcfd97 | 163 | ,M_ACCELDATA->m_hAccel |
598d8cac | 164 | ,(HWND)pFrame->GetFrame() |
f6bcfd97 BP |
165 | ); |
166 | } | |
167 | ||
168 | delete[] pArr; | |
169 | M_ACCELDATA->m_ok = (M_ACCELDATA->m_hAccel != 0); | |
170 | } // end of wxAcceleratorTable::wxAcceleratorTable | |
0e320a79 DW |
171 | |
172 | bool wxAcceleratorTable::Ok() const | |
173 | { | |
f6bcfd97 BP |
174 | return(M_ACCELDATA && (M_ACCELDATA->m_ok)); |
175 | } // end of wxAcceleratorTable::Ok | |
0e320a79 | 176 | |
75f11ad7 DW |
177 | void wxAcceleratorTable::SetHACCEL(WXHACCEL hAccel) |
178 | { | |
179 | if (!M_ACCELDATA) | |
180 | m_refData = new wxAcceleratorRefData; | |
181 | ||
182 | M_ACCELDATA->m_hAccel = (HACCEL) hAccel; | |
183 | } | |
184 | ||
185 | WXHACCEL wxAcceleratorTable::GetHACCEL() const | |
186 | { | |
187 | if (!M_ACCELDATA) | |
188 | return 0; | |
189 | return (WXHACCEL) M_ACCELDATA->m_hAccel; | |
190 | } | |
191 | ||
f6bcfd97 BP |
192 | bool wxAcceleratorTable::Translate( |
193 | WXHWND hWnd | |
194 | , WXMSG* pWxmsg | |
195 | ) const | |
75f11ad7 | 196 | { |
f6bcfd97 | 197 | PQMSG pMsg = (PQMSG)pWxmsg; |
e15bbde0 DW |
198 | BOOL rc = FALSE; |
199 | ||
200 | rc = ::WinTranslateAccel( vHabmain | |
201 | ,(HWND)hWnd | |
202 | ,GetHaccel() | |
203 | ,pMsg | |
204 | ); | |
e15bbde0 | 205 | return (Ok() && rc); |
f6bcfd97 | 206 | } // end of wxAcceleratorTable::Translate |
75f11ad7 | 207 | |
3a7c1253 SN |
208 | // --------------------------------------------------------------------------- |
209 | // function for translating labels | |
210 | // --------------------------------------------------------------------------- | |
211 | ||
6670f564 | 212 | wxString wxPMTextToLabel( const wxString& rsTitle ) |
3a7c1253 | 213 | { |
6670f564 WS |
214 | wxString sTitle; |
215 | const wxChar* zPc; | |
3a7c1253 | 216 | |
6670f564 | 217 | if (rsTitle.empty()) |
3a7c1253 SN |
218 | return(sTitle); |
219 | ||
220 | for (zPc = rsTitle.c_str(); *zPc != wxT('\0'); zPc++) | |
221 | { | |
222 | if (*zPc == wxT('&')) | |
223 | { | |
224 | if (*(zPc + 1) == wxT('&')) | |
225 | { | |
226 | zPc++; | |
227 | sTitle << wxT('&'); | |
228 | } | |
229 | else | |
230 | sTitle << wxT('~'); | |
231 | } | |
232 | else | |
233 | { | |
234 | if ( *zPc == wxT('~')) | |
235 | { | |
236 | // | |
237 | // Tildes must be doubled to prevent them from being | |
238 | // interpreted as accelerator character prefix by PM ??? | |
239 | // | |
240 | sTitle << *zPc; | |
241 | } | |
242 | sTitle << *zPc; | |
243 | } | |
244 | } | |
245 | return(sTitle); | |
246 | } // end of wxPMTextToLabel |