1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: MSW Implementation of wxDisplay class
4 // Author: Royce Mitchell III
5 // Modified by: VZ (resolutions enumeration/change support, DirectDraw, ...)
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "display.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
35 #include "wx/dynarray.h"
39 #include "wx/dynload.h"
41 #include "wx/display.h"
43 // the following define is necessary to access the multi-monitor function
44 // declarations in a manner safe to use w/ Windows 95
45 #define COMPILE_MULTIMON_STUBS
47 // if you don't have multimon.h you can download the file from:
49 // http://www.microsoft.com/msj/0697/monitor/monitortextfigs.htm#fig4
53 // as (m)any standard header(s), this one doesn't compile without warnings
55 #pragma warning(disable:4706)
61 #pragma warning(default:4706)
66 // we don't want to link with ddraw.lib which contains the real
67 // IID_IDirectDraw2 definition
68 const GUID wxIID_IDirectDraw2
=
69 { 0xB3A6F3E0, 0x2B43, 0x11CF, { 0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 } };
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
76 #define WINFUNC(x) _T(#x) L"W"
78 #define WINFUNC(x) #x "A"
81 // ----------------------------------------------------------------------------
82 // typedefs for dynamically loaded Windows functions
83 // ----------------------------------------------------------------------------
85 typedef LONG (WINAPI
*ChangeDisplaySettingsEx_t
)(LPCTSTR lpszDeviceName
,
91 typedef BOOL (PASCAL
*DDEnumExCallback_t
)(GUID
*pGuid
,
92 LPTSTR driverDescription
,
97 typedef HRESULT (WINAPI
*DirectDrawEnumerateEx_t
)(DDEnumExCallback_t lpCallback
,
101 typedef HRESULT (WINAPI
*DirectDrawCreate_t
)(GUID
*lpGUID
,
102 LPDIRECTDRAW
*lplpDD
,
103 IUnknown
*pUnkOuter
);
105 // ----------------------------------------------------------------------------
107 // ----------------------------------------------------------------------------
112 // handle of this monitor used by MonitorXXX() functions, never NULL
115 // IDirectDraw object used to control this display, may be NULL
116 IDirectDraw2
*m_pDD2
;
118 // DirectDraw GUID for this display, only valid when using DirectDraw
121 // the entire area of this monitor in virtual screen coordinates
124 // the display device name for this monitor, empty initially and retrieved
125 // on demand by DoGetName()
128 wxDisplayInfo() { m_hmon
= NULL
; m_pDD2
= NULL
; }
129 ~wxDisplayInfo() { if ( m_pDD2
) m_pDD2
->Release(); }
132 WX_DECLARE_OBJARRAY(wxDisplayInfo
, wxDisplayInfoArray
);
133 #include "wx/arrimpl.cpp"
134 WX_DEFINE_OBJARRAY(wxDisplayInfoArray
);
136 // this module is used to cleanup gs_displays array
137 class wxDisplayModule
: public wxModule
140 virtual bool OnInit() { return true; }
141 virtual void OnExit();
143 DECLARE_DYNAMIC_CLASS(wxDisplayModule
)
146 IMPLEMENT_DYNAMIC_CLASS(wxDisplayModule
, wxModule
)
148 // ----------------------------------------------------------------------------
150 // ----------------------------------------------------------------------------
152 // do we use DirectX?
153 static bool gs_useDirectX
= false;
155 // dynamically resolved DirectDrawCreate()
156 static DirectDrawCreate_t gs_DirectDrawCreate
= NULL
;
158 // this is not really MT-unsafe as wxDisplay is only going to be used from the
159 // main thread, i.e. we consider that it's a GUI class and so don't protect it
160 static wxDisplayInfoArray
*gs_displays
= NULL
;
162 // ===========================================================================
164 // ===========================================================================
166 // ----------------------------------------------------------------------------
167 // callbacks for monitor/modes enumeration stuff
168 // ----------------------------------------------------------------------------
170 static BOOL CALLBACK
wxmswMonitorEnumProc (
171 HMONITOR hMonitor
, // handle to display monitor
172 HDC
WXUNUSED(hdcMonitor
), // handle to monitor-appropriate device context
173 LPRECT lprcMonitor
, // pointer to monitor intersection rectangle
174 LPARAM
WXUNUSED(dwData
) // data passed from EnumDisplayMonitors (unused)
177 wxDisplayInfo
*info
= new wxDisplayInfo();
179 // we need hMonitor to be able to map display id to it which is needed for
180 // MonitorXXX() functions, in particular MonitorFromPoint()
181 info
->m_hmon
= hMonitor
;
183 // we also store the display geometry
184 info
->m_rect
.SetX ( lprcMonitor
->left
);
185 info
->m_rect
.SetY ( lprcMonitor
->top
);
186 info
->m_rect
.SetWidth ( lprcMonitor
->right
- lprcMonitor
->left
);
187 info
->m_rect
.SetHeight ( lprcMonitor
->bottom
- lprcMonitor
->top
);
189 // now add this monitor to the array
190 gs_displays
->Add(info
);
192 // continue the enumeration
197 wxDDEnumExCallback(GUID
*pGuid
,
198 LPTSTR
WXUNUSED(driverDescription
),
200 LPVOID
WXUNUSED(lpContext
),
205 wxDisplayInfo
*info
= new wxDisplayInfo();
208 info
->m_guid
= *pGuid
;
209 info
->m_devName
= driverName
;
211 gs_displays
->Add(info
);
213 //else: we're called for the primary monitor, skip it
215 // continue the enumeration
219 HRESULT WINAPI
wxDDEnumModesCallback(LPDDSURFACEDESC lpDDSurfaceDesc
,
222 // we need at least the mode size
223 static const DWORD FLAGS_REQUIRED
= DDSD_HEIGHT
| DDSD_WIDTH
;
224 if ( (lpDDSurfaceDesc
->dwFlags
& FLAGS_REQUIRED
) == FLAGS_REQUIRED
)
226 wxArrayVideoModes
* const modes
= (wxArrayVideoModes
*)lpContext
;
228 modes
->Add(wxVideoMode(lpDDSurfaceDesc
->dwWidth
,
229 lpDDSurfaceDesc
->dwHeight
,
230 lpDDSurfaceDesc
->ddpfPixelFormat
.dwRGBBitCount
,
231 lpDDSurfaceDesc
->dwRefreshRate
));
234 // continue the enumeration
238 // ----------------------------------------------------------------------------
240 // ----------------------------------------------------------------------------
242 // initialize gs_displays using DirectX functions
243 static bool DoInitDirectX()
245 // suppress the errors if ddraw.dll is not found
246 wxLog::EnableLogging(false);
248 wxDynamicLibrary
dllDX(_T("ddraw.dll"));
250 wxLog::EnableLogging(true);
252 if ( !dllDX
.IsLoaded() )
255 DirectDrawEnumerateEx_t pDDEnumEx
= (DirectDrawEnumerateEx_t
)
256 dllDX
.GetSymbol(WINFUNC(DirectDrawEnumerateEx
));
260 // we'll also need DirectDrawCreate() later, resolve it right now
261 gs_DirectDrawCreate
= (DirectDrawCreate_t
)
262 dllDX
.GetSymbol(_T("DirectDrawCreate"));
263 if ( !gs_DirectDrawCreate
)
266 if ( (*pDDEnumEx
)(wxDDEnumExCallback
,
268 DDENUM_ATTACHEDSECONDARYDEVICES
) != DD_OK
)
273 // ok, it seems like we're going to use DirectDraw and so we're going to
274 // need ddraw.dll all the time, don't unload it
280 // initialize gs_displays using the standard Windows functions
281 static void DoInitStdWindows()
283 // enumerate all displays
284 if ( !::EnumDisplayMonitors(NULL
, NULL
, wxmswMonitorEnumProc
, 0) )
286 wxLogLastError(wxT("EnumDisplayMonitors"));
288 // TODO: still create at least one (valid) entry in gs_displays for the
293 // this function must be called before accessing gs_displays array as it
294 // creates and initializes it
295 static void InitDisplays()
300 gs_displays
= new wxDisplayInfoArray();
302 if ( !gs_useDirectX
|| !DoInitDirectX() )
304 // either we were told not to try to use DirectX or fall back to std
305 // functions if DirectX method failed
306 gs_useDirectX
= false;
312 // convert a DEVMODE to our wxVideoMode
313 wxVideoMode
ConvertToVideoMode(const DEVMODE
& dm
)
315 // note that dmDisplayFrequency may be 0 or 1 meaning "standard one" and
316 // although 0 is ok for us we don't want to return modes with 1hz refresh
317 return wxVideoMode(dm
.dmPelsWidth
,
320 dm
.dmDisplayFrequency
> 1 ? dm
.dmDisplayFrequency
: 0);
323 // emulation of ChangeDisplaySettingsEx() for Win95
324 LONG WINAPI
ChangeDisplaySettingsExForWin95(LPCTSTR
WXUNUSED(lpszDeviceName
),
328 LPVOID
WXUNUSED(lParam
))
330 return ::ChangeDisplaySettings(lpDevMode
, dwFlags
);
333 // ----------------------------------------------------------------------------
335 // ----------------------------------------------------------------------------
337 void wxDisplayModule::OnExit()
342 // ---------------------------------------------------------------------------
344 // ---------------------------------------------------------------------------
347 void wxDisplay::UseDirectX(bool useDX
)
349 wxCHECK_RET( !gs_displays
, _T("it is too late to call UseDirectX") );
351 gs_useDirectX
= useDX
;
354 // helper of GetFromPoint() and GetFromWindow()
355 static int DisplayFromHMONITOR(HMONITOR hmon
)
359 const size_t count
= wxDisplay::GetCount();
361 for ( size_t n
= 0; n
< count
; n
++ )
363 if ( hmon
== (*gs_displays
)[n
].m_hmon
)
372 size_t wxDisplayBase::GetCount()
376 // I'm not sure if they really always return the same thing and if this is
377 // not true I'd like to know in which situation does it happen
378 wxASSERT_MSG( gs_displays
->GetCount() == (size_t)::GetSystemMetrics(SM_CMONITORS
),
379 _T("So how many displays does this system have?") );
381 return gs_displays
->GetCount();
385 int wxDisplayBase::GetFromPoint ( const wxPoint
& pt
)
391 return DisplayFromHMONITOR(::MonitorFromPoint(pt2
, MONITOR_DEFAULTTONULL
));
395 int wxDisplayBase::GetFromWindow(wxWindow
*window
)
397 return DisplayFromHMONITOR
399 ::MonitorFromWindow(GetHwndOf(window
), MONITOR_DEFAULTTONULL
)
403 // ----------------------------------------------------------------------------
404 // wxDisplay ctor/dtor
405 // ----------------------------------------------------------------------------
407 wxDisplay::wxDisplay ( size_t n
)
408 : wxDisplayBase ( n
)
410 // if we do this in ctor we won't have to call it from all the member
416 wxDisplayInfo
& dpyInfo
= (*gs_displays
)[n
];
418 LPDIRECTDRAW2
& pDD2
= dpyInfo
.m_pDD2
;
421 if ( !gs_DirectDrawCreate
)
428 HRESULT hr
= (*gs_DirectDrawCreate
)(&dpyInfo
.m_guid
, &pDD
, NULL
);
430 if ( FAILED(hr
) || !pDD
)
433 wxLogApiError(_T("DirectDrawCreate"), hr
);
435 else // got IDirectDraw, we want IDirectDraw2
437 hr
= pDD
->QueryInterface(wxIID_IDirectDraw2
, (void **)&pDD2
);
438 if ( FAILED(hr
) || !pDD2
)
440 wxLogApiError(_T("IDirectDraw::QueryInterface(IDD2)"), hr
);
446 //else: DirectDraw object corresponding to our display already exists
448 // increment its ref count to account for Release() in dtor
450 // NB: pDD2 will be only really Release()d when gs_displays is
451 // destroyed which is ok as we don't want to recreate DD objects
457 wxDisplay::~wxDisplay()
459 wxDisplayInfo
& dpyInfo
= (*gs_displays
)[m_index
];
461 LPDIRECTDRAW2
& pDD2
= dpyInfo
.m_pDD2
;
468 // ----------------------------------------------------------------------------
469 // wxDisplay simple accessors
470 // ----------------------------------------------------------------------------
472 bool wxDisplay::IsOk() const
474 return m_index
< GetCount() &&
475 (!gs_useDirectX
|| (*gs_displays
)[m_index
].m_pDD2
);
478 wxRect
wxDisplay::GetGeometry() const
480 wxDisplayInfo
& dpyInfo
= (*gs_displays
)[m_index
];
481 wxRect
& rect
= dpyInfo
.m_rect
;
485 wxZeroMemory(monInfo
);
486 monInfo
.cbSize
= sizeof(monInfo
);
488 if ( !::GetMonitorInfo(dpyInfo
.m_hmon
, &monInfo
) )
490 wxLogLastError(_T("GetMonitorInfo"));
494 wxCopyRECTToRect(monInfo
.rcMonitor
, rect
);
501 wxString
wxDisplay::GetName() const
503 wxDisplayInfo
& dpyInfo
= (*gs_displays
)[m_index
];
504 if ( dpyInfo
.m_devName
.empty() )
506 MONITORINFOEX monInfo
;
507 wxZeroMemory(monInfo
);
508 monInfo
.cbSize
= sizeof(monInfo
);
510 // NB: Cast from MONITORINFOEX* to MONITORINFO* is done because
511 // Mingw headers - unlike the ones from Microsoft's Platform SDK -
512 // don't derive the former from the latter in C++ mode and so
513 // the pointer's type is not converted implicitly.
514 if ( !::GetMonitorInfo(dpyInfo
.m_hmon
, (LPMONITORINFO
)&monInfo
) )
516 wxLogLastError(_T("GetMonitorInfo"));
520 dpyInfo
.m_devName
= monInfo
.szDevice
;
524 return dpyInfo
.m_devName
;
527 wxString
wxDisplay::GetNameForEnumSettings() const
530 const bool isWin95
= wxGetOsVersion(&major
, &minor
) == wxWIN95
&&
531 major
== 4 && minor
== 0;
533 // the first parameter of EnumDisplaySettings() must be NULL under Win95
534 // according to MSDN but GetMonitorInfo() stub in multimon.h still returns
535 // something even in this case, so we have to correct this manually
543 // ----------------------------------------------------------------------------
544 // video modes enumeration
545 // ----------------------------------------------------------------------------
548 wxDisplay::DoGetModesDirectX(const wxVideoMode
& WXUNUSED(modeMatch
)) const
550 wxArrayVideoModes modes
;
552 IDirectDraw2
*pDD
= (*gs_displays
)[m_index
].m_pDD2
;
556 HRESULT hr
= pDD
->EnumDisplayModes
559 NULL
, // all modes (TODO: use modeMatch!)
560 &modes
, // callback parameter
561 wxDDEnumModesCallback
566 wxLogApiError(_T("IDirectDraw::EnumDisplayModes"), hr
);
574 wxDisplay::DoGetModesWindows(const wxVideoMode
& modeMatch
) const
576 wxArrayVideoModes modes
;
578 const wxString name
= GetNameForEnumSettings();
580 const wxChar
* const deviceName
= name
.empty() ? NULL
: name
.c_str();
583 for ( int iModeNum
= 0;
584 ::EnumDisplaySettings(deviceName
, iModeNum
, &dm
);
587 const wxVideoMode mode
= ConvertToVideoMode(dm
);
588 if ( mode
.Matches(modeMatch
) )
597 wxArrayVideoModes
wxDisplay::GetModes(const wxVideoMode
& modeMatch
) const
599 return gs_useDirectX
? DoGetModesDirectX(modeMatch
)
600 : DoGetModesWindows(modeMatch
);
603 wxVideoMode
wxDisplay::GetCurrentMode() const
607 const wxString name
= GetNameForEnumSettings();
610 if ( !::EnumDisplaySettings(name
.empty() ? NULL
: name
.c_str(),
611 ENUM_CURRENT_SETTINGS
,
614 wxLogLastError(_T("EnumDisplaySettings(ENUM_CURRENT_SETTINGS)"));
618 mode
= ConvertToVideoMode(dm
);
624 // ----------------------------------------------------------------------------
625 // video mode switching
626 // ----------------------------------------------------------------------------
628 bool wxDisplay::DoChangeModeDirectX(const wxVideoMode
& mode
)
630 IDirectDraw2
*pDD
= (*gs_displays
)[m_index
].m_pDD2
;
634 wxWindow
*winTop
= wxTheApp
->GetTopWindow();
635 wxCHECK_MSG( winTop
, false, _T("top level window required for DirectX") );
637 HRESULT hr
= pDD
->SetCooperativeLevel
640 DDSCL_EXCLUSIVE
| DDSCL_FULLSCREEN
644 wxLogApiError(_T("IDirectDraw::SetCooperativeLevel"), hr
);
649 hr
= pDD
->SetDisplayMode(mode
.w
, mode
.h
, mode
.bpp
, mode
.refresh
, 0);
652 wxLogApiError(_T("IDirectDraw::SetDisplayMode"), hr
);
661 bool wxDisplay::DoChangeModeWindows(const wxVideoMode
& mode
)
663 // prepare ChangeDisplaySettingsEx() parameters
668 if ( mode
== wxDefaultVideoMode
)
670 // reset the video mode to default
674 else // change to the given mode
676 wxCHECK_MSG( mode
.w
&& mode
.h
, false,
677 _T("at least the width and height must be specified") );
680 dm
.dmSize
= sizeof(dm
);
681 dm
.dmFields
= DM_PELSWIDTH
| DM_PELSHEIGHT
;
682 dm
.dmPelsWidth
= mode
.w
;
683 dm
.dmPelsHeight
= mode
.h
;
687 dm
.dmFields
|= DM_BITSPERPEL
;
688 dm
.dmBitsPerPel
= mode
.bpp
;
693 dm
.dmFields
|= DM_DISPLAYFREQUENCY
;
694 dm
.dmDisplayFrequency
= mode
.refresh
;
699 flags
= CDS_FULLSCREEN
;
703 // get pointer to the function dynamically
705 // we're only called from the main thread, so it's ok to use static
707 static ChangeDisplaySettingsEx_t pfnChangeDisplaySettingsEx
= NULL
;
708 if ( !pfnChangeDisplaySettingsEx
)
710 wxDynamicLibrary
dllUser32(_T("user32.dll"));
711 if ( dllUser32
.IsLoaded() )
713 pfnChangeDisplaySettingsEx
= (ChangeDisplaySettingsEx_t
)
714 dllUser32
.GetSymbol(WINFUNC(ChangeDisplaySettingsEx
));
716 //else: huh, no user32.dll??
718 if ( !pfnChangeDisplaySettingsEx
)
720 // we must be under Win95 and so there is no multiple monitors
722 pfnChangeDisplaySettingsEx
= ChangeDisplaySettingsExForWin95
;
726 // do change the mode
727 switch ( pfnChangeDisplaySettingsEx
729 GetName(), // display name
730 pDevMode
, // dev mode or NULL to reset
733 NULL
// pointer to video parameters (not used)
736 case DISP_CHANGE_SUCCESSFUL
:
739 // If we have a top-level, full-screen frame, emulate
740 // the DirectX behavior and resize it. This makes this
741 // API quite a bit easier to use.
742 wxWindow
*winTop
= wxTheApp
->GetTopWindow();
743 wxFrame
*frameTop
= wxDynamicCast(winTop
, wxFrame
);
744 if (frameTop
&& frameTop
->IsFullScreen())
746 wxVideoMode current
= GetCurrentMode();
747 frameTop
->SetClientSize(current
.w
, current
.h
);
752 case DISP_CHANGE_BADMODE
:
753 // don't complain about this, this is the only "expected" error
757 wxFAIL_MSG( _T("unexpected ChangeDisplaySettingsEx() return value") );
763 bool wxDisplay::ChangeMode(const wxVideoMode
& mode
)
765 return gs_useDirectX
? DoChangeModeDirectX(mode
)
766 : DoChangeModeWindows(mode
);
769 #endif // wxUSE_DISPLAY