summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev/xattr2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/xoutdev/xattr2.cxx')
-rw-r--r--svx/source/xoutdev/xattr2.cxx655
1 files changed, 9 insertions, 646 deletions
diff --git a/svx/source/xoutdev/xattr2.cxx b/svx/source/xoutdev/xattr2.cxx
index 36c42ee191..fe303bed81 100644
--- a/svx/source/xoutdev/xattr2.cxx
+++ b/svx/source/xoutdev/xattr2.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -54,10 +55,6 @@ TYPEINIT1_AUTOFACTORY(XLineTransparenceItem, SfxUInt16Item);
|*
|* XLineTransparenceItem::XLineTransparenceItem(USHORT)
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
XLineTransparenceItem::XLineTransparenceItem(USHORT nLineTransparence) :
@@ -69,10 +66,6 @@ XLineTransparenceItem::XLineTransparenceItem(USHORT nLineTransparence) :
|*
|* XLineTransparenceItem::XLineTransparenceItem(SvStream& rIn)
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
XLineTransparenceItem::XLineTransparenceItem(SvStream& rIn) :
@@ -84,10 +77,6 @@ XLineTransparenceItem::XLineTransparenceItem(SvStream& rIn) :
|*
|* XLineTransparenceItem::Clone(SfxItemPool* pPool) const
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
SfxPoolItem* XLineTransparenceItem::Clone(SfxItemPool* /*pPool*/) const
@@ -99,10 +88,6 @@ SfxPoolItem* XLineTransparenceItem::Clone(SfxItemPool* /*pPool*/) const
|*
|* SfxPoolItem* XLineTransparenceItem::Create(SvStream& rIn, USHORT nVer) const
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
SfxPoolItem* XLineTransparenceItem::Create(SvStream& rIn, USHORT /*nVer*/) const
@@ -238,7 +223,7 @@ SfxItemPresentation XLineJointItem::GetPresentation( SfxItemPresentation ePres,
// -----------------------------------------------------------------------------
-sal_Bool XLineJointItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/) const
+bool XLineJointItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/) const
{
::com::sun::star::drawing::LineJoint eJoint = ::com::sun::star::drawing::LineJoint_NONE;
@@ -263,12 +248,12 @@ sal_Bool XLineJointItem::QueryValue( ::com::sun::star::uno::Any& rVal, BYTE /*nM
}
rVal <<= eJoint;
- return sal_True;
+ return true;
}
// -----------------------------------------------------------------------------
-BOOL XLineJointItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/)
+bool XLineJointItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nMemberId*/)
{
XLineJoint eJoint = XLINEJOINT_NONE;
::com::sun::star::drawing::LineJoint eUnoJoint;
@@ -278,7 +263,7 @@ BOOL XLineJointItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nM
// also try an int (for Basic)
sal_Int32 nLJ = 0;
if(!(rVal >>= nLJ))
- return sal_False;
+ return false;
eUnoJoint = (::com::sun::star::drawing::LineJoint)nLJ;
}
@@ -302,7 +287,7 @@ BOOL XLineJointItem::PutValue( const ::com::sun::star::uno::Any& rVal, BYTE /*nM
SetValue( sal::static_int_cast< USHORT >( eJoint ) );
- return sal_True;
+ return true;
}
// -----------------------------------------------------------------------------
@@ -322,10 +307,6 @@ TYPEINIT1_AUTOFACTORY(XFillTransparenceItem, SfxUInt16Item);
|*
|* XFillTransparenceItem::XFillTransparenceItem(USHORT)
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
XFillTransparenceItem::XFillTransparenceItem(USHORT nFillTransparence) :
@@ -337,10 +318,6 @@ XFillTransparenceItem::XFillTransparenceItem(USHORT nFillTransparence) :
|*
|* XFillTransparenceItem::XFillTransparenceItem(SvStream& rIn)
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
XFillTransparenceItem::XFillTransparenceItem(SvStream& rIn) :
@@ -352,10 +329,6 @@ XFillTransparenceItem::XFillTransparenceItem(SvStream& rIn) :
|*
|* XFillTransparenceItem::Clone(SfxItemPool* pPool) const
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
SfxPoolItem* XFillTransparenceItem::Clone(SfxItemPool* /*pPool*/) const
@@ -367,10 +340,6 @@ SfxPoolItem* XFillTransparenceItem::Clone(SfxItemPool* /*pPool*/) const
|*
|* SfxPoolItem* XFillTransparenceItem::Create(SvStream& rIn, USHORT nVer) const
|*
-|* Beschreibung
-|* Ersterstellung 07.11.95 KA
-|* Letzte Aenderung 07.11.95 KA
-|*
*************************************************************************/
SfxPoolItem* XFillTransparenceItem::Create(SvStream& rIn, USHORT /*nVer*/) const
@@ -415,10 +384,6 @@ TYPEINIT1_AUTOFACTORY(XFormTextShadowTranspItem, SfxUInt16Item);
|*
|* XFormTextShadowTranspItem::XFormTextShadowTranspItem(USHORT)
|*
-|* Beschreibung
-|* Ersterstellung 09.11.95 KA
-|* Letzte Aenderung 09.11.95 KA
-|*
*************************************************************************/
XFormTextShadowTranspItem::XFormTextShadowTranspItem(USHORT nShdwTransparence) :
@@ -430,10 +395,6 @@ XFormTextShadowTranspItem::XFormTextShadowTranspItem(USHORT nShdwTransparence) :
|*
|* XFormTextShadowTranspItem::XFormTextShadowTranspItem(SvStream& rIn)
|*
-|* Beschreibung
-|* Ersterstellung 09.11.95 KA
-|* Letzte Aenderung 09.11.95 KA
-|*
*************************************************************************/
XFormTextShadowTranspItem::XFormTextShadowTranspItem(SvStream& rIn) :
@@ -445,10 +406,6 @@ XFormTextShadowTranspItem::XFormTextShadowTranspItem(SvStream& rIn) :
|*
|* XFormTextShadowTranspItem::Clone(SfxItemPool* pPool) const
|*
-|* Beschreibung
-|* Ersterstellung 09.11.95 KA
-|* Letzte Aenderung 09.11.95 KA
-|*
*************************************************************************/
SfxPoolItem* XFormTextShadowTranspItem::Clone(SfxItemPool* /*pPool*/) const
@@ -460,10 +417,6 @@ SfxPoolItem* XFormTextShadowTranspItem::Clone(SfxItemPool* /*pPool*/) const
|*
|* SfxPoolItem* XFormTextShadowTranspItem::Create(SvStream& rIn, USHORT nVer) const
|*
-|* Beschreibung
-|* Ersterstellung 09.11.95 KA
-|* Letzte Aenderung 09.11.95 KA
-|*
*************************************************************************/
SfxPoolItem* XFormTextShadowTranspItem::Create(SvStream& rIn, USHORT /*nVer*/) const
@@ -481,10 +434,6 @@ TYPEINIT1_AUTOFACTORY(XGradientStepCountItem, SfxUInt16Item);
|*
|* XGradientStepCountItem::XGradientStepCountItem( USHORT )
|*
-|* Beschreibung
-|* Ersterstellung 23.01.96 KA
-|* Letzte Aenderung 23.01.96 KA
-|*
*************************************************************************/
XGradientStepCountItem::XGradientStepCountItem( USHORT nStepCount ) :
@@ -496,10 +445,6 @@ XGradientStepCountItem::XGradientStepCountItem( USHORT nStepCount ) :
|*
|* XGradientStepCountItem::XGradientStepCountItem( SvStream& rIn )
|*
-|* Beschreibung
-|* Ersterstellung 23.01.96 KA
-|* Letzte Aenderung 23.01.96 KA
-|*
*************************************************************************/
XGradientStepCountItem::XGradientStepCountItem( SvStream& rIn ) :
@@ -511,10 +456,6 @@ XGradientStepCountItem::XGradientStepCountItem( SvStream& rIn ) :
|*
|* XGradientStepCountItem::Clone( SfxItemPool* pPool ) const
|*
-|* Beschreibung
-|* Ersterstellung 23.01.96 KA
-|* Letzte Aenderung 23.01.96 KA
-|*
*************************************************************************/
SfxPoolItem* XGradientStepCountItem::Clone( SfxItemPool* /*pPool*/) const
@@ -526,10 +467,6 @@ SfxPoolItem* XGradientStepCountItem::Clone( SfxItemPool* /*pPool*/) const
|*
|* SfxPoolItem* XGradientStepCountItem::Create(SvStream& rIn, USHORT nVer) const
|*
-|* Beschreibung
-|* Ersterstellung 23.01.96 KA
-|* Letzte Aenderung 23.01.96 KA
-|*
*************************************************************************/
SfxPoolItem* XGradientStepCountItem::Create(SvStream& rIn, USHORT /*nVer*/) const
@@ -570,80 +507,26 @@ SfxItemPresentation XGradientStepCountItem::GetPresentation
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpTileItem, SfxBoolItem );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpTileItem::XFillBmpTileItem( BOOL bTile ) :
SfxBoolItem( XATTR_FILLBMP_TILE, bTile )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpTileItem::XFillBmpTileItem( SvStream& rIn ) :
SfxBoolItem( XATTR_FILLBMP_TILE, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpTileItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpTileItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpTileItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpTileItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpTileItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -672,80 +555,26 @@ SfxItemPresentation XFillBmpTileItem::GetPresentation
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpPosItem, SfxEnumItem );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpPosItem::XFillBmpPosItem( RECT_POINT eRP ) :
SfxEnumItem( XATTR_FILLBMP_POS, sal::static_int_cast< USHORT >( eRP ) )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpPosItem::XFillBmpPosItem( SvStream& rIn ) :
SfxEnumItem( XATTR_FILLBMP_POS, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpPosItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpPosItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpPosItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpPosItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpPosItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -768,12 +597,6 @@ SfxItemPresentation XFillBmpPosItem::GetPresentation
}
}
-/******************************************************************************
-|*
-|*
-|*
-\******************************************************************************/
-
USHORT XFillBmpPosItem::GetValueCount() const
{
return 9;
@@ -785,80 +608,26 @@ USHORT XFillBmpPosItem::GetValueCount() const
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpSizeXItem, SfxMetricItem );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpSizeXItem::XFillBmpSizeXItem( long nSizeX ) :
SfxMetricItem( XATTR_FILLBMP_SIZEX, nSizeX )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpSizeXItem::XFillBmpSizeXItem( SvStream& rIn ) :
SfxMetricItem( XATTR_FILLBMP_SIZEX, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpSizeXItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpSizeXItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpSizeXItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpSizeXItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpSizeXItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -881,16 +650,7 @@ SfxItemPresentation XFillBmpSizeXItem::GetPresentation
}
}
-
-/*************************************************************************
-|*
-|* Beschreibung
-|* Ersterstellung 05.11.96 KA
-|* Letzte Aenderung 05.11.96 KA
-|*
-\*************************************************************************/
-
-FASTBOOL XFillBmpSizeXItem::HasMetrics() const
+bool XFillBmpSizeXItem::HasMetrics() const
{
return GetValue() > 0L;
}
@@ -901,80 +661,26 @@ FASTBOOL XFillBmpSizeXItem::HasMetrics() const
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpSizeYItem, SfxMetricItem );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpSizeYItem::XFillBmpSizeYItem( long nSizeY ) :
SfxMetricItem( XATTR_FILLBMP_SIZEY, nSizeY )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpSizeYItem::XFillBmpSizeYItem( SvStream& rIn ) :
SfxMetricItem( XATTR_FILLBMP_SIZEY, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpSizeYItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpSizeYItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpSizeYItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpSizeYItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpSizeYItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -1000,13 +706,9 @@ SfxItemPresentation XFillBmpSizeYItem::GetPresentation
/*************************************************************************
|*
-|* Beschreibung
-|* Ersterstellung 05.11.96 KA
-|* Letzte Aenderung 05.11.96 KA
-|*
\*************************************************************************/
-FASTBOOL XFillBmpSizeYItem::HasMetrics() const
+bool XFillBmpSizeYItem::HasMetrics() const
{
return GetValue() > 0L;
}
@@ -1017,80 +719,26 @@ FASTBOOL XFillBmpSizeYItem::HasMetrics() const
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpSizeLogItem, SfxBoolItem );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpSizeLogItem::XFillBmpSizeLogItem( BOOL bLog ) :
SfxBoolItem( XATTR_FILLBMP_SIZELOG, bLog )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpSizeLogItem::XFillBmpSizeLogItem( SvStream& rIn ) :
SfxBoolItem( XATTR_FILLBMP_SIZELOG, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpSizeLogItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpSizeLogItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpSizeLogItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpSizeLogItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpSizeLogItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -1119,80 +767,26 @@ SfxItemPresentation XFillBmpSizeLogItem::GetPresentation
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpTileOffsetXItem, SfxUInt16Item );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpTileOffsetXItem::XFillBmpTileOffsetXItem( USHORT nOffX ) :
SfxUInt16Item( XATTR_FILLBMP_TILEOFFSETX, nOffX )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpTileOffsetXItem::XFillBmpTileOffsetXItem( SvStream& rIn ) :
SfxUInt16Item( XATTR_FILLBMP_TILEOFFSETX, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpTileOffsetXItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpTileOffsetXItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpTileOffsetXItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpTileOffsetXItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpTileOffsetXItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -1221,80 +815,26 @@ SfxItemPresentation XFillBmpTileOffsetXItem::GetPresentation
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpTileOffsetYItem, SfxUInt16Item );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpTileOffsetYItem::XFillBmpTileOffsetYItem( USHORT nOffY ) :
SfxUInt16Item( XATTR_FILLBMP_TILEOFFSETY, nOffY )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpTileOffsetYItem::XFillBmpTileOffsetYItem( SvStream& rIn ) :
SfxUInt16Item( XATTR_FILLBMP_TILEOFFSETY, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpTileOffsetYItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpTileOffsetYItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpTileOffsetYItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpTileOffsetYItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpTileOffsetYItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -1323,80 +863,26 @@ SfxItemPresentation XFillBmpTileOffsetYItem::GetPresentation
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpStretchItem, SfxBoolItem );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpStretchItem::XFillBmpStretchItem( BOOL bStretch ) :
SfxBoolItem( XATTR_FILLBMP_STRETCH, bStretch )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
XFillBmpStretchItem::XFillBmpStretchItem( SvStream& rIn ) :
SfxBoolItem( XATTR_FILLBMP_STRETCH, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpStretchItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpStretchItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpStretchItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpStretchItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung 28.02.96 KA
-|* Letzte Aenderung 28.02.96 KA
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpStretchItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -1425,80 +911,26 @@ SfxItemPresentation XFillBmpStretchItem::GetPresentation
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpPosOffsetXItem, SfxUInt16Item );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
XFillBmpPosOffsetXItem::XFillBmpPosOffsetXItem( USHORT nOffPosX ) :
SfxUInt16Item( XATTR_FILLBMP_POSOFFSETX, nOffPosX )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
XFillBmpPosOffsetXItem::XFillBmpPosOffsetXItem( SvStream& rIn ) :
SfxUInt16Item( XATTR_FILLBMP_POSOFFSETX, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpPosOffsetXItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpPosOffsetXItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpPosOffsetXItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpPosOffsetXItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpPosOffsetXItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -1527,80 +959,26 @@ SfxItemPresentation XFillBmpPosOffsetXItem::GetPresentation
//------------------------------
TYPEINIT1_AUTOFACTORY( XFillBmpPosOffsetYItem, SfxUInt16Item );
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
XFillBmpPosOffsetYItem::XFillBmpPosOffsetYItem( USHORT nOffPosY ) :
SfxUInt16Item( XATTR_FILLBMP_POSOFFSETY, nOffPosY )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
XFillBmpPosOffsetYItem::XFillBmpPosOffsetYItem( SvStream& rIn ) :
SfxUInt16Item( XATTR_FILLBMP_POSOFFSETY, rIn )
{
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpPosOffsetYItem::Clone( SfxItemPool* /*pPool*/) const
{
return new XFillBmpPosOffsetYItem( *this );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
SfxPoolItem* XFillBmpPosOffsetYItem::Create( SvStream& rIn, USHORT /*nVer*/) const
{
return new XFillBmpPosOffsetYItem( rIn );
}
-
-/*************************************************************************
-|*
-|*
-|*
-|* Beschreibung
-|* Ersterstellung KA 29.04.96
-|* Letzte Aenderung KA 29.04.96
-|*
-*************************************************************************/
-
SfxItemPresentation XFillBmpPosOffsetYItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -1632,10 +1010,6 @@ TYPEINIT1_AUTOFACTORY(XFillBackgroundItem, SfxBoolItem);
|*
|* XFillBackgroundItem::XFillBackgroundItem( BOOL )
|*
-|* Beschreibung
-|* Ersterstellung 19.11.96 KA
-|* Letzte Aenderung
-|*
*************************************************************************/
XFillBackgroundItem::XFillBackgroundItem( BOOL bFill ) :
@@ -1647,10 +1021,6 @@ XFillBackgroundItem::XFillBackgroundItem( BOOL bFill ) :
|*
|* XFillBackgroundItem::XFillBackgroundItem( SvStream& rIn )
|*
-|* Beschreibung
-|* Ersterstellung 23.01.96 KA
-|* Letzte Aenderung 23.01.96 KA
-|*
*************************************************************************/
XFillBackgroundItem::XFillBackgroundItem( SvStream& rIn ) :
@@ -1662,10 +1032,6 @@ XFillBackgroundItem::XFillBackgroundItem( SvStream& rIn ) :
|*
|* XFillBackgroundItem::Clone( SfxItemPool* pPool ) const
|*
-|* Beschreibung
-|* Ersterstellung 23.01.96 KA
-|* Letzte Aenderung 23.01.96 KA
-|*
*************************************************************************/
SfxPoolItem* XFillBackgroundItem::Clone( SfxItemPool* /*pPool*/) const
@@ -1677,10 +1043,6 @@ SfxPoolItem* XFillBackgroundItem::Clone( SfxItemPool* /*pPool*/) const
|*
|* SfxPoolItem* XFillBackgroundItem::Create(SvStream& rIn, USHORT nVer) const
|*
-|* Beschreibung
-|* Ersterstellung 23.01.96 KA
-|* Letzte Aenderung 23.01.96 KA
-|*
*************************************************************************/
SfxPoolItem* XFillBackgroundItem::Create(SvStream& rIn, USHORT /*nVer*/) const
@@ -1710,3 +1072,4 @@ SfxItemPresentation XFillBackgroundItem::GetPresentation( SfxItemPresentation eP
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */