wxMGL wxWindow and wxApp mostly complete, now hunting bugs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11341 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-08-09 22:40:39 +00:00
parent 2cb980c58d
commit 7bdc18790e
13 changed files with 802 additions and 156 deletions

View File

@@ -47,16 +47,23 @@ void wxDisplaySize(int *width, int *height)
if (height) *height = g_displayDC->sizey();
}
void wxGetMousePosition(int* x, int* y)
void wxDisplaySizeMM(int *width, int *height)
{
MS_getPos(x, y);
wxASSERT_MSG( g_displayDC, wxT("MGL display DC not created yet.") );
if (width) *width = g_displayDC->sizex() * 25/72;
if (height) *height = g_displayDC->sizey() * 25/72;
// FIXME_MGL -- what about returning *real* monitor dimensions?
}
wxPoint wxGetMousePosition()
void wxClientDisplayRect(int *x, int *y, int *width, int *height)
{
wxPoint pt;
wxGetMousePosition(&pt.x, &pt.y);
return pt;
// This is supposed to return desktop dimensions minus any window
// manager panels, menus, taskbars, etc. If there is a way to do that
// for this platform please fix this function, otherwise it defaults
// to the entire desktop.
if (x) *x = 0;
if (y) *y = 0;
wxDisplaySize(width, height);
}
bool wxColourDisplay()
@@ -85,6 +92,20 @@ int wxGetOsVersion(int *majorVsn, int *minorVsn)
}
void wxGetMousePosition(int* x, int* y)
{
MS_getPos(x, y);
}
wxPoint wxGetMousePosition()
{
wxPoint pt;
wxGetMousePosition(&pt.x, &pt.y);
return pt;
}
#ifdef __UNIX__
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)