summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-28 21:12:38 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-29 11:09:01 +0200
commitc817dcb87316a0551a30c173ce5e8cdbe4e4bf7a (patch)
treea966d143b74383c547525267cb56ab95fadf3b3e
parentc660d8a1160231f0a744a4b3e6772d58afe85bfd (diff)
callcatcher: remove unused methods
-rw-r--r--vcl/inc/vcl/alpha.hxx4
-rw-r--r--vcl/inc/vcl/bitmap.hxx2
-rw-r--r--vcl/inc/vcl/bmpacc.hxx8
-rw-r--r--vcl/inc/vcl/cursor.hxx3
-rw-r--r--vcl/inc/vcl/floatwin.hxx1
-rw-r--r--vcl/source/fontsubset/cff.cxx13
-rw-r--r--vcl/source/gdi/bitmap.cxx14
-rw-r--r--vcl/source/gdi/bmpacc.cxx23
-rw-r--r--vcl/source/gdi/bmpacc3.cxx70
-rw-r--r--vcl/source/window/cursor.cxx33
-rw-r--r--vcl/source/window/floatwin.cxx9
11 files changed, 0 insertions, 180 deletions
diff --git a/vcl/inc/vcl/alpha.hxx b/vcl/inc/vcl/alpha.hxx
index 6e51a8a2440e..45eed358b053 100644
--- a/vcl/inc/vcl/alpha.hxx
+++ b/vcl/inc/vcl/alpha.hxx
@@ -98,10 +98,6 @@ public:
{
return Bitmap::GetSizePixel();
}
- void SetSizePixel( const Size& rNewSize )
- {
- Bitmap::SetSizePixel( rNewSize );
- }
sal_uLong GetSizeBytes() const
{
diff --git a/vcl/inc/vcl/bitmap.hxx b/vcl/inc/vcl/bitmap.hxx
index a6ff3129fada..dfe5e4d7fe14 100644
--- a/vcl/inc/vcl/bitmap.hxx
+++ b/vcl/inc/vcl/bitmap.hxx
@@ -328,14 +328,12 @@ public:
inline void SetPrefSize( const Size& rSize );
Size GetSizePixel() const;
- void SetSizePixel( const Size& rNewSize );
/**
* The pixel size of a bitmap's source (e.g. an image file)
* and the pixel size of its resulting bitmap can differ,
* e.g. when the image reader has its preview mode enabled.
*/
- Size GetSourceSizePixel() const;
void SetSourceSizePixel( const Size& );
diff --git a/vcl/inc/vcl/bmpacc.hxx b/vcl/inc/vcl/bmpacc.hxx
index d98ff2cfe8dc..2663aa21b796 100644
--- a/vcl/inc/vcl/bmpacc.hxx
+++ b/vcl/inc/vcl/bmpacc.hxx
@@ -128,9 +128,6 @@ SAL_DLLPRIVATE BitmapBuffer* ImplGetBitmapBuffer() const { return mpBuffer; }
protected:
BitmapReadAccess( Bitmap& rBitmap, sal_Bool bModify );
- void Flush();
- void ReAccess( sal_Bool bModify );
-
public:
BitmapReadAccess( Bitmap& rBitmap );
virtual ~BitmapReadAccess();
@@ -194,13 +191,9 @@ public:
inline void SetPixel( long nY, long nX, const BitmapColor& rBitmapColor );
- void SetLineColor();
void SetLineColor( const Color& rColor );
- Color GetLineColor() const;
- void SetFillColor();
void SetFillColor( const Color& rColor );
- Color GetFillColor() const;
void Erase( const Color& rColor );
@@ -213,7 +206,6 @@ public:
void DrawPolygon( const Polygon& rPoly );
void FillPolyPolygon( const PolyPolygon& rPoly );
- void DrawPolyPolygon( const PolyPolygon& rPolyPoly );
private:
diff --git a/vcl/inc/vcl/cursor.hxx b/vcl/inc/vcl/cursor.hxx
index 7fd95454945e..7e886dd05fda 100644
--- a/vcl/inc/vcl/cursor.hxx
+++ b/vcl/inc/vcl/cursor.hxx
@@ -92,17 +92,14 @@ public:
void SetPos( const Point& rNewPos );
const Point& GetPos() const { return maPos; }
- void SetOffsetY( long mnOffsetY = 0 );
long GetOffsetY() const { return mnOffsetY; }
void SetSize( const Size& rNewSize );
const Size& GetSize() const { return maSize; }
void SetWidth( long nNewWidth );
long GetWidth() const { return maSize.Width(); }
- void SetHeight( long nNewHeight );
long GetHeight() const { return maSize.Height(); }
- void SetSlant( long nSlant = 0 );
long GetSlant() const { return mnSlant; }
void SetOrientation( short nOrientation = 0 );
diff --git a/vcl/inc/vcl/floatwin.hxx b/vcl/inc/vcl/floatwin.hxx
index e6a5b58eea32..6fc957f4e5fc 100644
--- a/vcl/inc/vcl/floatwin.hxx
+++ b/vcl/inc/vcl/floatwin.hxx
@@ -142,7 +142,6 @@ public:
void StartPopupMode( ToolBox* pBox, sal_uLong nFlags = 0 );
void EndPopupMode( sal_uInt16 nFlags = 0 );
void AddPopupModeWindow( Window* pWindow );
- void RemovePopupModeWindow( Window* pWindow );
sal_uLong GetPopupModeFlags() const { return mnPopupModeFlags; }
void SetPopupModeFlags( sal_uLong nFlags ) { mnPopupModeFlags = nFlags; }
sal_Bool IsInPopupMode() const { return mbPopupMode; }
diff --git a/vcl/source/fontsubset/cff.cxx b/vcl/source/fontsubset/cff.cxx
index b6516fcc624b..231fe4e5fb51 100644
--- a/vcl/source/fontsubset/cff.cxx
+++ b/vcl/source/fontsubset/cff.cxx
@@ -453,7 +453,6 @@ public: // TODO: is public really needed?
void addHints( bool bVerticalHints);
int getHorzHintCount( void) const { return (mnHorzHintSize/2);}
int getVertHintCount( void) const { return (mnHintSize-mnHorzHintSize)/2;}
- void getHintPair( int nIndex, ValType* nMin, ValType* nEnd) const;
// accessing other charstring specifics
bool hasCharWidth( void) const { return (maCharWidth > 0);}
@@ -582,18 +581,6 @@ void CffSubsetterContext::addHints( bool bVerticalHints)
// --------------------------------------------------------------------
-void CffSubsetterContext::getHintPair( int nIndex, ValType* pMin, ValType* pEnd) const
-{
- nIndex *= 2;
- assert( nIndex < mnHintSize);
- assert( nIndex >= 0);
- const ValType* pHint = &mnHintStack[ nIndex ];
- *pMin = pHint[0];
- *pEnd = pHint[1];
-}
-
-// --------------------------------------------------------------------
-
void CffSubsetterContext::setCharStringType( int nVal)
{
switch( nVal) {
diff --git a/vcl/source/gdi/bitmap.cxx b/vcl/source/gdi/bitmap.cxx
index e2ab338e66b0..46be1f542e3b 100644
--- a/vcl/source/gdi/bitmap.cxx
+++ b/vcl/source/gdi/bitmap.cxx
@@ -293,20 +293,6 @@ Size Bitmap::GetSizePixel() const
}
// ------------------------------------------------------------------
-void Bitmap::SetSizePixel( const Size& rNewSize )
-{
- Scale( rNewSize );
-}
-
-// ------------------------------------------------------------------
-
-Size Bitmap::GetSourceSizePixel() const
-{
- return( mpImpBmp ? mpImpBmp->ImplGetSourceSize() : Size() );
-}
-
-// ------------------------------------------------------------------
-
void Bitmap::SetSourceSizePixel( const Size& rSize)
{
if( mpImpBmp )
diff --git a/vcl/source/gdi/bmpacc.cxx b/vcl/source/gdi/bmpacc.cxx
index 03b29fcbc965..43ebf5d95d1b 100644
--- a/vcl/source/gdi/bmpacc.cxx
+++ b/vcl/source/gdi/bmpacc.cxx
@@ -301,29 +301,6 @@ void BitmapReadAccess::ImplZeroInitUnusedBits()
// ------------------------------------------------------------------
-void BitmapReadAccess::Flush()
-{
- ImplDestroy();
-}
-
-// ------------------------------------------------------------------
-
-void BitmapReadAccess::ReAccess( sal_Bool bModify )
-{
- const ImpBitmap* pImpBmp = maBitmap.ImplGetImpBitmap();
-
- DBG_ASSERT( !mpBuffer, "No ReAccess possible while bitmap is being accessed!" );
- DBG_ASSERT( pImpBmp && ( pImpBmp->ImplGetRefCount() > 1UL ), "Accessed bitmap does not exist anymore!" );
-
- if( !mpBuffer && pImpBmp && ( pImpBmp->ImplGetRefCount() > 1UL ) )
- {
- mbModify = bModify;
- ImplCreate( maBitmap );
- }
-}
-
-// ------------------------------------------------------------------
-
sal_uInt16 BitmapReadAccess::GetBestPaletteIndex( const BitmapColor& rBitmapColor ) const
{
return( HasPalette() ? mpBuffer->maPalette.GetBestIndex( rBitmapColor ) : 0 );
diff --git a/vcl/source/gdi/bmpacc3.cxx b/vcl/source/gdi/bmpacc3.cxx
index 39d57a05cb84..9f07c4632ac3 100644
--- a/vcl/source/gdi/bmpacc3.cxx
+++ b/vcl/source/gdi/bmpacc3.cxx
@@ -42,14 +42,6 @@
// - BitmapWriteAccess -
// ---------------------
-void BitmapWriteAccess::SetLineColor()
-{
- delete mpLineColor;
- mpLineColor = NULL;
-}
-
-// ------------------------------------------------------------------
-
void BitmapWriteAccess::SetLineColor( const Color& rColor )
{
delete mpLineColor;
@@ -62,28 +54,6 @@ void BitmapWriteAccess::SetLineColor( const Color& rColor )
// ------------------------------------------------------------------
-Color BitmapWriteAccess::GetLineColor() const
-{
- Color aRet;
-
- if( mpLineColor )
- aRet = (const Color&) *mpLineColor;
- else
- aRet.SetTransparency( 255 );
-
- return aRet;
-}
-
-// ------------------------------------------------------------------
-
-void BitmapWriteAccess::SetFillColor()
-{
- delete mpFillColor;
- mpFillColor = NULL;
-}
-
-// ------------------------------------------------------------------
-
void BitmapWriteAccess::SetFillColor( const Color& rColor )
{
delete mpFillColor;
@@ -96,20 +66,6 @@ void BitmapWriteAccess::SetFillColor( const Color& rColor )
// ------------------------------------------------------------------
-Color BitmapWriteAccess::GetFillColor() const
-{
- Color aRet;
-
- if( mpFillColor )
- aRet = (const Color&) *mpFillColor;
- else
- aRet.SetTransparency( 255 );
-
- return aRet;
-}
-
-// ------------------------------------------------------------------
-
void BitmapWriteAccess::Erase( const Color& rColor )
{
// convert the color format from RGB to palette index if needed
@@ -387,30 +343,4 @@ void BitmapWriteAccess::FillPolyPolygon( const PolyPolygon& rPolyPoly )
}
}
-// ------------------------------------------------------------------
-
-void BitmapWriteAccess::DrawPolyPolygon( const PolyPolygon& rPolyPoly )
-{
- if( mpFillColor )
- FillPolyPolygon( rPolyPoly );
-
- if( mpLineColor && ( !mpFillColor || ( *mpFillColor != *mpLineColor ) ) )
- {
- for( sal_uInt16 n = 0, nCount = rPolyPoly.Count(); n < nCount; )
- {
- const Polygon& rPoly = rPolyPoly[ n++ ];
- const sal_uInt16 nSize = rPoly.GetSize();
-
- if( nSize )
- {
- for( sal_uInt16 i = 0, nSize1 = nSize - 1; i < nSize1; i++ )
- DrawLine( rPoly[ i ], rPoly[ i + 1 ] );
-
- if( rPoly[ nSize - 1 ] != rPoly[ 0 ] )
- DrawLine( rPoly[ nSize - 1 ], rPoly[ 0 ] );
- }
- }
- }
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/source/window/cursor.cxx b/vcl/source/window/cursor.cxx
index 89bfe4f2d067..cc55eaab351c 100644
--- a/vcl/source/window/cursor.cxx
+++ b/vcl/source/window/cursor.cxx
@@ -380,17 +380,6 @@ void Cursor::SetPos( const Point& rPoint )
// -----------------------------------------------------------------------
-void Cursor::SetOffsetY( long nNewOffsetY )
-{
- if ( mnOffsetY != nNewOffsetY )
- {
- mnOffsetY = nNewOffsetY;
- ImplNew();
- }
-}
-
-// -----------------------------------------------------------------------
-
void Cursor::SetSize( const Size& rSize )
{
if ( maSize != rSize )
@@ -413,28 +402,6 @@ void Cursor::SetWidth( long nNewWidth )
// -----------------------------------------------------------------------
-void Cursor::SetHeight( long nNewHeight )
-{
- if ( maSize.Height() != nNewHeight )
- {
- maSize.Height() = nNewHeight;
- ImplNew();
- }
-}
-
-// -----------------------------------------------------------------------
-
-void Cursor::SetSlant( long nNewSlant )
-{
- if ( mnSlant != nNewSlant )
- {
- mnSlant = nNewSlant;
- ImplNew();
- }
-}
-
-// -----------------------------------------------------------------------
-
void Cursor::SetOrientation( short nNewOrientation )
{
if ( mnOrientation != nNewOrientation )
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index 72847ab17bc7..15a74d952425 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -878,13 +878,4 @@ void FloatingWindow::AddPopupModeWindow( Window* pWindow )
mpFirstPopupModeWin = pWindow;
}
-// -----------------------------------------------------------------------
-
-void FloatingWindow::RemovePopupModeWindow( Window* pWindow )
-{
- // !!! bisher erst 1 Fenster und noch keine Liste
- if ( mpFirstPopupModeWin == pWindow )
- mpFirstPopupModeWin = NULL;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */