added checks for Xxf86vmode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24848 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-12-14 22:46:22 +00:00
parent 83842a0ba3
commit 505c8ccdb3
4 changed files with 140 additions and 1 deletions

View File

@@ -39,7 +39,9 @@ extern "C" {
#include <X11/Xlib.h>
#include <X11/Xlibint.h>
#include <X11/extensions/Xinerama.h>
#ifdef HAVE_X11_EXTENSIONS_XF86VMODE_H
#include <X11/extensions/xf86vmode.h>
#endif
}
class wxDisplayUnixPriv
@@ -150,6 +152,9 @@ wxString wxDisplay::GetName() const
return wxEmptyString;
}
#ifdef HAVE_X11_EXTENSIONS_XF86VMODE_H
//
// See (http://www.xfree86.org/4.2.0/XF86VidModeDeleteModeLine.3.html) for more
// info about xf86 video mode extensions
@@ -275,5 +280,27 @@ bool wxDisplay::ChangeMode(const wxVideoMode& mode)
*/
}
#endif /* wxUSE_DISPLAY */
#else // !HAVE_X11_EXTENSIONS_XF86VMODE_H
wxArrayVideoModes wxDisplay::GetModes(const wxVideoMode& mode) const
{
// Not implemented
return wxArrayVideoModes();
}
wxVideoMode wxDisplay::GetCurrentMode() const
{
// Not implemented
return wxVideoMode();
}
bool wxDisplay::ChangeMode(const wxVideoMode& mode)
{
// Not implemented
return false;
}
#endif // !HAVE_X11_EXTENSIONS_XF86VMODE_H
#endif /* wxUSE_DISPLAY */