removed code which doesn't do anything (patch 1175655)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33364 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -67,47 +67,19 @@ wxScreenDC::~wxScreenDC()
|
|||||||
EndDrawingOnTop();
|
EndDrawingOnTop();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxScreenDC::StartDrawingOnTop( wxWindow *window )
|
bool wxScreenDC::StartDrawingOnTop( wxWindow * )
|
||||||
{
|
{
|
||||||
if (!window) return StartDrawingOnTop();
|
return true;
|
||||||
|
|
||||||
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 )
|
bool wxScreenDC::StartDrawingOnTop( wxRect * )
|
||||||
{
|
{
|
||||||
int x = 0;
|
return true;
|
||||||
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()
|
bool wxScreenDC::EndDrawingOnTop()
|
||||||
{
|
{
|
||||||
return TRUE;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxScreenDC::DoGetSize(int *width, int *height) const
|
void wxScreenDC::DoGetSize(int *width, int *height) const
|
||||||
|
@@ -67,47 +67,19 @@ wxScreenDC::~wxScreenDC()
|
|||||||
EndDrawingOnTop();
|
EndDrawingOnTop();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxScreenDC::StartDrawingOnTop( wxWindow *window )
|
bool wxScreenDC::StartDrawingOnTop( wxWindow * )
|
||||||
{
|
{
|
||||||
if (!window) return StartDrawingOnTop();
|
return true;
|
||||||
|
|
||||||
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 )
|
bool wxScreenDC::StartDrawingOnTop( wxRect * )
|
||||||
{
|
{
|
||||||
int x = 0;
|
return true;
|
||||||
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()
|
bool wxScreenDC::EndDrawingOnTop()
|
||||||
{
|
{
|
||||||
return TRUE;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxScreenDC::DoGetSize(int *width, int *height) const
|
void wxScreenDC::DoGetSize(int *width, int *height) const
|
||||||
|
Reference in New Issue
Block a user