-
- EndDrawingOnTop();
-}
-
-bool wxScreenDC::StartDrawingOnTop( wxWindow *window )
-{
- if (!window) return StartDrawingOnTop();
-
- int x = 0;
- int y = 0;
- window->GetPosition( &x, &y );
- int w = 0;
- int h = 0;
- window->GetSize( &w, &h );
- window->ClientToScreen( &x, &y );
-
- wxRect rect;
- rect.x = x;
- rect.y = y;
- rect.width = 0;
- rect.height = 0;
-
- return StartDrawingOnTop( &rect );
-}
-
-bool wxScreenDC::StartDrawingOnTop( wxRect *rect )
-{
- int x = 0;
- int y = 0;
- int width = gdk_screen_width();
- int height = gdk_screen_height();
- if (rect)
- {
- x = rect->x;
- y = rect->y;
- width = rect->width;
- height = rect->height;
- }
-
- return TRUE;
-}
-
-bool wxScreenDC::EndDrawingOnTop()
-{
- return TRUE;