1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/utilsgui.cpp
3 // Purpose: Various utility functions only available in GUI
4 // Author: Vadim Zeitlin
6 // Created: 21.06.2003 (extracted from msw/utils.cpp)
8 // Copyright: (c) Julian Smart
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/cursor.h"
29 #include "wx/window.h"
33 #include "wx/dynlib.h"
35 #include "wx/msw/private.h" // includes <windows.h>
36 #include "wx/msw/registry.h"
37 #include <shellapi.h> // needed for SHELLEXECUTEINFO
40 // ============================================================================
42 // ============================================================================
44 // ---------------------------------------------------------------------------
45 // helper functions for showing a "busy" cursor
46 // ---------------------------------------------------------------------------
48 static HCURSOR gs_wxBusyCursor
= 0; // new, busy cursor
49 static HCURSOR gs_wxBusyCursorOld
= 0; // old cursor
50 static int gs_wxBusyCursorCount
= 0;
52 extern HCURSOR
wxGetCurrentBusyCursor()
54 return gs_wxBusyCursor
;
57 // Set the cursor to the busy cursor for all windows
58 void wxBeginBusyCursor(const wxCursor
*cursor
)
60 if ( gs_wxBusyCursorCount
++ == 0 )
62 gs_wxBusyCursor
= (HCURSOR
)cursor
->GetHCURSOR();
63 #ifndef __WXMICROWIN__
64 gs_wxBusyCursorOld
= ::SetCursor(gs_wxBusyCursor
);
67 //else: nothing to do, already set
70 // Restore cursor to normal
71 void wxEndBusyCursor()
73 wxCHECK_RET( gs_wxBusyCursorCount
> 0,
74 wxT("no matching wxBeginBusyCursor() for wxEndBusyCursor()") );
76 if ( --gs_wxBusyCursorCount
== 0 )
78 #ifndef __WXMICROWIN__
79 ::SetCursor(gs_wxBusyCursorOld
);
81 gs_wxBusyCursorOld
= 0;
85 // true if we're between the above two calls
88 return gs_wxBusyCursorCount
> 0;
91 // Check whether this window wants to process messages, e.g. Stop button
92 // in long calculations.
93 bool wxCheckForInterrupt(wxWindow
*wnd
)
95 wxCHECK( wnd
, false );
98 while ( ::PeekMessage(&msg
, GetHwndOf(wnd
), 0, 0, PM_REMOVE
) )
100 ::TranslateMessage(&msg
);
101 ::DispatchMessage(&msg
);
107 // MSW only: get user-defined resource from the .res file.
108 // Returns NULL or newly-allocated memory, so use delete[] to clean up.
110 #ifndef __WXMICROWIN__
111 wxChar
*wxLoadUserResource(const wxString
& resourceName
, const wxString
& resourceType
)
113 HRSRC hResource
= ::FindResource(wxGetInstance(),
114 resourceName
.wx_str(),
115 resourceType
.wx_str());
116 if ( hResource
== 0 )
119 HGLOBAL hData
= ::LoadResource(wxGetInstance(), hResource
);
123 wxChar
*theText
= (wxChar
*)::LockResource(hData
);
127 // Not all compilers put a zero at the end of the resource (e.g. BC++ doesn't).
128 // so we need to find the length of the resource.
129 int len
= ::SizeofResource(wxGetInstance(), hResource
) + 1;
130 wxChar
*s
= new wxChar
[len
];
131 wxStrlcpy(s
, theText
, len
);
135 UnlockResource(hData
);
139 // GlobalFree(hData);
143 #endif // __WXMICROWIN__
145 // ----------------------------------------------------------------------------
147 // ----------------------------------------------------------------------------
149 // See also the wxGetMousePosition in window.cpp
150 // Deprecated: use wxPoint wxGetMousePosition() instead
151 void wxGetMousePosition( int* x
, int* y
)
154 GetCursorPos( & pt
);
159 // Return true if we have a colour display
160 bool wxColourDisplay()
162 #ifdef __WXMICROWIN__
166 // this function is called from wxDC ctor so it is called a *lot* of times
167 // hence we optimize it a bit but doing the check only once
169 // this should be MT safe as only the GUI thread (holding the GUI mutex)
171 static int s_isColour
= -1;
173 if ( s_isColour
== -1 )
176 int noCols
= ::GetDeviceCaps(dc
, NUMCOLORS
);
178 s_isColour
= (noCols
== -1) || (noCols
> 2);
181 return s_isColour
!= 0;
185 // Returns depth of screen
189 return GetDeviceCaps(dc
, PLANES
) * GetDeviceCaps(dc
, BITSPIXEL
);
192 // Get size of display
193 void wxDisplaySize(int *width
, int *height
)
195 #ifdef __WXMICROWIN__
197 HWND hWnd
= GetDesktopWindow();
198 ::GetWindowRect(hWnd
, & rect
);
201 *width
= rect
.right
- rect
.left
;
203 *height
= rect
.bottom
- rect
.top
;
204 #else // !__WXMICROWIN__
208 *width
= ::GetDeviceCaps(dc
, HORZRES
);
210 *height
= ::GetDeviceCaps(dc
, VERTRES
);
211 #endif // __WXMICROWIN__/!__WXMICROWIN__
214 void wxDisplaySizeMM(int *width
, int *height
)
216 #ifdef __WXMICROWIN__
226 *width
= ::GetDeviceCaps(dc
, HORZSIZE
);
228 *height
= ::GetDeviceCaps(dc
, VERTSIZE
);
232 void wxClientDisplayRect(int *x
, int *y
, int *width
, int *height
)
234 #if defined(__WXMICROWIN__)
236 wxDisplaySize(width
, height
);
238 // Determine the desktop dimensions minus the taskbar and any other
239 // special decorations...
242 SystemParametersInfo(SPI_GETWORKAREA
, 0, &r
, 0);
245 if (width
) *width
= r
.right
- r
.left
;
246 if (height
) *height
= r
.bottom
- r
.top
;
250 // ---------------------------------------------------------------------------
251 // window information functions
252 // ---------------------------------------------------------------------------
254 wxString WXDLLEXPORT
wxGetWindowText(WXHWND hWnd
)
260 int len
= GetWindowTextLength((HWND
)hWnd
) + 1;
261 ::GetWindowText((HWND
)hWnd
, wxStringBuffer(str
, len
), len
);
267 wxString WXDLLEXPORT
wxGetWindowClass(WXHWND hWnd
)
272 #ifndef __WXMICROWIN__
275 int len
= 256; // some starting value
279 int count
= ::GetClassName((HWND
)hWnd
, wxStringBuffer(str
, len
), len
);
283 // the class name might have been truncated, retry with larger
293 #endif // !__WXMICROWIN__
298 int WXDLLEXPORT
wxGetWindowId(WXHWND hWnd
)
300 return ::GetWindowLong((HWND
)hWnd
, GWL_ID
);
303 // ----------------------------------------------------------------------------
305 // ----------------------------------------------------------------------------
307 extern void PixelToHIMETRIC(LONG
*x
, LONG
*y
)
311 int iWidthMM
= GetDeviceCaps(hdcRef
, HORZSIZE
),
312 iHeightMM
= GetDeviceCaps(hdcRef
, VERTSIZE
),
313 iWidthPels
= GetDeviceCaps(hdcRef
, HORZRES
),
314 iHeightPels
= GetDeviceCaps(hdcRef
, VERTRES
);
316 *x
*= (iWidthMM
* 100);
318 *y
*= (iHeightMM
* 100);
322 extern void HIMETRICToPixel(LONG
*x
, LONG
*y
)
326 int iWidthMM
= GetDeviceCaps(hdcRef
, HORZSIZE
),
327 iHeightMM
= GetDeviceCaps(hdcRef
, VERTSIZE
),
328 iWidthPels
= GetDeviceCaps(hdcRef
, HORZRES
),
329 iHeightPels
= GetDeviceCaps(hdcRef
, VERTRES
);
332 *x
/= (iWidthMM
* 100);
334 *y
/= (iHeightMM
* 100);
337 void wxDrawLine(HDC hdc
, int x1
, int y1
, int x2
, int y2
)
345 Polyline(hdc
, points
, 2);
347 MoveToEx(hdc
, x1
, y1
, NULL
); LineTo((HDC
) hdc
, x2
, y2
);
352 // ----------------------------------------------------------------------------
353 // Shell API wrappers
354 // ----------------------------------------------------------------------------
356 extern bool wxEnableFileNameAutoComplete(HWND hwnd
)
358 #if wxUSE_DYNLIB_CLASS
359 typedef HRESULT (WINAPI
*SHAutoComplete_t
)(HWND
, DWORD
);
361 static SHAutoComplete_t s_pfnSHAutoComplete
= NULL
;
362 static bool s_initialized
= false;
364 if ( !s_initialized
)
366 s_initialized
= true;
369 wxDynamicLibrary
dll(_T("shlwapi.dll"));
370 if ( dll
.IsLoaded() )
372 s_pfnSHAutoComplete
=
373 (SHAutoComplete_t
)dll
.GetSymbol(_T("SHAutoComplete"));
374 if ( s_pfnSHAutoComplete
)
376 // won't be unloaded until the process termination, no big deal
382 if ( !s_pfnSHAutoComplete
)
385 HRESULT hr
= s_pfnSHAutoComplete(hwnd
, 0x10 /* SHACF_FILESYS_ONLY */);
388 wxLogApiError(_T("SHAutoComplete"), hr
);
396 #endif // wxUSE_DYNLIB_CLASS/!wxUSE_DYNLIB_CLASS
399 // ----------------------------------------------------------------------------
400 // Launch document with default app
401 // ----------------------------------------------------------------------------
403 bool wxLaunchDefaultApplication(const wxString
& document
, int flags
)
407 WinStruct
<SHELLEXECUTEINFO
> sei
;
408 sei
.lpFile
= document
.wx_str();
409 sei
.lpVerb
= _T("open");
411 sei
.nShow
= SW_SHOWNORMAL
; // SW_SHOWDEFAULT not defined under CE (#10216)
413 sei
.nShow
= SW_SHOWDEFAULT
;
416 // avoid Windows message box in case of error for consistency with
417 // wxLaunchDefaultBrowser() even if don't show the error ourselves in this
419 sei
.fMask
= SEE_MASK_FLAG_NO_UI
;
421 if ( ::ShellExecuteEx(&sei
) )
427 // ----------------------------------------------------------------------------
428 // Launch default browser
429 // ----------------------------------------------------------------------------
431 bool wxDoLaunchDefaultBrowser(const wxString
& url
, const wxString
& scheme
, int flags
)
436 if ( flags
& wxBROWSER_NEW_WINDOW
)
438 // ShellExecuteEx() opens the URL in an existing window by default so
439 // we can't use it if we need a new window
440 wxRegKey
key(wxRegKey::HKCR
, scheme
+ _T("\\shell\\open"));
443 // try the default browser, it must be registered at least for http URLs
444 key
.SetName(wxRegKey::HKCR
, _T("http\\shell\\open"));
449 wxRegKey
keyDDE(key
, wxT("DDEExec"));
450 if ( keyDDE
.Exists() )
452 // we only know the syntax of WWW_OpenURL DDE request for IE,
453 // optimistically assume that all other browsers are compatible
455 static const wxChar
*TOPIC_OPEN_URL
= wxT("WWW_OpenURL");
457 wxRegKey
keyTopic(keyDDE
, wxT("topic"));
458 bool ok
= keyTopic
.Exists() &&
459 keyTopic
.QueryDefaultValue() == TOPIC_OPEN_URL
;
462 ddeCmd
= keyDDE
.QueryDefaultValue();
463 ok
= !ddeCmd
.empty();
468 // for WWW_OpenURL, the index of the window to open the URL
469 // in is -1 (meaning "current") by default, replace it with
470 // 0 which means "new" (see KB article 160957)
471 ok
= ddeCmd
.Replace(wxT("-1"), wxT("0"),
472 false /* only first occurrence */) == 1;
477 // and also replace the parameters: the topic should
478 // contain a placeholder for the URL
479 ok
= ddeCmd
.Replace(wxT("%1"), url
, false) == 1;
484 // try to send it the DDE request now but ignore the errors
487 const wxString ddeServer
= wxRegKey(keyDDE
, wxT("application"));
488 if ( wxExecuteDDE(ddeServer
, TOPIC_OPEN_URL
, ddeCmd
) )
491 // this is not necessarily an error: maybe browser is
492 // simply not running, but no matter, in any case we're
493 // going to launch it using ShellExecuteEx() below now and
494 // we shouldn't try to open a new window if we open a new
502 WinStruct
<SHELLEXECUTEINFO
> sei
;
503 sei
.lpFile
= url
.c_str();
504 sei
.lpVerb
= _T("open");
505 sei
.nShow
= SW_SHOWNORMAL
;
506 sei
.fMask
= SEE_MASK_FLAG_NO_UI
; // we give error message ourselves
508 if ( ::ShellExecuteEx(&sei
) )