summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/graph.cxx
diff options
context:
space:
mode:
authorPhilipp Weissenbacher <p.weissenbacher@gmail.com>2013-03-26 19:11:33 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-26 20:06:14 +0000
commitd83c63bea70baf4b19b2a6a8bef96bb5e0e6f262 (patch)
treea2dde44f4607d7d41354d0c7c76064d1e6f13c63 /vcl/source/gdi/graph.cxx
parent488e6875e992e11601611a119476624822fc4635 (diff)
Translate German comments, fix some ws
Change-Id: Ic7cf80655e6520f09a0b63b7839e46ad50de8fb1 Reviewed-on: https://gerrit.libreoffice.org/3063 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'vcl/source/gdi/graph.cxx')
-rw-r--r--vcl/source/gdi/graph.cxx143
1 files changed, 5 insertions, 138 deletions
diff --git a/vcl/source/gdi/graph.cxx b/vcl/source/gdi/graph.cxx
index fcfaf6183aa6..464cb625ae06 100644
--- a/vcl/source/gdi/graph.cxx
+++ b/vcl/source/gdi/graph.cxx
@@ -32,10 +32,6 @@
using namespace ::com::sun::star;
-// -----------------------
-// - Default-Drawmethode -
-// -----------------------
-
static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText,
Font* pFont, const Bitmap* pBitmap, const BitmapEx* pBitmapEx,
const Point& rDestPt, const Size& rDestSize )
@@ -51,7 +47,7 @@ static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText,
pOutDev->SetFillColor();
- // Auf dem Drucker ein schwarzes Rechteck und auf dem Bildschirm eins mit 3D-Effekt
+ // On the printer a black rectangle and on the screen one with 3D effect
if ( pOutDev->GetOutDevType() == OUTDEV_PRINTER )
pOutDev->SetLineColor( COL_BLACK );
else
@@ -112,10 +108,10 @@ static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText,
long nTextWidth = pOutDev->GetTextWidth( *pText );
if ( nTextHeight )
{
- // Die N"aherung ber"ucksichtigt keine Ungenauigkeiten durch
- // Wortumbr"uche
+ // The approximation does not respect imprecisions caused
+ // by word wraps
long nLines = aSize.Height() / nTextHeight;
- long nWidth = aSize.Width() * nLines; // N"aherung!!!
+ long nWidth = aSize.Width() * nLines; // Approximation!!!
if ( nTextWidth <= nWidth || aSz.Height() <= nThreshold )
{
@@ -165,8 +161,7 @@ static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText,
}
}
- // Falls die Default-Graphik keinen Inhalt hat,
- // malen wir ein rotes Kreuz
+ // If the default graphic does not have content, we draw a red rectangle
if( !bFilled )
{
aBorderRect.Left()++;
@@ -182,21 +177,13 @@ static void ImplDrawDefault( OutputDevice* pOutDev, const OUString* pText,
pOutDev->Pop();
}
-// -----------
-// - Graphic -
-// -----------
-
TYPEINIT1_AUTOFACTORY( Graphic, SvDataCopyStream );
-// ------------------------------------------------------------------------
-
Graphic::Graphic()
{
mpImpGraphic = new ImpGraphic;
}
-// ------------------------------------------------------------------------
-
Graphic::Graphic( const Graphic& rGraphic ) :
SvDataCopyStream()
{
@@ -209,43 +196,31 @@ SvDataCopyStream()
}
}
-// ------------------------------------------------------------------------
-
Graphic::Graphic( const Bitmap& rBmp )
{
mpImpGraphic = new ImpGraphic( rBmp );
}
-// ------------------------------------------------------------------------
-
Graphic::Graphic( const BitmapEx& rBmpEx )
{
mpImpGraphic = new ImpGraphic( rBmpEx );
}
-// ------------------------------------------------------------------------
-
Graphic::Graphic(const SvgDataPtr& rSvgDataPtr)
{
mpImpGraphic = new ImpGraphic(rSvgDataPtr);
}
-// ------------------------------------------------------------------------
-
Graphic::Graphic( const Animation& rAnimation )
{
mpImpGraphic = new ImpGraphic( rAnimation );
}
-// ------------------------------------------------------------------------
-
Graphic::Graphic( const GDIMetaFile& rMtf )
{
mpImpGraphic = new ImpGraphic( rMtf );
}
-// ------------------------------------------------------------------------
-
Graphic::Graphic( const ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic >& rxGraphic )
{
uno::Reference< lang::XUnoTunnel > xTunnel( rxGraphic, uno::UNO_QUERY );
@@ -268,8 +243,6 @@ Graphic::Graphic( const ::com::sun::star::uno::Reference< ::com::sun::star::grap
mpImpGraphic = new ImpGraphic;
}
-// ------------------------------------------------------------------------
-
Graphic::~Graphic()
{
if( mpImpGraphic->mnRefCount == 1UL )
@@ -278,8 +251,6 @@ Graphic::~Graphic()
mpImpGraphic->mnRefCount--;
}
-// ------------------------------------------------------------------------
-
void Graphic::ImplTestRefCount()
{
if( mpImpGraphic->mnRefCount > 1UL )
@@ -289,8 +260,6 @@ void Graphic::ImplTestRefCount()
}
}
-// ------------------------------------------------------------------------
-
Graphic& Graphic::operator=( const Graphic& rGraphic )
{
if( &rGraphic != this )
@@ -320,136 +289,98 @@ Graphic& Graphic::operator=( const Graphic& rGraphic )
return *this;
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::operator==( const Graphic& rGraphic ) const
{
return( *mpImpGraphic == *rGraphic.mpImpGraphic );
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::operator!=( const Graphic& rGraphic ) const
{
return( *mpImpGraphic != *rGraphic.mpImpGraphic );
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::operator!() const
{
return( GRAPHIC_NONE == mpImpGraphic->ImplGetType() );
}
-// ------------------------------------------------------------------------
-
void Graphic::Load( SvStream& rIStm )
{
rIStm >> *this;
}
-// ------------------------------------------------------------------------
-
void Graphic::Save( SvStream& rOStm )
{
rOStm << *this;
}
-// ------------------------------------------------------------------------
-
void Graphic::Assign( const SvDataCopyStream& rCopyStream )
{
*this = (const Graphic& ) rCopyStream;
}
-// ------------------------------------------------------------------------
-
void Graphic::Clear()
{
ImplTestRefCount();
mpImpGraphic->ImplClear();
}
-// ------------------------------------------------------------------------
-
GraphicType Graphic::GetType() const
{
return mpImpGraphic->ImplGetType();
}
-// ------------------------------------------------------------------------
-
void Graphic::SetDefaultType()
{
ImplTestRefCount();
mpImpGraphic->ImplSetDefaultType();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::IsSupportedGraphic() const
{
return mpImpGraphic->ImplIsSupportedGraphic();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::IsTransparent() const
{
return mpImpGraphic->ImplIsTransparent();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::IsAlpha() const
{
return mpImpGraphic->ImplIsAlpha();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::IsAnimated() const
{
return mpImpGraphic->ImplIsAnimated();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::IsEPS() const
{
return mpImpGraphic->ImplIsEPS();
}
-// ------------------------------------------------------------------------
-
Bitmap Graphic::GetBitmap(const GraphicConversionParameters& rParameters) const
{
return mpImpGraphic->ImplGetBitmap(rParameters);
}
-// ------------------------------------------------------------------------
-
BitmapEx Graphic::GetBitmapEx(const GraphicConversionParameters& rParameters) const
{
return mpImpGraphic->ImplGetBitmapEx(rParameters);
}
-// ------------------------------------------------------------------------
-
Animation Graphic::GetAnimation() const
{
return mpImpGraphic->ImplGetAnimation();
}
-// ------------------------------------------------------------------------
-
const GDIMetaFile& Graphic::GetGDIMetaFile() const
{
return mpImpGraphic->ImplGetGDIMetaFile();
}
-// ------------------------------------------------------------------------
-
uno::Reference< graphic::XGraphic > Graphic::GetXGraphic() const
{
uno::Reference< graphic::XGraphic > xRet;
@@ -471,38 +402,28 @@ uno::Reference< graphic::XGraphic > Graphic::GetXGraphic() const
return xRet;
}
-// ------------------------------------------------------------------------
-
Size Graphic::GetPrefSize() const
{
return mpImpGraphic->ImplGetPrefSize();
}
-// ------------------------------------------------------------------------
-
void Graphic::SetPrefSize( const Size& rPrefSize )
{
ImplTestRefCount();
mpImpGraphic->ImplSetPrefSize( rPrefSize );
}
-// ------------------------------------------------------------------------
-
MapMode Graphic::GetPrefMapMode() const
{
return mpImpGraphic->ImplGetPrefMapMode();
}
-// ------------------------------------------------------------------------
-
void Graphic::SetPrefMapMode( const MapMode& rPrefMapMode )
{
ImplTestRefCount();
mpImpGraphic->ImplSetPrefMapMode( rPrefMapMode );
}
-// ------------------------------------------------------------------
-
Size Graphic::GetSizePixel( const OutputDevice* pRefDevice ) const
{
Size aRet;
@@ -515,22 +436,16 @@ Size Graphic::GetSizePixel( const OutputDevice* pRefDevice ) const
return aRet;
}
-// ------------------------------------------------------------------
-
sal_uLong Graphic::GetSizeBytes() const
{
return mpImpGraphic->ImplGetSizeBytes();
}
-// ------------------------------------------------------------------------
-
void Graphic::Draw( OutputDevice* pOutDev, const Point& rDestPt ) const
{
mpImpGraphic->ImplDraw( pOutDev, rDestPt );
}
-// ------------------------------------------------------------------------
-
void Graphic::Draw( OutputDevice* pOutDev,
const Point& rDestPt, const Size& rDestSz ) const
{
@@ -540,8 +455,6 @@ void Graphic::Draw( OutputDevice* pOutDev,
mpImpGraphic->ImplDraw( pOutDev, rDestPt, rDestSz );
}
-// ------------------------------------------------------------------------
-
void Graphic::DrawEx( OutputDevice* pOutDev, const OUString& rText,
Font& rFont, const BitmapEx& rBitmap,
const Point& rDestPt, const Size& rDestSz )
@@ -549,8 +462,6 @@ void Graphic::DrawEx( OutputDevice* pOutDev, const OUString& rText,
ImplDrawDefault( pOutDev, &rText, &rFont, NULL, &rBitmap, rDestPt, rDestSz );
}
-// ------------------------------------------------------------------------
-
void Graphic::StartAnimation( OutputDevice* pOutDev, const Point& rDestPt,
const Size& rDestSz, long nExtraData,
OutputDevice* pFirstFrameOutDev )
@@ -559,162 +470,118 @@ void Graphic::StartAnimation( OutputDevice* pOutDev, const Point& rDestPt,
mpImpGraphic->ImplStartAnimation( pOutDev, rDestPt, rDestSz, nExtraData, pFirstFrameOutDev );
}
-// ------------------------------------------------------------------------
-
void Graphic::StopAnimation( OutputDevice* pOutDev, long nExtraData )
{
ImplTestRefCount();
mpImpGraphic->ImplStopAnimation( pOutDev, nExtraData );
}
-// ------------------------------------------------------------------------
-
void Graphic::SetAnimationNotifyHdl( const Link& rLink )
{
mpImpGraphic->ImplSetAnimationNotifyHdl( rLink );
}
-// ------------------------------------------------------------------------
-
Link Graphic::GetAnimationNotifyHdl() const
{
return mpImpGraphic->ImplGetAnimationNotifyHdl();
}
-// ------------------------------------------------------------------------
-
sal_uLong Graphic::GetAnimationLoopCount() const
{
return mpImpGraphic->ImplGetAnimationLoopCount();
}
-// ------------------------------------------------------------------------
-
GraphicReader* Graphic::GetContext()
{
return mpImpGraphic->ImplGetContext();
}
-// ------------------------------------------------------------------------
-
void Graphic::SetContext( GraphicReader* pReader )
{
mpImpGraphic->ImplSetContext( pReader );
}
-// ------------------------------------------------------------------------
-
void Graphic::SetDocFileName( const String& rName, sal_uLong nFilePos )
{
mpImpGraphic->ImplSetDocFileName( rName, nFilePos );
}
-// ------------------------------------------------------------------------
-
const String& Graphic::GetDocFileName() const
{
return mpImpGraphic->ImplGetDocFileName();
}
-// ------------------------------------------------------------------------
-
sal_uLong Graphic::GetDocFilePos() const
{
return mpImpGraphic->ImplGetDocFilePos();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::SwapOut()
{
ImplTestRefCount();
return mpImpGraphic->ImplSwapOut();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::SwapOut( SvStream* pOStream )
{
ImplTestRefCount();
return mpImpGraphic->ImplSwapOut( pOStream );
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::SwapIn()
{
ImplTestRefCount();
return mpImpGraphic->ImplSwapIn();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::SwapIn( SvStream* pStrm )
{
ImplTestRefCount();
return mpImpGraphic->ImplSwapIn( pStrm );
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::IsSwapOut() const
{
return mpImpGraphic->ImplIsSwapOut();
}
-// ------------------------------------------------------------------------
-
void Graphic::SetLink( const GfxLink& rGfxLink )
{
ImplTestRefCount();
mpImpGraphic->ImplSetLink( rGfxLink );
}
-// ------------------------------------------------------------------------
-
GfxLink Graphic::GetLink() const
{
return mpImpGraphic->ImplGetLink();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::IsLink() const
{
return mpImpGraphic->ImplIsLink();
}
-// ------------------------------------------------------------------------
-
sal_uLong Graphic::GetChecksum() const
{
return mpImpGraphic->ImplGetChecksum();
}
-// ------------------------------------------------------------------------
-
sal_Bool Graphic::ExportNative( SvStream& rOStream ) const
{
return mpImpGraphic->ImplExportNative( rOStream );
}
-// ------------------------------------------------------------------------
-
SvStream& operator>>( SvStream& rIStream, Graphic& rGraphic )
{
rGraphic.ImplTestRefCount();
return rIStream >> *rGraphic.mpImpGraphic;
}
-// ------------------------------------------------------------------------
-
SvStream& operator<<( SvStream& rOStream, const Graphic& rGraphic )
{
return rOStream << *rGraphic.mpImpGraphic;
}
-// ------------------------------------------------------------------------
-
const SvgDataPtr& Graphic::getSvgData() const
{
return mpImpGraphic->getSvgData();