]>
Commit | Line | Data |
---|---|---|
e2478fde | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: src/msw/utilsgui.cpp |
5146904d | 3 | // Purpose: Various utility functions only available in wxMSW GUI |
e2478fde VZ |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 21.06.2003 (extracted from msw/utils.cpp) | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
526954c5 | 9 | // Licence: wxWindows licence |
e2478fde VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // for compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/cursor.h" | |
42d54220 | 29 | #include "wx/window.h" |
e2478fde VZ |
30 | #include "wx/utils.h" |
31 | #endif //WX_PRECOMP | |
32 | ||
5f6475c1 VZ |
33 | #include "wx/dynlib.h" |
34 | ||
e2478fde VZ |
35 | #include "wx/msw/private.h" // includes <windows.h> |
36 | ||
37 | // ============================================================================ | |
38 | // implementation | |
39 | // ============================================================================ | |
40 | ||
598fe99d VZ |
41 | // Emit a beeeeeep |
42 | void wxBell() | |
43 | { | |
44 | ::MessageBeep((UINT)-1); // default sound | |
45 | } | |
46 | ||
e2478fde VZ |
47 | // --------------------------------------------------------------------------- |
48 | // helper functions for showing a "busy" cursor | |
49 | // --------------------------------------------------------------------------- | |
50 | ||
51 | static HCURSOR gs_wxBusyCursor = 0; // new, busy cursor | |
52 | static HCURSOR gs_wxBusyCursorOld = 0; // old cursor | |
53 | static int gs_wxBusyCursorCount = 0; | |
54 | ||
55 | extern HCURSOR wxGetCurrentBusyCursor() | |
56 | { | |
57 | return gs_wxBusyCursor; | |
58 | } | |
59 | ||
60 | // Set the cursor to the busy cursor for all windows | |
f516d986 | 61 | void wxBeginBusyCursor(const wxCursor *cursor) |
e2478fde VZ |
62 | { |
63 | if ( gs_wxBusyCursorCount++ == 0 ) | |
64 | { | |
65 | gs_wxBusyCursor = (HCURSOR)cursor->GetHCURSOR(); | |
66 | #ifndef __WXMICROWIN__ | |
67 | gs_wxBusyCursorOld = ::SetCursor(gs_wxBusyCursor); | |
68 | #endif | |
69 | } | |
70 | //else: nothing to do, already set | |
71 | } | |
72 | ||
73 | // Restore cursor to normal | |
74 | void wxEndBusyCursor() | |
75 | { | |
76 | wxCHECK_RET( gs_wxBusyCursorCount > 0, | |
77 | wxT("no matching wxBeginBusyCursor() for wxEndBusyCursor()") ); | |
78 | ||
79 | if ( --gs_wxBusyCursorCount == 0 ) | |
80 | { | |
81 | #ifndef __WXMICROWIN__ | |
82 | ::SetCursor(gs_wxBusyCursorOld); | |
83 | #endif | |
84 | gs_wxBusyCursorOld = 0; | |
85 | } | |
86 | } | |
87 | ||
27d2dbbc | 88 | // true if we're between the above two calls |
e2478fde VZ |
89 | bool wxIsBusy() |
90 | { | |
91 | return gs_wxBusyCursorCount > 0; | |
92 | } | |
93 | ||
94 | // Check whether this window wants to process messages, e.g. Stop button | |
95 | // in long calculations. | |
96 | bool wxCheckForInterrupt(wxWindow *wnd) | |
97 | { | |
27d2dbbc | 98 | wxCHECK( wnd, false ); |
e2478fde VZ |
99 | |
100 | MSG msg; | |
101 | while ( ::PeekMessage(&msg, GetHwndOf(wnd), 0, 0, PM_REMOVE) ) | |
102 | { | |
103 | ::TranslateMessage(&msg); | |
104 | ::DispatchMessage(&msg); | |
105 | } | |
106 | ||
27d2dbbc | 107 | return true; |
e2478fde VZ |
108 | } |
109 | ||
e2478fde VZ |
110 | // ---------------------------------------------------------------------------- |
111 | // get display info | |
112 | // ---------------------------------------------------------------------------- | |
113 | ||
114 | // See also the wxGetMousePosition in window.cpp | |
115 | // Deprecated: use wxPoint wxGetMousePosition() instead | |
116 | void wxGetMousePosition( int* x, int* y ) | |
117 | { | |
118 | POINT pt; | |
d6c37f5b | 119 | wxGetCursorPosMSW( & pt ); |
e2478fde VZ |
120 | if ( x ) *x = pt.x; |
121 | if ( y ) *y = pt.y; | |
259c43f6 | 122 | } |
e2478fde | 123 | |
27d2dbbc | 124 | // Return true if we have a colour display |
e2478fde VZ |
125 | bool wxColourDisplay() |
126 | { | |
127 | #ifdef __WXMICROWIN__ | |
128 | // MICROWIN_TODO | |
27d2dbbc | 129 | return true; |
e2478fde VZ |
130 | #else |
131 | // this function is called from wxDC ctor so it is called a *lot* of times | |
3103e8a9 | 132 | // hence we optimize it a bit but doing the check only once |
e2478fde VZ |
133 | // |
134 | // this should be MT safe as only the GUI thread (holding the GUI mutex) | |
135 | // can call us | |
136 | static int s_isColour = -1; | |
137 | ||
138 | if ( s_isColour == -1 ) | |
139 | { | |
140 | ScreenHDC dc; | |
141 | int noCols = ::GetDeviceCaps(dc, NUMCOLORS); | |
142 | ||
143 | s_isColour = (noCols == -1) || (noCols > 2); | |
144 | } | |
145 | ||
146 | return s_isColour != 0; | |
147 | #endif | |
148 | } | |
149 | ||
150 | // Returns depth of screen | |
151 | int wxDisplayDepth() | |
152 | { | |
153 | ScreenHDC dc; | |
154 | return GetDeviceCaps(dc, PLANES) * GetDeviceCaps(dc, BITSPIXEL); | |
155 | } | |
156 | ||
157 | // Get size of display | |
158 | void wxDisplaySize(int *width, int *height) | |
159 | { | |
160 | #ifdef __WXMICROWIN__ | |
161 | RECT rect; | |
162 | HWND hWnd = GetDesktopWindow(); | |
163 | ::GetWindowRect(hWnd, & rect); | |
164 | ||
165 | if ( width ) | |
166 | *width = rect.right - rect.left; | |
167 | if ( height ) | |
168 | *height = rect.bottom - rect.top; | |
169 | #else // !__WXMICROWIN__ | |
170 | ScreenHDC dc; | |
171 | ||
172 | if ( width ) | |
173 | *width = ::GetDeviceCaps(dc, HORZRES); | |
174 | if ( height ) | |
175 | *height = ::GetDeviceCaps(dc, VERTRES); | |
176 | #endif // __WXMICROWIN__/!__WXMICROWIN__ | |
177 | } | |
178 | ||
179 | void wxDisplaySizeMM(int *width, int *height) | |
180 | { | |
181 | #ifdef __WXMICROWIN__ | |
182 | // MICROWIN_TODO | |
183 | if ( width ) | |
184 | *width = 0; | |
185 | if ( height ) | |
186 | *height = 0; | |
187 | #else | |
188 | ScreenHDC dc; | |
189 | ||
190 | if ( width ) | |
191 | *width = ::GetDeviceCaps(dc, HORZSIZE); | |
192 | if ( height ) | |
193 | *height = ::GetDeviceCaps(dc, VERTSIZE); | |
194 | #endif | |
195 | } | |
196 | ||
e2478fde VZ |
197 | // --------------------------------------------------------------------------- |
198 | // window information functions | |
199 | // --------------------------------------------------------------------------- | |
200 | ||
201 | wxString WXDLLEXPORT wxGetWindowText(WXHWND hWnd) | |
202 | { | |
203 | wxString str; | |
204 | ||
205 | if ( hWnd ) | |
206 | { | |
207 | int len = GetWindowTextLength((HWND)hWnd) + 1; | |
de564874 | 208 | ::GetWindowText((HWND)hWnd, wxStringBuffer(str, len), len); |
e2478fde VZ |
209 | } |
210 | ||
211 | return str; | |
212 | } | |
213 | ||
214 | wxString WXDLLEXPORT wxGetWindowClass(WXHWND hWnd) | |
215 | { | |
216 | wxString str; | |
217 | ||
218 | // MICROWIN_TODO | |
219 | #ifndef __WXMICROWIN__ | |
220 | if ( hWnd ) | |
221 | { | |
222 | int len = 256; // some starting value | |
223 | ||
224 | for ( ;; ) | |
225 | { | |
de564874 | 226 | int count = ::GetClassName((HWND)hWnd, wxStringBuffer(str, len), len); |
e2478fde | 227 | |
e2478fde VZ |
228 | if ( count == len ) |
229 | { | |
230 | // the class name might have been truncated, retry with larger | |
231 | // buffer | |
232 | len *= 2; | |
233 | } | |
234 | else | |
235 | { | |
236 | break; | |
237 | } | |
238 | } | |
239 | } | |
240 | #endif // !__WXMICROWIN__ | |
241 | ||
242 | return str; | |
243 | } | |
244 | ||
6756a5f8 | 245 | int WXDLLEXPORT wxGetWindowId(WXHWND hWnd) |
e2478fde | 246 | { |
6756a5f8 | 247 | return ::GetWindowLong((HWND)hWnd, GWL_ID); |
e2478fde VZ |
248 | } |
249 | ||
250 | // ---------------------------------------------------------------------------- | |
251 | // Metafile helpers | |
252 | // ---------------------------------------------------------------------------- | |
253 | ||
cc344571 | 254 | void PixelToHIMETRIC(LONG *x, LONG *y, HDC hdcRef) |
e2478fde | 255 | { |
e2478fde VZ |
256 | int iWidthMM = GetDeviceCaps(hdcRef, HORZSIZE), |
257 | iHeightMM = GetDeviceCaps(hdcRef, VERTSIZE), | |
258 | iWidthPels = GetDeviceCaps(hdcRef, HORZRES), | |
259 | iHeightPels = GetDeviceCaps(hdcRef, VERTRES); | |
260 | ||
261 | *x *= (iWidthMM * 100); | |
262 | *x /= iWidthPels; | |
263 | *y *= (iHeightMM * 100); | |
264 | *y /= iHeightPels; | |
265 | } | |
266 | ||
cc344571 | 267 | void HIMETRICToPixel(LONG *x, LONG *y, HDC hdcRef) |
e2478fde | 268 | { |
e2478fde VZ |
269 | int iWidthMM = GetDeviceCaps(hdcRef, HORZSIZE), |
270 | iHeightMM = GetDeviceCaps(hdcRef, VERTSIZE), | |
271 | iWidthPels = GetDeviceCaps(hdcRef, HORZRES), | |
272 | iHeightPels = GetDeviceCaps(hdcRef, VERTRES); | |
273 | ||
274 | *x *= iWidthPels; | |
275 | *x /= (iWidthMM * 100); | |
276 | *y *= iHeightPels; | |
277 | *y /= (iHeightMM * 100); | |
278 | } | |
279 | ||
cc344571 VS |
280 | void HIMETRICToPixel(LONG *x, LONG *y) |
281 | { | |
282 | HIMETRICToPixel(x, y, ScreenHDC()); | |
283 | } | |
284 | ||
285 | void PixelToHIMETRIC(LONG *x, LONG *y) | |
286 | { | |
287 | PixelToHIMETRIC(x, y, ScreenHDC()); | |
288 | } | |
289 | ||
4676948b JS |
290 | void wxDrawLine(HDC hdc, int x1, int y1, int x2, int y2) |
291 | { | |
292 | #ifdef __WXWINCE__ | |
293 | POINT points[2]; | |
294 | points[0].x = x1; | |
295 | points[0].y = y1; | |
296 | points[1].x = x2; | |
297 | points[1].y = y2; | |
298 | Polyline(hdc, points, 2); | |
299 | #else | |
300 | MoveToEx(hdc, x1, y1, NULL); LineTo((HDC) hdc, x2, y2); | |
301 | #endif | |
302 | } | |
303 | ||
e2478fde | 304 | |
5f6475c1 VZ |
305 | // ---------------------------------------------------------------------------- |
306 | // Shell API wrappers | |
307 | // ---------------------------------------------------------------------------- | |
308 | ||
309 | extern bool wxEnableFileNameAutoComplete(HWND hwnd) | |
310 | { | |
40e0cf48 | 311 | #if wxUSE_DYNLIB_CLASS |
5f6475c1 VZ |
312 | typedef HRESULT (WINAPI *SHAutoComplete_t)(HWND, DWORD); |
313 | ||
314 | static SHAutoComplete_t s_pfnSHAutoComplete = NULL; | |
315 | static bool s_initialized = false; | |
316 | ||
317 | if ( !s_initialized ) | |
318 | { | |
319 | s_initialized = true; | |
320 | ||
321 | wxLogNull nolog; | |
9a83f860 | 322 | wxDynamicLibrary dll(wxT("shlwapi.dll")); |
5f6475c1 VZ |
323 | if ( dll.IsLoaded() ) |
324 | { | |
325 | s_pfnSHAutoComplete = | |
9a83f860 | 326 | (SHAutoComplete_t)dll.GetSymbol(wxT("SHAutoComplete")); |
5f6475c1 VZ |
327 | if ( s_pfnSHAutoComplete ) |
328 | { | |
329 | // won't be unloaded until the process termination, no big deal | |
330 | dll.Detach(); | |
331 | } | |
332 | } | |
333 | } | |
334 | ||
335 | if ( !s_pfnSHAutoComplete ) | |
336 | return false; | |
337 | ||
338 | HRESULT hr = s_pfnSHAutoComplete(hwnd, 0x10 /* SHACF_FILESYS_ONLY */); | |
339 | if ( FAILED(hr) ) | |
340 | { | |
9a83f860 | 341 | wxLogApiError(wxT("SHAutoComplete"), hr); |
5f6475c1 VZ |
342 | return false; |
343 | } | |
344 | ||
345 | return true; | |
40e0cf48 VZ |
346 | #else |
347 | wxUnusedVar(hwnd); | |
348 | return false; | |
349 | #endif // wxUSE_DYNLIB_CLASS/!wxUSE_DYNLIB_CLASS | |
5f6475c1 | 350 | } |