1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/display.cpp
3 // Purpose: MSW Implementation of wxDisplay class
4 // Author: Royce Mitchell III, Vadim Zeitlin
5 // Modified by: Ryan Norton (IsPrimary override)
8 // Copyright: (c) wxWidgets team
9 // Copyright: (c) 2002-2006 wxWidgets team
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ===========================================================================
15 // ===========================================================================
17 // ---------------------------------------------------------------------------
19 // ---------------------------------------------------------------------------
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
32 #include "wx/dynarray.h"
36 #include "wx/dynload.h"
37 #include "wx/sysopt.h"
39 #include "wx/display.h"
40 #include "wx/display_impl.h"
42 // Mingw's w32api headers don't include ddraw.h, though the user may have
43 // installed it. If using configure, we actually probe for ddraw.h there
44 // and set wxUSE_DIRECTDRAW. Otherwise, assume we don't have it if using
45 // the w32api headers, and that we do otherwise.
46 #if !defined HAVE_W32API_H && !defined HAVE_DDRAW_H
50 // user may disable compilation of DirectDraw code by setting
51 // wxUSE_DIRECTDRAW to 0 in the makefile/project settings
52 #if defined(HAVE_DDRAW_H) && !defined(wxUSE_DIRECTDRAW)
53 #define wxUSE_DIRECTDRAW 1
57 // Older versions of windef.h don't define HMONITOR. Unfortunately, we
58 // can't directly test whether HMONITOR is defined or not in windef.h as
59 // it's not a macro but a typedef, so we test for an unrelated symbol which
60 // is only defined in winuser.h if WINVER >= 0x0500
61 #if !defined(HMONITOR_DECLARED) && !defined(MNS_NOCHECK)
62 DECLARE_HANDLE(HMONITOR
);
63 #define HMONITOR_DECLARED
65 #endif // !__WXWINCE__
67 #ifdef wxUSE_DIRECTDRAW
70 // we don't want to link with ddraw.lib which contains the real
71 // IID_IDirectDraw2 definition
72 const GUID wxIID_IDirectDraw2
=
73 { 0xB3A6F3E0, 0x2B43, 0x11CF, { 0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 } };
74 #endif // wxUSE_DIRECTDRAW
76 // ----------------------------------------------------------------------------
77 // typedefs for dynamically loaded Windows functions
78 // ----------------------------------------------------------------------------
80 typedef LONG (WINAPI
*ChangeDisplaySettingsEx_t
)(LPCTSTR lpszDeviceName
,
86 #ifdef wxUSE_DIRECTDRAW
87 typedef BOOL (PASCAL
*DDEnumExCallback_t
)(GUID
*pGuid
,
88 LPTSTR driverDescription
,
93 typedef HRESULT (WINAPI
*DirectDrawEnumerateEx_t
)(DDEnumExCallback_t lpCallback
,
97 typedef HRESULT (WINAPI
*DirectDrawCreate_t
)(GUID
*lpGUID
,
100 #endif // wxUSE_DIRECTDRAW
102 typedef BOOL (WINAPI
*EnumDisplayMonitors_t
)(HDC
,LPCRECT
,MONITORENUMPROC
,LPARAM
);
103 typedef HMONITOR (WINAPI
*MonitorFromPoint_t
)(POINT
,DWORD
);
104 typedef HMONITOR (WINAPI
*MonitorFromWindow_t
)(HWND
,DWORD
);
105 typedef BOOL (WINAPI
*GetMonitorInfo_t
)(HMONITOR
,LPMONITORINFO
);
108 // emulation of ChangeDisplaySettingsEx() for Win95
109 LONG WINAPI
ChangeDisplaySettingsExForWin95(LPCTSTR
WXUNUSED(lpszDeviceName
),
113 LPVOID
WXUNUSED(lParam
))
115 return ::ChangeDisplaySettings(lpDevMode
, dwFlags
);
117 #endif // !__WXWINCE__
119 // ----------------------------------------------------------------------------
120 // display information classes
121 // ----------------------------------------------------------------------------
125 wxDisplayInfo(HMONITOR hmon
= NULL
)
131 virtual ~wxDisplayInfo() { }
134 // use GetMonitorInfo() to fill in all of our fields if needed (i.e. if it
135 // hadn't been done before)
139 // handle of this monitor used by MonitorXXX() functions, never NULL
142 // the entire area of this monitor in virtual screen coordinates
145 // the display device name for this monitor, empty initially and retrieved
146 // on demand by DoGetName()
149 // the flags of this monitor, also used as initialization marker: if this
150 // is -1, GetMonitorInfo() hadn't been called yet
154 WX_DEFINE_ARRAY_PTR(wxDisplayInfo
*, wxDisplayInfoArray
);
156 // ----------------------------------------------------------------------------
157 // common base class for all Win32 wxDisplayImpl versions
158 // ----------------------------------------------------------------------------
160 class wxDisplayImplWin32Base
: public wxDisplayImpl
163 wxDisplayImplWin32Base(size_t n
, wxDisplayInfo
& info
)
169 virtual wxRect
GetGeometry() const;
170 virtual wxString
GetName() const;
171 virtual bool IsPrimary() const;
173 virtual wxVideoMode
GetCurrentMode() const;
176 // convert a DEVMODE to our wxVideoMode
177 static wxVideoMode
ConvertToVideoMode(const DEVMODE
& dm
)
179 // note that dmDisplayFrequency may be 0 or 1 meaning "standard one"
180 // and although 0 is ok for us we don't want to return modes with 1hz
182 return wxVideoMode(dm
.dmPelsWidth
,
185 dm
.dmDisplayFrequency
> 1 ? dm
.dmDisplayFrequency
: 0);
188 wxDisplayInfo
& m_info
;
191 // ----------------------------------------------------------------------------
192 // common base class for all Win32 wxDisplayFactory versions
193 // ----------------------------------------------------------------------------
195 // functions dynamically bound by wxDisplayFactoryWin32Base::Initialize()
196 static MonitorFromPoint_t gs_MonitorFromPoint
= NULL
;
197 static MonitorFromWindow_t gs_MonitorFromWindow
= NULL
;
198 static GetMonitorInfo_t gs_GetMonitorInfo
= NULL
;
200 class wxDisplayFactoryWin32Base
: public wxDisplayFactory
203 virtual ~wxDisplayFactoryWin32Base();
205 bool IsOk() const { return !m_displays
.empty(); }
207 virtual size_t GetCount() { return m_displays
.size(); }
208 virtual int GetFromPoint(const wxPoint
& pt
);
209 virtual int GetFromWindow(wxWindow
*window
);
212 // ctor checks if the current system supports multimon API and dynamically
213 // bind the functions we need if this is the case and sets
214 // ms_supportsMultimon if they're available
215 wxDisplayFactoryWin32Base();
217 // delete all m_displays elements: can be called from the derived class
218 // dtor if it is important to do this before destroying it (as in
219 // wxDisplayFactoryDirectDraw case), otherwise will be done by our dtor
222 // find the monitor corresponding to the given handle, return wxNOT_FOUND
224 int FindDisplayFromHMONITOR(HMONITOR hmon
) const;
227 // flag indicating whether gs_MonitorXXX functions are available
228 static int ms_supportsMultimon
;
230 // the array containing information about all available displays, should be
231 // filled by the derived class ctors
232 wxDisplayInfoArray m_displays
;
235 DECLARE_NO_COPY_CLASS(wxDisplayFactoryWin32Base
)
238 // ----------------------------------------------------------------------------
239 // wxDisplay implementation using Windows multi-monitor support functions
240 // ----------------------------------------------------------------------------
242 class wxDisplayImplMultimon
: public wxDisplayImplWin32Base
245 wxDisplayImplMultimon(size_t n
, wxDisplayInfo
& info
)
246 : wxDisplayImplWin32Base(n
, info
)
250 virtual wxArrayVideoModes
GetModes(const wxVideoMode
& mode
) const;
251 virtual bool ChangeMode(const wxVideoMode
& mode
);
254 DECLARE_NO_COPY_CLASS(wxDisplayImplMultimon
)
257 class WXDLLEXPORT wxDisplayFactoryMultimon
: public wxDisplayFactoryWin32Base
260 wxDisplayFactoryMultimon();
262 virtual wxDisplayImpl
*CreateDisplay(size_t n
);
265 // EnumDisplayMonitors() callback
266 static BOOL CALLBACK
MultimonEnumProc(HMONITOR hMonitor
,
272 // add a monitor description to m_displays array
273 void AddDisplay(HMONITOR hMonitor
, LPRECT lprcMonitor
);
276 // ----------------------------------------------------------------------------
277 // wxDisplay implementation using DirectDraw
278 // ----------------------------------------------------------------------------
280 #ifdef wxUSE_DIRECTDRAW
282 struct wxDisplayInfoDirectDraw
: wxDisplayInfo
284 wxDisplayInfoDirectDraw(const GUID
& guid
, HMONITOR hmon
, LPTSTR name
)
285 : wxDisplayInfo(hmon
),
292 virtual ~wxDisplayInfoDirectDraw()
299 // IDirectDraw object used to control this display, may be NULL
300 IDirectDraw2
*m_pDD2
;
302 // DirectDraw GUID for this display, only valid when using DirectDraw
306 DECLARE_NO_COPY_CLASS(wxDisplayInfoDirectDraw
)
309 class wxDisplayImplDirectDraw
: public wxDisplayImplWin32Base
312 wxDisplayImplDirectDraw(size_t n
, wxDisplayInfo
& info
, IDirectDraw2
*pDD2
)
313 : wxDisplayImplWin32Base(n
, info
),
319 virtual ~wxDisplayImplDirectDraw()
324 virtual wxArrayVideoModes
GetModes(const wxVideoMode
& mode
) const;
325 virtual bool ChangeMode(const wxVideoMode
& mode
);
328 IDirectDraw2
*m_pDD2
;
330 DECLARE_NO_COPY_CLASS(wxDisplayImplDirectDraw
)
333 class WXDLLEXPORT wxDisplayFactoryDirectDraw
: public wxDisplayFactoryWin32Base
336 wxDisplayFactoryDirectDraw();
337 virtual ~wxDisplayFactoryDirectDraw();
339 virtual wxDisplayImpl
*CreateDisplay(size_t n
);
342 // callback used with DirectDrawEnumerateEx()
343 static BOOL WINAPI
DDEnumExCallback(GUID
*pGuid
,
344 LPTSTR driverDescription
,
349 // add a monitor description to m_displays array
350 void AddDisplay(const GUID
& guid
, HMONITOR hmon
, LPTSTR name
);
354 wxDynamicLibrary m_dllDDraw
;
356 // dynamically resolved DirectDrawCreate()
357 DirectDrawCreate_t m_pfnDirectDrawCreate
;
359 DECLARE_NO_COPY_CLASS(wxDisplayFactoryDirectDraw
)
362 #endif // wxUSE_DIRECTDRAW
365 // ============================================================================
366 // common classes implementation
367 // ============================================================================
369 // ----------------------------------------------------------------------------
371 // ----------------------------------------------------------------------------
373 /* static */ wxDisplayFactory
*wxDisplay::CreateFactory()
375 // we have 2 implementations for modern Windows: one using standard Win32
376 // and another using DirectDraw, the choice between them is done using a
378 if ( wxSystemOptions::GetOptionInt(_T("msw.display.directdraw")) )
380 wxDisplayFactoryDirectDraw
*factoryDD
= new wxDisplayFactoryDirectDraw
;
381 if ( factoryDD
->IsOk() )
387 wxDisplayFactoryMultimon
*factoryMM
= new wxDisplayFactoryMultimon
;
388 if ( factoryMM
->IsOk() )
394 // finally fall back to a stub implementation if all else failed (Win95?)
395 return new wxDisplayFactorySingle
;
398 // ----------------------------------------------------------------------------
400 // ----------------------------------------------------------------------------
402 void wxDisplayInfo::Initialize()
404 if ( m_flags
== (DWORD
)-1 )
406 WinStruct
<MONITORINFOEX
> monInfo
;
407 if ( !gs_GetMonitorInfo(m_hmon
, (LPMONITORINFO
)&monInfo
) )
409 wxLogLastError(_T("GetMonitorInfo"));
414 wxCopyRECTToRect(monInfo
.rcMonitor
, m_rect
);
415 m_devName
= monInfo
.szDevice
;
416 m_flags
= monInfo
.dwFlags
;
420 // ----------------------------------------------------------------------------
421 // wxDisplayImplWin32Base
422 // ----------------------------------------------------------------------------
424 wxRect
wxDisplayImplWin32Base::GetGeometry() const
426 if ( m_info
.m_rect
.IsEmpty() )
429 return m_info
.m_rect
;
432 wxString
wxDisplayImplWin32Base::GetName() const
434 if ( m_info
.m_devName
.IsEmpty() )
437 return m_info
.m_devName
;
440 bool wxDisplayImplWin32Base::IsPrimary() const
442 if ( m_info
.m_flags
== (DWORD
)-1 )
445 return (m_info
.m_flags
& MONITORINFOF_PRIMARY
) != 0;
448 wxVideoMode
wxDisplayImplWin32Base::GetCurrentMode() const
452 // The first parameter of EnumDisplaySettings() must be NULL under Win95
453 // according to MSDN. The version of GetName() we implement for Win95
454 // returns an empty string.
455 const wxString name
= GetName();
456 const wxChar
* const deviceName
= name
.empty() ? NULL
: name
.c_str();
459 dm
.dmSize
= sizeof(dm
);
460 dm
.dmDriverExtra
= 0;
461 if ( !::EnumDisplaySettings(deviceName
, ENUM_CURRENT_SETTINGS
, &dm
) )
463 wxLogLastError(_T("EnumDisplaySettings(ENUM_CURRENT_SETTINGS)"));
467 mode
= ConvertToVideoMode(dm
);
473 // ----------------------------------------------------------------------------
474 // wxDisplayFactoryWin32Base
475 // ----------------------------------------------------------------------------
477 int wxDisplayFactoryWin32Base::ms_supportsMultimon
= -1;
479 wxDisplayFactoryWin32Base::wxDisplayFactoryWin32Base()
481 if ( ms_supportsMultimon
== -1 )
483 ms_supportsMultimon
= 0;
485 wxDynamicLibrary
dllUser32(_T("user32.dll"));
489 gs_MonitorFromPoint
= (MonitorFromPoint_t
)
490 dllUser32
.GetSymbol(wxT("MonitorFromPoint"));
491 if ( !gs_MonitorFromPoint
)
494 gs_MonitorFromWindow
= (MonitorFromWindow_t
)
495 dllUser32
.GetSymbol(wxT("MonitorFromWindow"));
496 if ( !gs_MonitorFromWindow
)
499 gs_GetMonitorInfo
= (GetMonitorInfo_t
)
500 dllUser32
.GetSymbolAorW(wxT("GetMonitorInfo"));
501 if ( !gs_GetMonitorInfo
)
504 ms_supportsMultimon
= 1;
506 // we can safely let dllUser32 go out of scope, the DLL itself will
507 // still remain loaded as all Win32 programs use it
511 void wxDisplayFactoryWin32Base::Clear()
513 WX_CLEAR_ARRAY(m_displays
);
516 wxDisplayFactoryWin32Base::~wxDisplayFactoryWin32Base()
521 // helper for GetFromPoint() and GetFromWindow()
522 int wxDisplayFactoryWin32Base::FindDisplayFromHMONITOR(HMONITOR hmon
) const
526 const size_t count
= m_displays
.size();
527 for ( size_t n
= 0; n
< count
; n
++ )
529 if ( hmon
== m_displays
[n
]->m_hmon
)
537 int wxDisplayFactoryWin32Base::GetFromPoint(const wxPoint
& pt
)
543 return FindDisplayFromHMONITOR(gs_MonitorFromPoint(pt2
,
544 MONITOR_DEFAULTTONULL
));
547 int wxDisplayFactoryWin32Base::GetFromWindow(wxWindow
*window
)
549 return FindDisplayFromHMONITOR(gs_MonitorFromWindow(GetHwndOf(window
),
550 MONITOR_DEFAULTTONULL
));
553 // ============================================================================
554 // wxDisplay implementation using Win32 multimon API
555 // ============================================================================
557 // ----------------------------------------------------------------------------
558 // wxDisplayFactoryMultimon initialization
559 // ----------------------------------------------------------------------------
561 wxDisplayFactoryMultimon::wxDisplayFactoryMultimon()
563 if ( !ms_supportsMultimon
)
566 // look up EnumDisplayMonitors() which we don't need with DirectDraw
568 EnumDisplayMonitors_t pfnEnumDisplayMonitors
;
572 wxDynamicLibrary
dllUser32(_T("user32.dll"));
573 pfnEnumDisplayMonitors
= (EnumDisplayMonitors_t
)
574 dllUser32
.GetSymbol(wxT("EnumDisplayMonitors"));
575 if ( !pfnEnumDisplayMonitors
)
579 // enumerate all displays
580 if ( !pfnEnumDisplayMonitors(NULL
, NULL
, MultimonEnumProc
, (LPARAM
)this) )
582 wxLogLastError(wxT("EnumDisplayMonitors"));
588 wxDisplayFactoryMultimon::MultimonEnumProc(
589 HMONITOR hMonitor
, // handle to display monitor
590 HDC
WXUNUSED(hdcMonitor
), // handle to monitor-appropriate device context
591 LPRECT lprcMonitor
, // pointer to monitor intersection rectangle
592 LPARAM dwData
// data passed from EnumDisplayMonitors (this)
595 wxDisplayFactoryMultimon
*const self
= (wxDisplayFactoryMultimon
*)dwData
;
596 self
->AddDisplay(hMonitor
, lprcMonitor
);
598 // continue the enumeration
602 // ----------------------------------------------------------------------------
603 // wxDisplayFactoryMultimon helper functions
604 // ----------------------------------------------------------------------------
606 void wxDisplayFactoryMultimon::AddDisplay(HMONITOR hMonitor
, LPRECT lprcMonitor
)
608 wxDisplayInfo
*info
= new wxDisplayInfo(hMonitor
);
610 // we also store the display geometry
611 info
->m_rect
= wxRect(lprcMonitor
->left
, lprcMonitor
->top
,
612 lprcMonitor
->right
- lprcMonitor
->left
,
613 lprcMonitor
->bottom
- lprcMonitor
->top
);
615 // now add this monitor to the array
616 m_displays
.Add(info
);
619 // ----------------------------------------------------------------------------
620 // wxDisplayFactoryMultimon inherited pure virtuals implementation
621 // ----------------------------------------------------------------------------
623 wxDisplayImpl
*wxDisplayFactoryMultimon::CreateDisplay(size_t n
)
625 wxCHECK_MSG( n
< m_displays
.size(), NULL
, _T("invalid display index") );
627 return new wxDisplayImplMultimon(n
, *(m_displays
[n
]));
630 // ----------------------------------------------------------------------------
631 // wxDisplayImplMultimon implementation
632 // ----------------------------------------------------------------------------
635 wxDisplayImplMultimon::GetModes(const wxVideoMode
& modeMatch
) const
637 wxArrayVideoModes modes
;
639 // The first parameter of EnumDisplaySettings() must be NULL under Win95
640 // according to MSDN. The version of GetName() we implement for Win95
641 // returns an empty string.
642 const wxString name
= GetName();
643 const wxChar
* const deviceName
= name
.empty() ? NULL
: name
.c_str();
646 dm
.dmSize
= sizeof(dm
);
647 dm
.dmDriverExtra
= 0;
648 for ( int iModeNum
= 0;
649 ::EnumDisplaySettings(deviceName
, iModeNum
, &dm
);
652 const wxVideoMode mode
= ConvertToVideoMode(dm
);
653 if ( mode
.Matches(modeMatch
) )
662 bool wxDisplayImplMultimon::ChangeMode(const wxVideoMode
& mode
)
664 // prepare ChangeDisplaySettingsEx() parameters
670 if ( mode
== wxDefaultVideoMode
)
672 // reset the video mode to default
676 else // change to the given mode
678 wxCHECK_MSG( mode
.w
&& mode
.h
, false,
679 _T("at least the width and height must be specified") );
682 dm
.dmSize
= sizeof(dm
);
683 dm
.dmDriverExtra
= 0;
684 dm
.dmFields
= DM_PELSWIDTH
| DM_PELSHEIGHT
;
685 dm
.dmPelsWidth
= mode
.w
;
686 dm
.dmPelsHeight
= mode
.h
;
690 dm
.dmFields
|= DM_BITSPERPEL
;
691 dm
.dmBitsPerPel
= mode
.bpp
;
696 dm
.dmFields
|= DM_DISPLAYFREQUENCY
;
697 dm
.dmDisplayFrequency
= mode
.refresh
;
704 #else // !__WXWINCE__
705 flags
= CDS_FULLSCREEN
;
706 #endif // __WXWINCE__/!__WXWINCE__
710 // get pointer to the function dynamically
712 // we're only called from the main thread, so it's ok to use static
714 static ChangeDisplaySettingsEx_t pfnChangeDisplaySettingsEx
= NULL
;
715 if ( !pfnChangeDisplaySettingsEx
)
717 wxDynamicLibrary
dllUser32(_T("user32.dll"));
718 if ( dllUser32
.IsLoaded() )
720 pfnChangeDisplaySettingsEx
= (ChangeDisplaySettingsEx_t
)
721 dllUser32
.GetSymbolAorW(_T("ChangeDisplaySettingsEx"));
723 //else: huh, no user32.dll??
726 if ( !pfnChangeDisplaySettingsEx
)
728 // we must be under Win95 and so there is no multiple monitors
730 pfnChangeDisplaySettingsEx
= ChangeDisplaySettingsExForWin95
;
732 #endif // !__WXWINCE__
735 // do change the mode
736 switch ( pfnChangeDisplaySettingsEx
738 GetName(), // display name
739 pDevMode
, // dev mode or NULL to reset
742 NULL
// pointer to video parameters (not used)
745 case DISP_CHANGE_SUCCESSFUL
:
748 // If we have a top-level, full-screen frame, emulate
749 // the DirectX behavior and resize it. This makes this
750 // API quite a bit easier to use.
751 wxWindow
*winTop
= wxTheApp
->GetTopWindow();
752 wxFrame
*frameTop
= wxDynamicCast(winTop
, wxFrame
);
753 if (frameTop
&& frameTop
->IsFullScreen())
755 wxVideoMode current
= GetCurrentMode();
756 frameTop
->SetClientSize(current
.w
, current
.h
);
761 case DISP_CHANGE_BADMODE
:
762 // don't complain about this, this is the only "expected" error
766 wxFAIL_MSG( _T("unexpected ChangeDisplaySettingsEx() return value") );
773 // ============================================================================
774 // DirectDraw-based wxDisplay implementation
775 // ============================================================================
779 // ----------------------------------------------------------------------------
780 // wxDisplayFactoryDirectDraw initialization
781 // ----------------------------------------------------------------------------
783 wxDisplayFactoryDirectDraw::wxDisplayFactoryDirectDraw()
785 if ( !ms_supportsMultimon
)
789 // suppress the errors if ddraw.dll is not found, we're prepared to handle
794 m_dllDDraw
.Load(_T("ddraw.dll"));
796 if ( !m_dllDDraw
.IsLoaded() )
799 DirectDrawEnumerateEx_t pDDEnumEx
= (DirectDrawEnumerateEx_t
)
800 m_dllDDraw
.GetSymbolAorW(_T("DirectDrawEnumerateEx"));
804 // we can't continue without DirectDrawCreate() later, so resolve it right
805 // now and fail the initialization if it's not available
806 m_pfnDirectDrawCreate
= (DirectDrawCreate_t
)
807 m_dllDDraw
.GetSymbol(_T("DirectDrawCreate"));
808 if ( !m_pfnDirectDrawCreate
)
811 if ( (*pDDEnumEx
)(DDEnumExCallback
,
813 DDENUM_ATTACHEDSECONDARYDEVICES
) != DD_OK
)
815 wxLogLastError(_T("DirectDrawEnumerateEx"));
819 wxDisplayFactoryDirectDraw::~wxDisplayFactoryDirectDraw()
821 // we must clear m_displays now, before m_dllDDraw is unloaded as otherwise
822 // calling m_pDD2->Release() later would crash
826 // ----------------------------------------------------------------------------
827 // callbacks for monitor/modes enumeration stuff
828 // ----------------------------------------------------------------------------
831 wxDisplayFactoryDirectDraw::DDEnumExCallback(GUID
*pGuid
,
832 LPTSTR
WXUNUSED(driverDescription
),
839 wxDisplayFactoryDirectDraw
* self
=
840 wx_static_cast(wxDisplayFactoryDirectDraw
*, lpContext
);
841 self
->AddDisplay(*pGuid
, hmon
, driverName
);
843 //else: we're called for the primary monitor, skip it
845 // continue the enumeration
849 // ----------------------------------------------------------------------------
850 // wxDisplayFactoryDirectDraw helpers
851 // ----------------------------------------------------------------------------
853 void wxDisplayFactoryDirectDraw::AddDisplay(const GUID
& guid
,
857 m_displays
.Add(new wxDisplayInfoDirectDraw(guid
, hmon
, name
));
860 // ----------------------------------------------------------------------------
861 // wxDisplayFactoryDirectDraw inherited pure virtuals implementation
862 // ----------------------------------------------------------------------------
864 wxDisplayImpl
*wxDisplayFactoryDirectDraw::CreateDisplay(size_t n
)
866 wxCHECK_MSG( n
< m_displays
.size(), NULL
, _T("invalid display index") );
868 wxDisplayInfoDirectDraw
*
869 info
= wx_static_cast(wxDisplayInfoDirectDraw
*, m_displays
[n
]);
874 GUID
guid(info
->m_guid
);
875 HRESULT hr
= (*m_pfnDirectDrawCreate
)(&guid
, &pDD
, NULL
);
877 if ( FAILED(hr
) || !pDD
)
880 wxLogApiError(_T("DirectDrawCreate"), hr
);
884 // we got IDirectDraw, but we need IDirectDraw2
885 hr
= pDD
->QueryInterface(wxIID_IDirectDraw2
, (void **)&info
->m_pDD2
);
888 if ( FAILED(hr
) || !info
->m_pDD2
)
890 wxLogApiError(_T("IDirectDraw::QueryInterface(IDD2)"), hr
);
894 // NB: m_pDD2 will now be only destroyed when m_displays is destroyed
895 // which is ok as we don't want to recreate DD objects all the time
897 //else: DirectDraw object corresponding to our display already exists
899 return new wxDisplayImplDirectDraw(n
, *info
, info
->m_pDD2
);
902 // ============================================================================
903 // wxDisplayImplDirectDraw
904 // ============================================================================
906 // ----------------------------------------------------------------------------
907 // video modes enumeration
908 // ----------------------------------------------------------------------------
910 // tiny helper class used to pass information from GetModes() to
911 // wxDDEnumModesCallback
912 class wxDDVideoModesAdder
915 // our Add() method will add modes matching modeMatch to modes array
916 wxDDVideoModesAdder(wxArrayVideoModes
& modes
, const wxVideoMode
& modeMatch
)
918 m_modeMatch(modeMatch
)
922 void Add(const wxVideoMode
& mode
)
924 if ( mode
.Matches(m_modeMatch
) )
929 wxArrayVideoModes
& m_modes
;
930 const wxVideoMode
& m_modeMatch
;
932 DECLARE_NO_COPY_CLASS(wxDDVideoModesAdder
)
935 HRESULT WINAPI
wxDDEnumModesCallback(LPDDSURFACEDESC lpDDSurfaceDesc
,
938 // we need at least the mode size
939 static const DWORD FLAGS_REQUIRED
= DDSD_HEIGHT
| DDSD_WIDTH
;
940 if ( (lpDDSurfaceDesc
->dwFlags
& FLAGS_REQUIRED
) == FLAGS_REQUIRED
)
942 wxDDVideoModesAdder
* const vmodes
=
943 wx_static_cast(wxDDVideoModesAdder
*, lpContext
);
945 vmodes
->Add(wxVideoMode(lpDDSurfaceDesc
->dwWidth
,
946 lpDDSurfaceDesc
->dwHeight
,
947 lpDDSurfaceDesc
->ddpfPixelFormat
.dwRGBBitCount
,
948 lpDDSurfaceDesc
->dwRefreshRate
));
951 // continue the enumeration
956 wxDisplayImplDirectDraw::GetModes(const wxVideoMode
& modeMatch
) const
958 wxArrayVideoModes modes
;
959 wxDDVideoModesAdder
modesAdder(modes
, modeMatch
);
961 HRESULT hr
= m_pDD2
->EnumDisplayModes
965 &modesAdder
, // callback parameter
966 wxDDEnumModesCallback
971 wxLogApiError(_T("IDirectDraw::EnumDisplayModes"), hr
);
977 // ----------------------------------------------------------------------------
978 // video mode switching
979 // ----------------------------------------------------------------------------
981 bool wxDisplayImplDirectDraw::ChangeMode(const wxVideoMode
& mode
)
983 wxWindow
*winTop
= wxTheApp
->GetTopWindow();
984 wxCHECK_MSG( winTop
, false, _T("top level window required for DirectX") );
986 HRESULT hr
= m_pDD2
->SetCooperativeLevel
989 DDSCL_EXCLUSIVE
| DDSCL_FULLSCREEN
993 wxLogApiError(_T("IDirectDraw2::SetCooperativeLevel"), hr
);
998 hr
= m_pDD2
->SetDisplayMode(mode
.w
, mode
.h
, mode
.bpp
, mode
.refresh
, 0);
1001 wxLogApiError(_T("IDirectDraw2::SetDisplayMode"), hr
);
1009 #endif // wxUSE_DIRECTDRAW
1011 #endif // wxUSE_DISPLAY