class WXDLLEXPORT wxDisplayImplX11 : public wxDisplayImpl
{
public:
- wxDisplayImplX11(const XineramaScreenInfo& info)
- : m_rect(info.x_org, info.y_org, info.width, info.height)
+ wxDisplayImplX11(size_t n, const XineramaScreenInfo& info)
+ : wxDisplayImpl(n),
+ m_rect(info.x_org, info.y_org, info.width, info.height)
{
}
class wxDisplayFactoryX11 : public wxDisplayFactory
{
public:
- wxDisplayFactoryX11();
+ wxDisplayFactoryX11() { }
virtual wxDisplayImpl *CreateDisplay(size_t n);
virtual size_t GetCount();
{
ScreensInfo screens;
- return n < screens.GetCount() ? new wxDisplayImplX11(screens[n]) : NULL;
+ return n < screens.GetCount() ? new wxDisplayImplX11(n, screens[n]) : NULL;
}
// ============================================================================
#define wxCVM2(v, dc) wxVideoMode(v.hdisplay, v.vdisplay, DefaultDepth((Display*)wxGetDisplay(), DefaultScreen((Display*)wxGetDisplay())), wxCRR2(v,dc))
#define wxCVM(v) wxCVM2(v, v.dotclock)
-wxArrayVideoModes wxDisplay::GetModes(const wxVideoMode& mode) const
+wxArrayVideoModes wxDisplayImplX11::GetModes(const wxVideoMode& mode) const
{
//Convenience...
Display* pDisplay = (Display*) wxGetDisplay(); //default display
return Modes;
}
-wxVideoMode wxDisplay::GetCurrentMode() const
+wxVideoMode wxDisplayImplX11::GetCurrentMode() const
{
XF86VidModeModeLine VM;
int nDotClock;
return wxCVM2(VM, nDotClock);
}
-bool wxDisplay::ChangeMode(const wxVideoMode& mode)
+bool wxDisplayImplX11::ChangeMode(const wxVideoMode& mode)
{
XF86VidModeModeInfo** ppXModes; //Enumerated Modes (Don't forget XFree() :))
int nNumModes; //Number of modes enumerated....
#else // !HAVE_X11_EXTENSIONS_XF86VMODE_H
-wxArrayVideoModes wxDisplay::GetModes(const wxVideoMode& mode) const
+wxArrayVideoModes wxDisplayImplX11::GetModes(const wxVideoMode& mode) const
{
int count_return;
int* depths = XListDepths((Display*)wxGetDisplay(), 0, &count_return);
return modes;
}
-wxVideoMode wxDisplay::GetCurrentMode() const
+wxVideoMode wxDisplayImplX11::GetCurrentMode() const
{
// Not implemented
return wxVideoMode();
}
-bool wxDisplay::ChangeMode(const wxVideoMode& mode)
+bool wxDisplayImplX11::ChangeMode(const wxVideoMode& mode)
{
// Not implemented
return false;
/* static */ wxDisplayFactory *wxDisplay::CreateFactory()
{
- Display *disp = (Display*)wxGetDisplay();
+ if ( XineramaIsActive((Display*)wxGetDisplay()) )
+ {
+ return new wxDisplayFactoryX11;
+ }
- return XineramaIsActive(disp) ? new wxDisplayFactoryX11
- : new wxDisplayFactorySingle;
+ return new wxDisplayFactorySingle;
}
#endif /* wxUSE_DISPLAY */