// headers
// ----------------------------------------------------------------------------
+#ifdef __VMS
+#define XtDisplay XTDISPLAY
+#endif
+
#include "wx/setup.h"
#include "wx/utils.h"
#include "wx/app.h"
*height = DisplayHeight (dpy, DefaultScreen (dpy));
}
+void wxDisplaySizeMM(int *width, int *height)
+{
+ Display *dpy = (Display*) wxGetDisplay();
+
+ if ( width )
+ *width = DisplayWidthMM(dpy, DefaultScreen (dpy));
+ if ( height )
+ *height = DisplayHeightMM(dpy, DefaultScreen (dpy));
+}
+
// Configurable display in Motif
static WXDisplay *gs_currentDisplay = NULL;
static wxString gs_displayName;
return gs_displayName;
}
+wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
+{
+ return wxGenericFindWindowAtPoint(pt);
+}
+
// ----------------------------------------------------------------------------
// accelerators
// ----------------------------------------------------------------------------