]> git.saurik.com Git - wxWidgets.git/commitdiff
X11 implementation of wxClientDisplayRect() doesn't work with Hildon, provide a stub...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 Nov 2007 12:55:27 +0000 (12:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 Nov 2007 12:55:27 +0000 (12:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/displayx11.cpp

index 99cb9e824c632cad8ebabc1debfeef3dee9c3fed..687329efd25f97358a059c659d002a5bc66be59c 100644 (file)
@@ -326,6 +326,23 @@ bool wxDisplayImplX11::ChangeMode(const wxVideoMode& WXUNUSED(mode))
 
 #include "wx/utils.h"
 
+#if wxUSE_LIBHILDON
+
+void wxClientDisplayRect(int *x, int *y, int *width, int *height)
+{
+    // TODO: don't hardcode display size
+    if ( x )
+        *x = 0;
+    if ( y )
+        *y = 0;
+    if ( width )
+        *width = 672;
+    if ( height )
+        *height = 396;
+}
+
+#else // !wxUSE_LIBHILDON
+
 #include <X11/Xatom.h>
 
 // TODO: make this a full-fledged class and move to a public header
@@ -408,3 +425,4 @@ void wxClientDisplayRect(int *x, int *y, int *width, int *height)
     wxDisplaySize(width, height);
 }
 
+#endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON