Files
libreoffice/sw/source/core/doc/tblafmt.cxx
Caolán McNamara c3f2401d49 reduce scope and replace some String::CreateFromAscii
Change-Id: I8c375e3bfbcd3d7046a8bdb1968934b7d7ca96f8
2012-06-21 15:07:52 +01:00

1256 lines
42 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <tools/resid.hxx>
#include <tools/stream.hxx>
#include <tools/shl.hxx>
#include <vcl/svapp.hxx>
#include <sfx2/docfile.hxx>
#include <svl/urihelper.hxx>
#include <svl/zforlist.hxx>
#include <svl/zformat.hxx>
#include <unotools/pathoptions.hxx>
#include <sfx2/app.hxx>
#include <svx/dialmgr.hxx>
#include <svx/dialogs.hrc>
#include <swtable.hxx>
#include <swtblfmt.hxx>
#include <com/sun/star/text/VertOrientation.hpp>
#include <swtypes.hxx>
#include <doc.hxx>
#include <poolfmt.hxx>
#include <tblafmt.hxx>
#include <cellatr.hxx>
#include <SwStyleNameMapper.hxx>
#include <hintids.hxx>
#include <fmtornt.hxx>
#include <editsh.hxx>
using ::editeng::SvxBorderLine;
// until SO5PF
const sal_uInt16 AUTOFORMAT_ID_X = 9501;
const sal_uInt16 AUTOFORMAT_ID_358 = 9601;
const sal_uInt16 AUTOFORMAT_DATA_ID_X = 9502;
// from SO5
//! In follow-up versions these IDs' values need to increase
const sal_uInt16 AUTOFORMAT_ID_504 = 9801;
const sal_uInt16 AUTOFORMAT_DATA_ID_504 = 9802;
const sal_uInt16 AUTOFORMAT_ID_552 = 9901;
const sal_uInt16 AUTOFORMAT_DATA_ID_552 = 9902;
// --- from 641 on: CJK and CTL font settings
const sal_uInt16 AUTOFORMAT_ID_641 = 10001;
const sal_uInt16 AUTOFORMAT_DATA_ID_641 = 10002;
// --- from 680/dr14 on: diagonal frame lines
const sal_uInt16 AUTOFORMAT_ID_680DR14 = 10011;
const sal_uInt16 AUTOFORMAT_DATA_ID_680DR14 = 10012;
// --- from 680/dr25 on: store strings as UTF-8
const sal_uInt16 AUTOFORMAT_ID_680DR25 = 10021;
const sal_uInt16 AUTOFORMAT_DATA_ID_680DR25 = 10022;
// --- from DEV300/overline2 on: overline
const sal_uInt16 AUTOFORMAT_ID_300OVRLN = 10031;
const sal_uInt16 AUTOFORMAT_DATA_ID_300OVRLN = 10032;
// --- Bug fix to fdo#31005: Table Autoformats does not save/apply all properties (Writer and Calc)
const sal_uInt16 AUTOFORMAT_ID_31005 = 10041;
const sal_uInt16 AUTOFORMAT_DATA_ID_31005 = 10042;
// current version
const sal_uInt16 AUTOFORMAT_ID = AUTOFORMAT_ID_31005;
const sal_uInt16 AUTOFORMAT_DATA_ID = AUTOFORMAT_DATA_ID_31005;
const sal_uInt16 AUTOFORMAT_FILE_VERSION= SOFFICE_FILEFORMAT_50;
SwBoxAutoFmt* SwTableAutoFmt::pDfltBoxAutoFmt = 0;
#define sAutoTblFmtName "autotbl.fmt"
namespace
{
/// Begins a writer-specific data block. Call before serializing any writer-specific properties.
sal_uInt64 BeginSwBlock(SvStream& rStream)
{
// We need to write down the offset of the end of the writer-specific data, so that
// calc can skip it. We'll only have that value after writing the data, so we
// write a placeholder value first, write the data, then jump back and write the
// real offset.
// Note that we explicitly use sal_uInt64 instead of sal_Size (which can be 32
// or 64 depending on platform) to ensure 64-bit portability on this front. I don't
// actually know if autotbl.fmt as a whole is portable, since that requires all serialization
// logic to be written with portability in mind.
sal_uInt64 whereToWriteEndOfSwBlock = rStream.Tell();
sal_uInt64 endOfSwBlock = 0;
rStream << endOfSwBlock;
return whereToWriteEndOfSwBlock;
}
/// Ends a writer-specific data block. Call after serializing writer-specific properties.
/// Closes a corresponding BeginSwBlock call.
void EndSwBlock(SvStream& rStream, sal_uInt64 whereToWriteEndOfSwBlock)
{
sal_uInt64 endOfSwBlock = rStream.Tell();
rStream.Seek(whereToWriteEndOfSwBlock);
rStream << endOfSwBlock;
rStream.Seek(endOfSwBlock);
}
/**
Helper class for writer-specific blocks. Begins a writer-specific block on construction,
and closes it on destruction.
See also: BeginSwBlock and EndSwBlock.
*/
class WriterSpecificAutoFormatBlock : ::boost::noncopyable
{
public:
WriterSpecificAutoFormatBlock(SvStream &rStream) : _rStream(rStream)
{
_whereToWriteEndOfBlock = BeginSwBlock(rStream);
}
~WriterSpecificAutoFormatBlock()
{
EndSwBlock(_rStream, _whereToWriteEndOfBlock);
}
private:
SvStream &_rStream;
sal_uInt64 _whereToWriteEndOfBlock;
};
/// Checks whether a writer-specific block exists (i.e. size is not zero)
sal_Bool WriterSpecificBlockExists(SvStream &stream)
{
sal_uInt64 endOfSwBlock = 0;
stream >> endOfSwBlock;
// end-of-block pointing to itself indicates a zero-size block.
return endOfSwBlock != stream.Tell();
}
}
// Struct with version numbers of the Items
struct SwAfVersions
{
public:
sal_uInt16 nFontVersion;
sal_uInt16 nFontHeightVersion;
sal_uInt16 nWeightVersion;
sal_uInt16 nPostureVersion;
sal_uInt16 nUnderlineVersion;
sal_uInt16 nOverlineVersion;
sal_uInt16 nCrossedOutVersion;
sal_uInt16 nContourVersion;
sal_uInt16 nShadowedVersion;
sal_uInt16 nColorVersion;
sal_uInt16 nBoxVersion;
sal_uInt16 nLineVersion;
sal_uInt16 nBrushVersion;
sal_uInt16 nAdjustVersion;
sal_uInt16 m_nTextOrientationVersion;
sal_uInt16 m_nVerticalAlignmentVersion;
sal_uInt16 nHorJustifyVersion;
sal_uInt16 nVerJustifyVersion;
sal_uInt16 nOrientationVersion;
sal_uInt16 nMarginVersion;
sal_uInt16 nBoolVersion;
sal_uInt16 nInt32Version;
sal_uInt16 nRotateModeVersion;
sal_uInt16 nNumFmtVersion;
SwAfVersions();
void Load( SvStream& rStream, sal_uInt16 nVer );
};
SwAfVersions::SwAfVersions() :
nFontVersion(0),
nFontHeightVersion(0),
nWeightVersion(0),
nPostureVersion(0),
nUnderlineVersion(0),
nOverlineVersion(0),
nCrossedOutVersion(0),
nContourVersion(0),
nShadowedVersion(0),
nColorVersion(0),
nBoxVersion(0),
nLineVersion(0),
nBrushVersion(0),
nAdjustVersion(0),
m_nTextOrientationVersion(0),
m_nVerticalAlignmentVersion(0),
nHorJustifyVersion(0),
nVerJustifyVersion(0),
nOrientationVersion(0),
nMarginVersion(0),
nBoolVersion(0),
nInt32Version(0),
nRotateModeVersion(0),
nNumFmtVersion(0)
{
}
void SwAfVersions::Load( SvStream& rStream, sal_uInt16 nVer )
{
rStream >> nFontVersion;
rStream >> nFontHeightVersion;
rStream >> nWeightVersion;
rStream >> nPostureVersion;
rStream >> nUnderlineVersion;
if ( nVer >= AUTOFORMAT_ID_300OVRLN )
rStream >> nOverlineVersion;
rStream >> nCrossedOutVersion;
rStream >> nContourVersion;
rStream >> nShadowedVersion;
rStream >> nColorVersion;
rStream >> nBoxVersion;
if ( nVer >= AUTOFORMAT_ID_680DR14 )
rStream >> nLineVersion;
rStream >> nBrushVersion;
rStream >> nAdjustVersion;
if (nVer >= AUTOFORMAT_ID_31005 && WriterSpecificBlockExists(rStream))
{
rStream >> m_nTextOrientationVersion;
rStream >> m_nVerticalAlignmentVersion;
}
rStream >> nHorJustifyVersion;
rStream >> nVerJustifyVersion;
rStream >> nOrientationVersion;
rStream >> nMarginVersion;
rStream >> nBoolVersion;
if ( nVer >= AUTOFORMAT_ID_504 )
{
rStream >> nInt32Version;
rStream >> nRotateModeVersion;
}
rStream >> nNumFmtVersion;
}
// ---------------------------------------------------------------------------
SwBoxAutoFmt::SwBoxAutoFmt()
: aFont( *(SvxFontItem*)GetDfltAttr( RES_CHRATR_FONT ) ),
aHeight( 240, 100, RES_CHRATR_FONTSIZE ),
aWeight( WEIGHT_NORMAL, RES_CHRATR_WEIGHT ),
aPosture( ITALIC_NONE, RES_CHRATR_POSTURE ),
aCJKFont( *(SvxFontItem*)GetDfltAttr( RES_CHRATR_CJK_FONT ) ),
aCJKHeight( 240, 100, RES_CHRATR_CJK_FONTSIZE ),
aCJKWeight( WEIGHT_NORMAL, RES_CHRATR_CJK_WEIGHT ),
aCJKPosture( ITALIC_NONE, RES_CHRATR_CJK_POSTURE ),
aCTLFont( *(SvxFontItem*)GetDfltAttr( RES_CHRATR_CTL_FONT ) ),
aCTLHeight( 240, 100, RES_CHRATR_CTL_FONTSIZE ),
aCTLWeight( WEIGHT_NORMAL, RES_CHRATR_CTL_WEIGHT ),
aCTLPosture( ITALIC_NONE, RES_CHRATR_CTL_POSTURE ),
aUnderline( UNDERLINE_NONE, RES_CHRATR_UNDERLINE ),
aOverline( UNDERLINE_NONE, RES_CHRATR_OVERLINE ),
aCrossedOut( STRIKEOUT_NONE, RES_CHRATR_CROSSEDOUT ),
aContour( sal_False, RES_CHRATR_CONTOUR ),
aShadowed( sal_False, RES_CHRATR_SHADOWED ),
aColor( RES_CHRATR_COLOR ),
aBox( RES_BOX ),
aTLBR( 0 ),
aBLTR( 0 ),
aBackground( RES_BACKGROUND ),
aAdjust( SVX_ADJUST_LEFT, RES_PARATR_ADJUST ),
m_aTextOrientation(FRMDIR_ENVIRONMENT, RES_FRAMEDIR),
m_aVerticalAlignment(0, com::sun::star::text::VertOrientation::NONE, com::sun::star::text::RelOrientation::FRAME),
aHorJustify( SVX_HOR_JUSTIFY_STANDARD, 0),
aVerJustify( SVX_VER_JUSTIFY_STANDARD, 0),
aStacked( 0 ),
aMargin( 0 ),
aLinebreak( 0 ),
aRotateAngle( 0 ),
// FIXME - add attribute IDs for the diagonal line items
// aTLBR( RES_... ),
// aBLTR( RES_... ),
aRotateMode( SVX_ROTATE_MODE_STANDARD, 0 )
{
eSysLanguage = eNumFmtLanguage = static_cast<LanguageType>(::GetAppLanguage());
aBox.SetDistance( 55 );
}
SwBoxAutoFmt::SwBoxAutoFmt( const SwBoxAutoFmt& rNew )
: aFont( rNew.aFont ),
aHeight( rNew.aHeight ),
aWeight( rNew.aWeight ),
aPosture( rNew.aPosture ),
aCJKFont( rNew.aCJKFont ),
aCJKHeight( rNew.aCJKHeight ),
aCJKWeight( rNew.aCJKWeight ),
aCJKPosture( rNew.aCJKPosture ),
aCTLFont( rNew.aCTLFont ),
aCTLHeight( rNew.aCTLHeight ),
aCTLWeight( rNew.aCTLWeight ),
aCTLPosture( rNew.aCTLPosture ),
aUnderline( rNew.aUnderline ),
aOverline( rNew.aOverline ),
aCrossedOut( rNew.aCrossedOut ),
aContour( rNew.aContour ),
aShadowed( rNew.aShadowed ),
aColor( rNew.aColor ),
aBox( rNew.aBox ),
aTLBR( rNew.aTLBR ),
aBLTR( rNew.aBLTR ),
aBackground( rNew.aBackground ),
aAdjust( rNew.aAdjust ),
m_aTextOrientation(rNew.m_aTextOrientation),
m_aVerticalAlignment(rNew.m_aVerticalAlignment),
aHorJustify( rNew.aHorJustify ),
aVerJustify( rNew.aVerJustify ),
aStacked( rNew.aStacked ),
aMargin( rNew.aMargin ),
aLinebreak( rNew.aLinebreak ),
aRotateAngle( rNew.aRotateAngle ),
aRotateMode( rNew.aRotateMode ),
sNumFmtString( rNew.sNumFmtString ),
eSysLanguage( rNew.eSysLanguage ),
eNumFmtLanguage( rNew.eNumFmtLanguage )
{
}
SwBoxAutoFmt::~SwBoxAutoFmt()
{
}
SwBoxAutoFmt& SwBoxAutoFmt::operator=( const SwBoxAutoFmt& rNew )
{
aFont = rNew.aFont;
aHeight = rNew.aHeight;
aWeight = rNew.aWeight;
aPosture = rNew.aPosture;
aCJKFont = rNew.aCJKFont;
aCJKHeight = rNew.aCJKHeight;
aCJKWeight = rNew.aCJKWeight;
aCJKPosture = rNew.aCJKPosture;
aCTLFont = rNew.aCTLFont;
aCTLHeight = rNew.aCTLHeight;
aCTLWeight = rNew.aCTLWeight;
aCTLPosture = rNew.aCTLPosture;
aUnderline = rNew.aUnderline;
aOverline = rNew.aOverline;
aCrossedOut = rNew.aCrossedOut;
aContour = rNew.aContour;
aShadowed = rNew.aShadowed;
aColor = rNew.aColor;
SetAdjust( rNew.aAdjust );
m_aTextOrientation = rNew.m_aTextOrientation;
m_aVerticalAlignment = rNew.m_aVerticalAlignment;
aBox = rNew.aBox;
aTLBR = rNew.aTLBR;
aBLTR = rNew.aBLTR;
aBackground = rNew.aBackground;
aHorJustify = rNew.aHorJustify;
aVerJustify = rNew.aVerJustify;
aStacked.SetValue( rNew.aStacked.GetValue() );
aMargin = rNew.aMargin;
aLinebreak.SetValue( rNew.aLinebreak.GetValue() );
aRotateAngle.SetValue( rNew.aRotateAngle.GetValue() );
aRotateMode.SetValue( rNew.aRotateMode.GetValue() );
sNumFmtString = rNew.sNumFmtString;
eSysLanguage = rNew.eSysLanguage;
eNumFmtLanguage = rNew.eNumFmtLanguage;
return *this;
}
#define READ( aItem, aItemType, nVers )\
pNew = aItem.Create(rStream, nVers ); \
aItem = *(aItemType*)pNew; \
delete pNew;
sal_Bool SwBoxAutoFmt::Load( SvStream& rStream, const SwAfVersions& rVersions, sal_uInt16 nVer )
{
SfxPoolItem* pNew;
SvxOrientationItem aOrientation( SVX_ORIENTATION_STANDARD, 0);
READ( aFont, SvxFontItem , rVersions.nFontVersion)
if( rStream.GetStreamCharSet() == aFont.GetCharSet() )
aFont.SetCharSet(::osl_getThreadTextEncoding());
READ( aHeight, SvxFontHeightItem , rVersions.nFontHeightVersion)
READ( aWeight, SvxWeightItem , rVersions.nWeightVersion)
READ( aPosture, SvxPostureItem , rVersions.nPostureVersion)
// --- from 641 on: CJK and CTL font settings
if( AUTOFORMAT_DATA_ID_641 <= nVer )
{
READ( aCJKFont, SvxFontItem , rVersions.nFontVersion)
READ( aCJKHeight, SvxFontHeightItem , rVersions.nFontHeightVersion)
READ( aCJKWeight, SvxWeightItem , rVersions.nWeightVersion)
READ( aCJKPosture, SvxPostureItem , rVersions.nPostureVersion)
READ( aCTLFont, SvxFontItem , rVersions.nFontVersion)
READ( aCTLHeight, SvxFontHeightItem , rVersions.nFontHeightVersion)
READ( aCTLWeight, SvxWeightItem , rVersions.nWeightVersion)
READ( aCTLPosture, SvxPostureItem , rVersions.nPostureVersion)
}
READ( aUnderline, SvxUnderlineItem , rVersions.nUnderlineVersion)
if( nVer >= AUTOFORMAT_DATA_ID_300OVRLN )
{
READ( aOverline, SvxOverlineItem , rVersions.nOverlineVersion)
}
READ( aCrossedOut, SvxCrossedOutItem , rVersions.nCrossedOutVersion)
READ( aContour, SvxContourItem , rVersions.nContourVersion)
READ( aShadowed, SvxShadowedItem , rVersions.nShadowedVersion)
READ( aColor, SvxColorItem , rVersions.nColorVersion)
READ( aBox, SvxBoxItem , rVersions.nBoxVersion)
// --- from 680/dr14 on: diagonal frame lines
if( nVer >= AUTOFORMAT_DATA_ID_680DR14 )
{
READ( aTLBR, SvxLineItem, rVersions.nLineVersion)
READ( aBLTR, SvxLineItem, rVersions.nLineVersion)
}
READ( aBackground, SvxBrushItem , rVersions.nBrushVersion)
pNew = aAdjust.Create(rStream, rVersions.nAdjustVersion );
SetAdjust( *(SvxAdjustItem*)pNew );
delete pNew;
if (nVer >= AUTOFORMAT_DATA_ID_31005 && WriterSpecificBlockExists(rStream))
{
READ(m_aTextOrientation, SvxFrameDirectionItem, rVersions.m_nTextOrientationVersion);
READ(m_aVerticalAlignment, SwFmtVertOrient, rVersions.m_nVerticalAlignmentVersion);
}
READ( aHorJustify, SvxHorJustifyItem , rVersions.nHorJustifyVersion)
READ( aVerJustify, SvxVerJustifyItem , rVersions.nVerJustifyVersion)
READ( aOrientation, SvxOrientationItem , rVersions.nOrientationVersion)
READ( aMargin, SvxMarginItem , rVersions.nMarginVersion)
pNew = aLinebreak.Create(rStream, rVersions.nBoolVersion );
aLinebreak.SetValue( ((SfxBoolItem*)pNew)->GetValue() );
delete pNew;
if ( nVer >= AUTOFORMAT_DATA_ID_504 )
{
pNew = aRotateAngle.Create( rStream, rVersions.nInt32Version );
aRotateAngle.SetValue( ((SfxInt32Item*)pNew)->GetValue() );
delete pNew;
pNew = aRotateMode.Create( rStream, rVersions.nRotateModeVersion );
aRotateMode.SetValue( ((SvxRotateModeItem*)pNew)->GetValue() );
delete pNew;
}
if( 0 == rVersions.nNumFmtVersion )
{
sal_uInt16 eSys, eLge;
// --- from 680/dr25 on: store strings as UTF-8
CharSet eCharSet = (nVer >= AUTOFORMAT_ID_680DR25) ? RTL_TEXTENCODING_UTF8 : rStream.GetStreamCharSet();
sNumFmtString = rStream.ReadUniOrByteString( eCharSet );
rStream >> eSys >> eLge;
eSysLanguage = (LanguageType) eSys;
eNumFmtLanguage = (LanguageType) eLge;
if ( eSysLanguage == LANGUAGE_SYSTEM ) // from old versions (Calc)
eSysLanguage = static_cast<LanguageType>(::GetAppLanguage());
}
aStacked.SetValue( aOrientation.IsStacked() );
aRotateAngle.SetValue( aOrientation.GetRotation( aRotateAngle.GetValue() ) );
return 0 == rStream.GetError();
}
sal_Bool SwBoxAutoFmt::Save( SvStream& rStream, sal_uInt16 fileVersion ) const
{
SvxOrientationItem aOrientation( aRotateAngle.GetValue(), aStacked.GetValue(), 0 );
aFont.Store( rStream, aFont.GetVersion(fileVersion) );
aHeight.Store( rStream, aHeight.GetVersion(fileVersion) );
aWeight.Store( rStream, aWeight.GetVersion(fileVersion) );
aPosture.Store( rStream, aPosture.GetVersion(fileVersion) );
aCJKFont.Store( rStream, aCJKFont.GetVersion(fileVersion) );
aCJKHeight.Store( rStream, aCJKHeight.GetVersion(fileVersion) );
aCJKWeight.Store( rStream, aCJKWeight.GetVersion(fileVersion) );
aCJKPosture.Store( rStream, aCJKPosture.GetVersion(fileVersion) );
aCTLFont.Store( rStream, aCTLFont.GetVersion(fileVersion) );
aCTLHeight.Store( rStream, aCTLHeight.GetVersion(fileVersion) );
aCTLWeight.Store( rStream, aCTLWeight.GetVersion(fileVersion) );
aCTLPosture.Store( rStream, aCTLPosture.GetVersion(fileVersion) );
aUnderline.Store( rStream, aUnderline.GetVersion(fileVersion) );
aOverline.Store( rStream, aOverline.GetVersion(fileVersion) );
aCrossedOut.Store( rStream, aCrossedOut.GetVersion(fileVersion) );
aContour.Store( rStream, aContour.GetVersion(fileVersion) );
aShadowed.Store( rStream, aShadowed.GetVersion(fileVersion) );
aColor.Store( rStream, aColor.GetVersion(fileVersion) );
aBox.Store( rStream, aBox.GetVersion(fileVersion) );
aTLBR.Store( rStream, aTLBR.GetVersion(fileVersion) );
aBLTR.Store( rStream, aBLTR.GetVersion(fileVersion) );
aBackground.Store( rStream, aBackground.GetVersion(fileVersion) );
aAdjust.Store( rStream, aAdjust.GetVersion(fileVersion) );
if (fileVersion >= SOFFICE_FILEFORMAT_50)
{
WriterSpecificAutoFormatBlock block(rStream);
m_aTextOrientation.Store(rStream, m_aTextOrientation.GetVersion(fileVersion));
m_aVerticalAlignment.Store(rStream, m_aVerticalAlignment.GetVersion(fileVersion));
}
aHorJustify.Store( rStream, aHorJustify.GetVersion(fileVersion) );
aVerJustify.Store( rStream, aVerJustify.GetVersion(fileVersion) );
aOrientation.Store( rStream, aOrientation.GetVersion(fileVersion) );
aMargin.Store( rStream, aMargin.GetVersion(fileVersion) );
aLinebreak.Store( rStream, aLinebreak.GetVersion(fileVersion) );
// Calc Rotation from SO5
aRotateAngle.Store( rStream, aRotateAngle.GetVersion(fileVersion) );
aRotateMode.Store( rStream, aRotateMode.GetVersion(fileVersion) );
// --- from 680/dr25 on: store strings as UTF-8
write_lenPrefixed_uInt8s_FromOUString<sal_uInt16>(rStream, sNumFmtString,
RTL_TEXTENCODING_UTF8);
rStream << (sal_uInt16)eSysLanguage << (sal_uInt16)eNumFmtLanguage;
return 0 == rStream.GetError();
}
sal_Bool SwBoxAutoFmt::SaveVersionNo( SvStream& rStream, sal_uInt16 fileVersion ) const
{
rStream << aFont.GetVersion( fileVersion );
rStream << aHeight.GetVersion( fileVersion );
rStream << aWeight.GetVersion( fileVersion );
rStream << aPosture.GetVersion( fileVersion );
rStream << aUnderline.GetVersion( fileVersion );
rStream << aOverline.GetVersion( fileVersion );
rStream << aCrossedOut.GetVersion( fileVersion );
rStream << aContour.GetVersion( fileVersion );
rStream << aShadowed.GetVersion( fileVersion );
rStream << aColor.GetVersion( fileVersion );
rStream << aBox.GetVersion( fileVersion );
rStream << aTLBR.GetVersion( fileVersion );
rStream << aBackground.GetVersion( fileVersion );
rStream << aAdjust.GetVersion( fileVersion );
if (fileVersion >= SOFFICE_FILEFORMAT_50)
{
WriterSpecificAutoFormatBlock block(rStream);
rStream << m_aTextOrientation.GetVersion(fileVersion);
rStream << m_aVerticalAlignment.GetVersion(fileVersion);
}
rStream << aHorJustify.GetVersion( fileVersion );
rStream << aVerJustify.GetVersion( fileVersion );
rStream << SvxOrientationItem(SVX_ORIENTATION_STANDARD, 0).GetVersion( fileVersion );
rStream << aMargin.GetVersion( fileVersion );
rStream << aLinebreak.GetVersion( fileVersion );
rStream << aRotateAngle.GetVersion( fileVersion );
rStream << aRotateMode.GetVersion( fileVersion );
rStream << (sal_uInt16)0; // NumberFormat
return 0 == rStream.GetError();
}
SwTableAutoFmt::SwTableAutoFmt( const String& rName )
: aName( rName )
, nStrResId( USHRT_MAX )
, m_aBreak( SVX_BREAK_NONE, RES_BREAK )
, m_aKeepWithNextPara( sal_False, RES_KEEP )
, m_aRepeatHeading( 0 )
, m_bLayoutSplit( sal_True )
, m_bRowSplit( sal_True )
, m_bCollapsingBorders(sal_True)
, m_aShadow( RES_SHADOW )
{
bInclFont = sal_True;
bInclJustify = sal_True;
bInclFrame = sal_True;
bInclBackground = sal_True;
bInclValueFormat = sal_True;
bInclWidthHeight = sal_True;
memset( aBoxAutoFmt, 0, sizeof( aBoxAutoFmt ) );
}
SwTableAutoFmt::SwTableAutoFmt( const SwTableAutoFmt& rNew )
: m_aBreak( rNew.m_aBreak )
, m_aKeepWithNextPara( sal_False, RES_KEEP )
, m_aShadow( RES_SHADOW )
{
for( sal_uInt8 n = 0; n < 16; ++n )
aBoxAutoFmt[ n ] = 0;
*this = rNew;
}
SwTableAutoFmt& SwTableAutoFmt::operator=( const SwTableAutoFmt& rNew )
{
for( sal_uInt8 n = 0; n < 16; ++n )
{
if( aBoxAutoFmt[ n ] )
delete aBoxAutoFmt[ n ];
SwBoxAutoFmt* pFmt = rNew.aBoxAutoFmt[ n ];
if( pFmt ) // if is set -> copy
aBoxAutoFmt[ n ] = new SwBoxAutoFmt( *pFmt );
else // else default
aBoxAutoFmt[ n ] = 0;
}
aName = rNew.aName;
nStrResId = rNew.nStrResId;
bInclFont = rNew.bInclFont;
bInclJustify = rNew.bInclJustify;
bInclFrame = rNew.bInclFrame;
bInclBackground = rNew.bInclBackground;
bInclValueFormat = rNew.bInclValueFormat;
bInclWidthHeight = rNew.bInclWidthHeight;
m_aBreak = rNew.m_aBreak;
m_aPageDesc = rNew.m_aPageDesc;
m_aKeepWithNextPara = rNew.m_aKeepWithNextPara;
m_aRepeatHeading = rNew.m_aRepeatHeading;
m_bLayoutSplit = rNew.m_bLayoutSplit;
m_bRowSplit = rNew.m_bRowSplit;
m_bCollapsingBorders = rNew.m_bCollapsingBorders;
m_aShadow = rNew.m_aShadow;
return *this;
}
SwTableAutoFmt::~SwTableAutoFmt()
{
SwBoxAutoFmt** ppFmt = aBoxAutoFmt;
for( sal_uInt8 n = 0; n < 16; ++n, ++ppFmt )
if( *ppFmt )
delete *ppFmt;
}
void SwTableAutoFmt::SetBoxFmt( const SwBoxAutoFmt& rNew, sal_uInt8 nPos )
{
OSL_ENSURE( nPos < 16, "wrong area" );
SwBoxAutoFmt* pFmt = aBoxAutoFmt[ nPos ];
if( pFmt ) // if is set -> copy
*aBoxAutoFmt[ nPos ] = rNew;
else // else set anew
aBoxAutoFmt[ nPos ] = new SwBoxAutoFmt( rNew );
}
const SwBoxAutoFmt& SwTableAutoFmt::GetBoxFmt( sal_uInt8 nPos ) const
{
OSL_ENSURE( nPos < 16, "wrong area" );
SwBoxAutoFmt* pFmt = aBoxAutoFmt[ nPos ];
if( pFmt ) // if is set -> copy
return *pFmt;
else // else return the default
{
// If it doesn't exist yet:
if( !pDfltBoxAutoFmt )
pDfltBoxAutoFmt = new SwBoxAutoFmt;
return *pDfltBoxAutoFmt;
}
}
void SwTableAutoFmt::UpdateFromSet( sal_uInt8 nPos,
const SfxItemSet& rSet,
UpdateFlags eFlags,
SvNumberFormatter* pNFmtr)
{
OSL_ENSURE( nPos < 16, "wrong area" );
SwBoxAutoFmt* pFmt = aBoxAutoFmt[ nPos ];
if( !pFmt ) // if is set -> copy
{
pFmt = new SwBoxAutoFmt;
aBoxAutoFmt[ nPos ] = pFmt;
}
if( UPDATE_CHAR & eFlags )
{
pFmt->SetFont( (SvxFontItem&)rSet.Get( RES_CHRATR_FONT ) );
pFmt->SetHeight( (SvxFontHeightItem&)rSet.Get( RES_CHRATR_FONTSIZE ) );
pFmt->SetWeight( (SvxWeightItem&)rSet.Get( RES_CHRATR_WEIGHT ) );
pFmt->SetPosture( (SvxPostureItem&)rSet.Get( RES_CHRATR_POSTURE ) );
pFmt->SetCJKFont( (SvxFontItem&)rSet.Get( RES_CHRATR_CJK_FONT ) );
pFmt->SetCJKHeight( (SvxFontHeightItem&)rSet.Get( RES_CHRATR_CJK_FONTSIZE ) );
pFmt->SetCJKWeight( (SvxWeightItem&)rSet.Get( RES_CHRATR_CJK_WEIGHT ) );
pFmt->SetCJKPosture( (SvxPostureItem&)rSet.Get( RES_CHRATR_CJK_POSTURE ) );
pFmt->SetCTLFont( (SvxFontItem&)rSet.Get( RES_CHRATR_CTL_FONT ) );
pFmt->SetCTLHeight( (SvxFontHeightItem&)rSet.Get( RES_CHRATR_CTL_FONTSIZE ) );
pFmt->SetCTLWeight( (SvxWeightItem&)rSet.Get( RES_CHRATR_CTL_WEIGHT ) );
pFmt->SetCTLPosture( (SvxPostureItem&)rSet.Get( RES_CHRATR_CTL_POSTURE ) );
pFmt->SetUnderline( (SvxUnderlineItem&)rSet.Get( RES_CHRATR_UNDERLINE ) );
pFmt->SetOverline( (SvxOverlineItem&)rSet.Get( RES_CHRATR_OVERLINE ) );
pFmt->SetCrossedOut( (SvxCrossedOutItem&)rSet.Get( RES_CHRATR_CROSSEDOUT ) );
pFmt->SetContour( (SvxContourItem&)rSet.Get( RES_CHRATR_CONTOUR ) );
pFmt->SetShadowed( (SvxShadowedItem&)rSet.Get( RES_CHRATR_SHADOWED ) );
pFmt->SetColor( (SvxColorItem&)rSet.Get( RES_CHRATR_COLOR ) );
pFmt->SetAdjust( (SvxAdjustItem&)rSet.Get( RES_PARATR_ADJUST ) );
}
if( UPDATE_BOX & eFlags )
{
pFmt->SetBox( (SvxBoxItem&)rSet.Get( RES_BOX ) );
// FIXME - add attribute IDs for the diagonal line items
// pFmt->SetTLBR( (SvxLineItem&)rSet.Get( RES_... ) );
// pFmt->SetBLTR( (SvxLineItem&)rSet.Get( RES_... ) );
pFmt->SetBackground( (SvxBrushItem&)rSet.Get( RES_BACKGROUND ) );
pFmt->SetTextOrientation(static_cast<const SvxFrameDirectionItem&>(rSet.Get(RES_FRAMEDIR)));
pFmt->SetVerticalAlignment(static_cast<const SwFmtVertOrient&>(rSet.Get(RES_VERT_ORIENT)));
const SwTblBoxNumFormat* pNumFmtItem;
const SvNumberformat* pNumFormat = 0;
if( SFX_ITEM_SET == rSet.GetItemState( RES_BOXATR_FORMAT, sal_True,
(const SfxPoolItem**)&pNumFmtItem ) && pNFmtr &&
0 != (pNumFormat = pNFmtr->GetEntry( pNumFmtItem->GetValue() )) )
pFmt->SetValueFormat( ((SvNumberformat*)pNumFormat)->GetFormatstring(),
pNumFormat->GetLanguage(),
static_cast<LanguageType>(::GetAppLanguage()));
else
{
// default
pFmt->SetValueFormat( aEmptyStr, LANGUAGE_SYSTEM,
static_cast<LanguageType>(::GetAppLanguage() ));
}
}
// we cannot handle the rest, that's specific to StarCalc
}
void SwTableAutoFmt::UpdateToSet(sal_uInt8 nPos, SfxItemSet& rSet,
UpdateFlags eFlags, SvNumberFormatter* pNFmtr) const
{
const SwBoxAutoFmt& rChg = GetBoxFmt( nPos );
if( UPDATE_CHAR & eFlags )
{
if( IsFont() )
{
rSet.Put( rChg.GetFont() );
rSet.Put( rChg.GetHeight() );
rSet.Put( rChg.GetWeight() );
rSet.Put( rChg.GetPosture() );
// do not insert empty CJK font
const SvxFontItem& rCJKFont = rChg.GetCJKFont();
if( rCJKFont.GetStyleName().Len() )
{
rSet.Put( rChg.GetCJKFont() );
rSet.Put( rChg.GetCJKHeight() );
rSet.Put( rChg.GetCJKWeight() );
rSet.Put( rChg.GetCJKPosture() );
}
else
{
rSet.Put( rChg.GetHeight(), RES_CHRATR_CJK_FONTSIZE );
rSet.Put( rChg.GetWeight(), RES_CHRATR_CJK_WEIGHT );
rSet.Put( rChg.GetPosture(), RES_CHRATR_CJK_POSTURE );
}
// do not insert empty CTL font
const SvxFontItem& rCTLFont = rChg.GetCTLFont();
if( rCTLFont.GetStyleName().Len() )
{
rSet.Put( rChg.GetCTLFont() );
rSet.Put( rChg.GetCTLHeight() );
rSet.Put( rChg.GetCTLWeight() );
rSet.Put( rChg.GetCTLPosture() );
}
else
{
rSet.Put( rChg.GetHeight(), RES_CHRATR_CTL_FONTSIZE );
rSet.Put( rChg.GetWeight(), RES_CHRATR_CTL_WEIGHT );
rSet.Put( rChg.GetPosture(), RES_CHRATR_CTL_POSTURE );
}
rSet.Put( rChg.GetUnderline() );
rSet.Put( rChg.GetOverline() );
rSet.Put( rChg.GetCrossedOut() );
rSet.Put( rChg.GetContour() );
rSet.Put( rChg.GetShadowed() );
rSet.Put( rChg.GetColor() );
}
if( IsJustify() )
rSet.Put( rChg.GetAdjust() );
}
if( UPDATE_BOX & eFlags )
{
if( IsFrame() )
{
rSet.Put( rChg.GetBox() );
// FIXME - uncomment the lines to put the diagonal line items
// rSet.Put( rChg.GetTLBR() );
// rSet.Put( rChg.GetBLTR() );
}
if( IsBackground() )
rSet.Put( rChg.GetBackground() );
rSet.Put(rChg.GetTextOrientation());
rSet.Put(rChg.GetVerticalAlignment());
if( IsValueFormat() && pNFmtr )
{
String sFmt; LanguageType eLng, eSys;
rChg.GetValueFormat( sFmt, eLng, eSys );
if( sFmt.Len() )
{
short nType;
bool bNew;
xub_StrLen nCheckPos;
sal_uInt32 nKey = pNFmtr->GetIndexPuttingAndConverting( sFmt, eLng,
eSys, nType, bNew, nCheckPos);
rSet.Put( SwTblBoxNumFormat( nKey ));
}
else
rSet.ClearItem( RES_BOXATR_FORMAT );
}
}
// we cannot handle the rest, that's specific to StarCalc
}
void SwTableAutoFmt::RestoreTableProperties(SwTable &table) const
{
SwTableFmt *pFormat = table.GetTableFmt();
if (!pFormat)
return;
SwDoc *pDoc = pFormat->GetDoc();
if (!pDoc)
return;
SfxItemSet rSet(pDoc->GetAttrPool(), aTableSetRange);
rSet.Put(m_aBreak);
rSet.Put(m_aPageDesc);
rSet.Put(SwFmtLayoutSplit(m_bLayoutSplit));
rSet.Put(SfxBoolItem(RES_COLLAPSING_BORDERS, m_bCollapsingBorders));
rSet.Put(m_aKeepWithNextPara);
rSet.Put(m_aShadow);
pFormat->SetFmtAttr(rSet);
SwEditShell *pShell = pDoc->GetEditShell();
pDoc->SetRowSplit(*pShell->getShellCrsr(false), SwFmtRowSplit(m_bRowSplit));
table.SetRowsToRepeat(m_aRepeatHeading);
}
void SwTableAutoFmt::StoreTableProperties(const SwTable &table)
{
SwTableFmt *pFormat = table.GetTableFmt();
if (!pFormat)
return;
SwDoc *pDoc = pFormat->GetDoc();
if (!pDoc)
return;
SwEditShell *pShell = pDoc->GetEditShell();
SwFmtRowSplit *pRowSplit = 0;
pDoc->GetRowSplit(*pShell->getShellCrsr(false), pRowSplit);
m_bRowSplit = pRowSplit ? pRowSplit->GetValue() : sal_False;
delete pRowSplit;
pRowSplit = 0;
const SfxItemSet &rSet = pFormat->GetAttrSet();
m_aBreak = static_cast<const SvxFmtBreakItem&>(rSet.Get(RES_BREAK));
m_aPageDesc = static_cast<const SwFmtPageDesc&>(rSet.Get(RES_PAGEDESC));
const SwFmtLayoutSplit &layoutSplit = static_cast<const SwFmtLayoutSplit&>(rSet.Get(RES_LAYOUT_SPLIT));
m_bLayoutSplit = layoutSplit.GetValue();
m_bCollapsingBorders = static_cast<const SfxBoolItem&>(rSet.Get(RES_COLLAPSING_BORDERS)).GetValue();
m_aKeepWithNextPara = static_cast<const SvxFmtKeepItem&>(rSet.Get(RES_KEEP));
m_aRepeatHeading = table.GetRowsToRepeat();
m_aShadow = static_cast<const SvxShadowItem&>(rSet.Get(RES_SHADOW));
}
sal_Bool SwTableAutoFmt::Load( SvStream& rStream, const SwAfVersions& rVersions )
{
sal_Bool bRet = sal_True;
sal_uInt16 nVal = 0;
rStream >> nVal;
bRet = 0 == rStream.GetError();
if( bRet && (nVal == AUTOFORMAT_DATA_ID_X ||
(AUTOFORMAT_DATA_ID_504 <= nVal && nVal <= AUTOFORMAT_DATA_ID)) )
{
sal_Bool b;
// --- from 680/dr25 on: store strings as UTF-8
CharSet eCharSet = (nVal >= AUTOFORMAT_ID_680DR25) ? RTL_TEXTENCODING_UTF8 : rStream.GetStreamCharSet();
aName = rStream.ReadUniOrByteString( eCharSet );
if( AUTOFORMAT_DATA_ID_552 <= nVal )
{
rStream >> nStrResId;
sal_uInt16 nId = RID_SVXSTR_TBLAFMT_BEGIN + nStrResId;
if( RID_SVXSTR_TBLAFMT_BEGIN <= nId &&
nId < RID_SVXSTR_TBLAFMT_END )
{
aName = SVX_RESSTR( nId );
}
else
nStrResId = USHRT_MAX;
}
rStream >> b; bInclFont = b;
rStream >> b; bInclJustify = b;
rStream >> b; bInclFrame = b;
rStream >> b; bInclBackground = b;
rStream >> b; bInclValueFormat = b;
rStream >> b; bInclWidthHeight = b;
if (nVal >= AUTOFORMAT_DATA_ID_31005 && WriterSpecificBlockExists(rStream))
{
SfxPoolItem* pNew = 0;
READ(m_aBreak, SvxFmtBreakItem, AUTOFORMAT_FILE_VERSION);
READ(m_aPageDesc, SwFmtPageDesc, AUTOFORMAT_FILE_VERSION);
READ(m_aKeepWithNextPara, SvxFmtKeepItem, AUTOFORMAT_FILE_VERSION);
rStream >> m_aRepeatHeading >> m_bLayoutSplit >> m_bRowSplit >> m_bCollapsingBorders;
READ(m_aShadow, SvxShadowItem, AUTOFORMAT_FILE_VERSION);
}
bRet = 0 == rStream.GetError();
for( sal_uInt8 i = 0; bRet && i < 16; ++i )
{
SwBoxAutoFmt* pFmt = new SwBoxAutoFmt;
bRet = pFmt->Load( rStream, rVersions, nVal );
if( bRet )
aBoxAutoFmt[ i ] = pFmt;
else
{
delete pFmt;
break;
}
}
}
return bRet;
}
sal_Bool SwTableAutoFmt::Save( SvStream& rStream, sal_uInt16 fileVersion ) const
{
sal_uInt16 nVal = AUTOFORMAT_DATA_ID;
sal_Bool b;
rStream << nVal;
// --- from 680/dr25 on: store strings as UTF-8
write_lenPrefixed_uInt8s_FromOUString<sal_uInt16>(rStream, aName,
RTL_TEXTENCODING_UTF8 );
rStream << nStrResId;
rStream << ( b = bInclFont );
rStream << ( b = bInclJustify );
rStream << ( b = bInclFrame );
rStream << ( b = bInclBackground );
rStream << ( b = bInclValueFormat );
rStream << ( b = bInclWidthHeight );
{
WriterSpecificAutoFormatBlock block(rStream);
m_aBreak.Store(rStream, m_aBreak.GetVersion(fileVersion));
m_aPageDesc.Store(rStream, m_aPageDesc.GetVersion(fileVersion));
m_aKeepWithNextPara.Store(rStream, m_aKeepWithNextPara.GetVersion(fileVersion));
rStream << m_aRepeatHeading << m_bLayoutSplit << m_bRowSplit << m_bCollapsingBorders;
m_aShadow.Store(rStream, m_aShadow.GetVersion(fileVersion));
}
sal_Bool bRet = 0 == rStream.GetError();
for( int i = 0; bRet && i < 16; ++i )
{
SwBoxAutoFmt* pFmt = aBoxAutoFmt[ i ];
if( !pFmt ) // if not set -> write default
{
// If it doesn't exist yet:
if( !pDfltBoxAutoFmt )
pDfltBoxAutoFmt = new SwBoxAutoFmt;
pFmt = pDfltBoxAutoFmt;
}
bRet = pFmt->Save( rStream, fileVersion );
}
return bRet;
}
struct SwTableAutoFmtTbl::Impl
{
boost::ptr_vector<SwTableAutoFmt> m_AutoFormats;
};
size_t SwTableAutoFmtTbl::size() const
{
return m_pImpl->m_AutoFormats.size();
}
SwTableAutoFmt const& SwTableAutoFmtTbl::operator[](size_t const i) const
{
return m_pImpl->m_AutoFormats[i];
}
SwTableAutoFmt & SwTableAutoFmtTbl::operator[](size_t const i)
{
return m_pImpl->m_AutoFormats[i];
}
void
SwTableAutoFmtTbl::InsertAutoFmt(size_t const i, SwTableAutoFmt *const pFmt)
{
m_pImpl->m_AutoFormats.insert(m_pImpl->m_AutoFormats.begin() + i, pFmt);
}
void SwTableAutoFmtTbl::EraseAutoFmt(size_t const i)
{
m_pImpl->m_AutoFormats.erase(m_pImpl->m_AutoFormats.begin() + i);
}
void SwTableAutoFmtTbl::MoveAutoFmt(size_t const target, size_t source)
{
m_pImpl->m_AutoFormats.transfer(m_pImpl->m_AutoFormats.begin() + target,
m_pImpl->m_AutoFormats.begin() + source, m_pImpl->m_AutoFormats);
}
SwTableAutoFmtTbl::~SwTableAutoFmtTbl()
{
}
SwTableAutoFmtTbl::SwTableAutoFmtTbl()
: m_pImpl(new Impl)
{
String sNm;
SwTableAutoFmt* pNew = new SwTableAutoFmt(
SwStyleNameMapper::GetUIName( RES_POOLCOLL_STANDARD, sNm ) );
SwBoxAutoFmt aNew;
sal_uInt8 i;
Color aColor( COL_BLUE );
SvxBrushItem aBrushItem( aColor, RES_BACKGROUND );
aNew.SetBackground( aBrushItem );
aNew.SetColor( SvxColorItem(Color( COL_WHITE ), RES_CHRATR_COLOR) );
for( i = 0; i < 4; ++i )
pNew->SetBoxFmt( aNew, i );
// 70% gray
aBrushItem.SetColor( RGB_COLORDATA( 0x4d, 0x4d, 0x4d ) );
aNew.SetBackground( aBrushItem );
for( i = 4; i <= 12; i += 4 )
pNew->SetBoxFmt( aNew, i );
// 20% gray
aBrushItem.SetColor( RGB_COLORDATA( 0xcc, 0xcc, 0xcc ) );
aNew.SetBackground( aBrushItem );
aColor.SetColor( COL_BLACK );
aNew.SetColor( SvxColorItem( aColor, RES_CHRATR_COLOR) );
for( i = 7; i <= 15; i += 4 )
pNew->SetBoxFmt( aNew, i );
for( i = 13; i <= 14; ++i )
pNew->SetBoxFmt( aNew, i );
aBrushItem.SetColor( Color( COL_WHITE ) );
aNew.SetBackground( aBrushItem );
for( i = 5; i <= 6; ++i )
pNew->SetBoxFmt( aNew, i );
for( i = 9; i <= 10; ++i )
pNew->SetBoxFmt( aNew, i );
SvxBoxItem aBox( RES_BOX );
aBox.SetDistance( 55 );
SvxBorderLine aLn( &aColor, DEF_LINE_WIDTH_0 );
aBox.SetLine( &aLn, BOX_LINE_LEFT );
aBox.SetLine( &aLn, BOX_LINE_BOTTOM );
for( i = 0; i <= 15; ++i )
{
aBox.SetLine( i <= 3 ? &aLn : 0, BOX_LINE_TOP );
aBox.SetLine( (3 == ( i & 3 )) ? &aLn : 0, BOX_LINE_RIGHT );
((SwBoxAutoFmt&)pNew->GetBoxFmt( i )).SetBox( aBox );
}
m_pImpl->m_AutoFormats.push_back(pNew);
}
sal_Bool SwTableAutoFmtTbl::Load()
{
sal_Bool bRet = sal_False;
String sNm(rtl::OUString(sAutoTblFmtName));
SvtPathOptions aOpt;
if( aOpt.SearchFile( sNm, SvtPathOptions::PATH_USERCONFIG ))
{
SfxMedium aStream( sNm, STREAM_STD_READ );
bRet = Load( *aStream.GetInStream() );
}
else
bRet = sal_False;
return bRet;
}
sal_Bool SwTableAutoFmtTbl::Save() const
{
SvtPathOptions aPathOpt;
String sNm( aPathOpt.GetUserConfigPath() );
sNm += INET_PATH_TOKEN;
sNm.AppendAscii( RTL_CONSTASCII_STRINGPARAM( sAutoTblFmtName ));
SfxMedium aStream(sNm, STREAM_STD_WRITE );
return Save( *aStream.GetOutStream() ) && aStream.Commit();
}
sal_Bool SwTableAutoFmtTbl::Load( SvStream& rStream )
{
sal_Bool bRet = 0 == rStream.GetError();
if (bRet)
{
// Attention: We need to read a general Header here
sal_uInt16 nVal = 0;
rStream >> nVal;
bRet = 0 == rStream.GetError();
if( bRet )
{
SwAfVersions aVersions;
// Default version is 5.0, unless we detect an old format ID.
sal_uInt16 nFileVers = SOFFICE_FILEFORMAT_50;
if(nVal < AUTOFORMAT_ID_31005)
nFileVers = SOFFICE_FILEFORMAT_40;
if( nVal == AUTOFORMAT_ID_358 ||
(AUTOFORMAT_ID_504 <= nVal && nVal <= AUTOFORMAT_ID) )
{
sal_uInt8 nChrSet, nCnt;
long nPos = rStream.Tell();
rStream >> nCnt >> nChrSet;
if( rStream.Tell() != sal_uLong(nPos + nCnt) )
{
OSL_ENSURE( !this, "The Header contains more or newer Data" );
rStream.Seek( nPos + nCnt );
}
rStream.SetStreamCharSet( (CharSet)nChrSet );
rStream.SetVersion( nFileVers );
}
if( nVal == AUTOFORMAT_ID_358 || nVal == AUTOFORMAT_ID_X ||
(AUTOFORMAT_ID_504 <= nVal && nVal <= AUTOFORMAT_ID) )
{
aVersions.Load( rStream, nVal ); // Item versions
SwTableAutoFmt* pNew;
sal_uInt16 nAnz = 0;
rStream >> nAnz;
bRet = 0 == rStream.GetError();
for( sal_uInt16 i = 0; i < nAnz; ++i )
{
pNew = new SwTableAutoFmt( aEmptyStr );
bRet = pNew->Load( rStream, aVersions );
if( bRet )
{
m_pImpl->m_AutoFormats.push_back(pNew);
}
else
{
delete pNew;
break;
}
}
}
else
{
bRet = false;
}
}
}
return bRet;
}
sal_Bool SwTableAutoFmtTbl::Save( SvStream& rStream ) const
{
sal_Bool bRet = 0 == rStream.GetError();
if (bRet)
{
rStream.SetVersion(AUTOFORMAT_FILE_VERSION);
// Attention: We need to save a general Header here
sal_uInt16 nVal = AUTOFORMAT_ID;
rStream << nVal
<< (sal_uInt8)2 // Character count of the Header including this value
<< (sal_uInt8)GetStoreCharSet( ::osl_getThreadTextEncoding() );
bRet = 0 == rStream.GetError();
// Write this version number for all attributes
m_pImpl->m_AutoFormats[0].GetBoxFmt(0).SaveVersionNo(
rStream, AUTOFORMAT_FILE_VERSION);
rStream << static_cast<sal_uInt16>(m_pImpl->m_AutoFormats.size() - 1);
bRet = 0 == rStream.GetError();
for (sal_uInt16 i = 1; bRet && i < m_pImpl->m_AutoFormats.size(); ++i)
{
SwTableAutoFmt const& rFmt = m_pImpl->m_AutoFormats[i];
bRet = rFmt.Save(rStream, AUTOFORMAT_FILE_VERSION);
}
}
rStream.Flush();
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */