+#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 "wx/log.h"
+
+#include <X11/Xlib.h>