summaryrefslogtreecommitdiff
path: root/vcl/source/window/cursor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/cursor.cxx')
-rw-r--r--vcl/source/window/cursor.cxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/vcl/source/window/cursor.cxx b/vcl/source/window/cursor.cxx
index 669b05406070..3ccf0601bdca 100644
--- a/vcl/source/window/cursor.cxx
+++ b/vcl/source/window/cursor.cxx
@@ -27,9 +27,6 @@
#include <tools/poly.hxx>
-
-
-
struct ImplCursorData
{
AutoTimer maTimer; // Timer
@@ -44,8 +41,6 @@ struct ImplCursorData
Window* mpWindow; // Zugeordnetes Windows
};
-
-
static void ImplCursorInvert( ImplCursorData* pData )
{
Window* pWindow = pData->mpWindow;
@@ -120,8 +115,6 @@ static void ImplCursorInvert( ImplCursorData* pData )
pWindow->EnableMapMode( bMapMode );
}
-
-
void Cursor::ImplDraw()
{
if ( mpData && mpData->mpWindow && !mpData->mbCurVisible )
@@ -147,8 +140,6 @@ void Cursor::ImplDraw()
}
}
-
-
void Cursor::ImplRestore()
{
if ( mpData && mpData->mbCurVisible )
@@ -257,8 +248,6 @@ void Cursor::ImplNew()
}
}
-
-
IMPL_LINK_NOARG(Cursor, ImplTimerHdl)
{
if ( mpData->mbCurVisible )
@@ -268,8 +257,6 @@ IMPL_LINK_NOARG(Cursor, ImplTimerHdl)
return 0;
}
-
-
Cursor::Cursor()
{
mpData = NULL;
@@ -281,8 +268,6 @@ Cursor::Cursor()
mbVisible = false;
}
-
-
Cursor::Cursor( const Cursor& rCursor ) :
maSize( rCursor.maSize ),
maPos( rCursor.maPos )
@@ -296,8 +281,6 @@ Cursor::Cursor( const Cursor& rCursor ) :
mbVisible = rCursor.mbVisible;
}
-
-
Cursor::~Cursor()
{
if ( mpData )
@@ -309,8 +292,6 @@ Cursor::~Cursor()
}
}
-
-
void Cursor::SetStyle( sal_uInt16 nStyle )
{
if ( mnStyle != nStyle )
@@ -320,8 +301,6 @@ void Cursor::SetStyle( sal_uInt16 nStyle )
}
}
-
-
void Cursor::Show()
{
if ( !mbVisible )
@@ -331,8 +310,6 @@ void Cursor::Show()
}
}
-
-
void Cursor::Hide()
{
if ( mbVisible )
@@ -342,8 +319,6 @@ void Cursor::Hide()
}
}
-
-
void Cursor::SetWindow( Window* pWindow )
{
if ( mpWindow != pWindow )
@@ -353,8 +328,6 @@ void Cursor::SetWindow( Window* pWindow )
}
}
-
-
void Cursor::SetPos( const Point& rPoint )
{
if ( maPos != rPoint )
@@ -364,8 +337,6 @@ void Cursor::SetPos( const Point& rPoint )
}
}
-
-
void Cursor::SetSize( const Size& rSize )
{
if ( maSize != rSize )
@@ -375,8 +346,6 @@ void Cursor::SetSize( const Size& rSize )
}
}
-
-
void Cursor::SetWidth( long nNewWidth )
{
if ( maSize.Width() != nNewWidth )
@@ -386,8 +355,6 @@ void Cursor::SetWidth( long nNewWidth )
}
}
-
-
void Cursor::SetOrientation( short nNewOrientation )
{
if ( mnOrientation != nNewOrientation )
@@ -397,8 +364,6 @@ void Cursor::SetOrientation( short nNewOrientation )
}
}
-
-
void Cursor::SetDirection( unsigned char nNewDirection )
{
if ( mnDirection != nNewDirection )
@@ -408,8 +373,6 @@ void Cursor::SetDirection( unsigned char nNewDirection )
}
}
-
-
Cursor& Cursor::operator=( const Cursor& rCursor )
{
maPos = rCursor.maPos;
@@ -423,8 +386,6 @@ Cursor& Cursor::operator=( const Cursor& rCursor )
return *this;
}
-
-
bool Cursor::operator==( const Cursor& rCursor ) const
{
return