2000-09-18 16:15:01 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* $RCSfile: caption.hxx,v $
|
|
|
|
* $Revision: 1.6 $
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* 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.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* 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).
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
2008-04-10 18:47:54 +00:00
|
|
|
* 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.
|
2000-09-18 16:15:01 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _CAPTION_HXX
|
|
|
|
#define _CAPTION_HXX
|
|
|
|
|
|
|
|
#include <tools/string.hxx>
|
2004-09-20 11:39:12 +00:00
|
|
|
//#ifndef _STREAM_HXX //autogen
|
|
|
|
//#include <tools/stream.hxx>
|
|
|
|
//#endif
|
2000-09-18 16:15:01 +00:00
|
|
|
#include <tools/globname.hxx>
|
2007-11-21 17:23:02 +00:00
|
|
|
#include <SwCapObjType.hxx>
|
2004-08-23 07:56:43 +00:00
|
|
|
#include "swdllapi.h"
|
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
Beschreibung:
|
|
|
|
--------------------------------------------------------------------*/
|
|
|
|
|
2004-08-23 07:56:43 +00:00
|
|
|
class SW_DLLPUBLIC InsCaptionOpt
|
2000-09-18 16:15:01 +00:00
|
|
|
{
|
|
|
|
private:
|
2007-11-21 17:23:02 +00:00
|
|
|
BOOL bUseCaption;
|
|
|
|
SwCapObjType eObjType;
|
|
|
|
SvGlobalName aOleId;
|
|
|
|
String sCategory;
|
|
|
|
USHORT nNumType;
|
|
|
|
::rtl::OUString sNumberSeparator;
|
|
|
|
String sCaption;
|
|
|
|
USHORT nPos;
|
|
|
|
USHORT nLevel;
|
|
|
|
// sal_Unicode cSeparator;
|
|
|
|
String sSeparator;
|
|
|
|
String sCharacterStyle;
|
2004-09-20 11:39:12 +00:00
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
BOOL bIgnoreSeqOpts; // wird nicht gespeichert
|
|
|
|
BOOL bCopyAttributes; // -""-
|
|
|
|
|
|
|
|
public:
|
|
|
|
InsCaptionOpt(const SwCapObjType eType = FRAME_CAP, const SvGlobalName* pOleId = 0);
|
|
|
|
InsCaptionOpt(const InsCaptionOpt&);
|
|
|
|
~InsCaptionOpt();
|
|
|
|
|
|
|
|
inline BOOL& UseCaption() { return bUseCaption; }
|
|
|
|
inline BOOL UseCaption() const { return bUseCaption; }
|
|
|
|
|
|
|
|
inline SwCapObjType GetObjType() const { return eObjType; }
|
|
|
|
inline void SetObjType(const SwCapObjType eType) { eObjType = eType; }
|
|
|
|
|
|
|
|
inline const SvGlobalName& GetOleId() const { return aOleId; }
|
|
|
|
inline void SetOleId(const SvGlobalName &rId) { aOleId = rId; }
|
|
|
|
|
|
|
|
inline const String& GetCategory() const { return sCategory; }
|
|
|
|
inline void SetCategory(const String& rCat) { sCategory = rCat; }
|
|
|
|
|
|
|
|
inline USHORT GetNumType() const { return nNumType; }
|
|
|
|
inline void SetNumType(const USHORT nNT) { nNumType = nNT; }
|
|
|
|
|
2007-11-21 17:23:02 +00:00
|
|
|
const ::rtl::OUString& GetNumSeparator() const { return sNumberSeparator; }
|
|
|
|
void SetNumSeparator(const ::rtl::OUString& rSet) {sNumberSeparator = rSet;}
|
|
|
|
|
2000-09-18 16:15:01 +00:00
|
|
|
inline const String& GetCaption() const { return sCaption; }
|
|
|
|
inline void SetCaption(const String& rCap) { sCaption = rCap; }
|
|
|
|
|
|
|
|
inline USHORT GetPos() const { return nPos; }
|
|
|
|
inline void SetPos(const USHORT nP) { nPos = nP; }
|
|
|
|
|
|
|
|
inline USHORT GetLevel() const { return nLevel; }
|
|
|
|
inline void SetLevel(const USHORT nLvl) { nLevel = nLvl; }
|
|
|
|
|
2004-09-20 11:39:12 +00:00
|
|
|
// inline sal_Unicode GetSeparator() const { return cSeparator; }
|
|
|
|
// inline void SetSeparator(const sal_Unicode cSep){ cSeparator = cSep; }
|
|
|
|
inline const String& GetSeparator() const { return sSeparator; }
|
|
|
|
inline void SetSeparator(const String& rSep) { sSeparator = rSep; }
|
|
|
|
|
|
|
|
const String& GetCharacterStyle() const { return sCharacterStyle; }
|
|
|
|
void SetCharacterStyle(const String& rStyle)
|
|
|
|
{ sCharacterStyle = rStyle; }
|
2000-09-18 16:15:01 +00:00
|
|
|
|
|
|
|
inline BOOL& IgnoreSeqOpts() { return bIgnoreSeqOpts; }
|
|
|
|
inline BOOL IgnoreSeqOpts() const { return bIgnoreSeqOpts; }
|
|
|
|
|
|
|
|
inline BOOL& CopyAttributes() { return bCopyAttributes; }
|
|
|
|
inline BOOL CopyAttributes() const { return bCopyAttributes; }
|
|
|
|
|
|
|
|
BOOL operator==( const InsCaptionOpt& rOpt ) const;
|
|
|
|
InsCaptionOpt& operator= ( const InsCaptionOpt& rOpt );
|
|
|
|
inline BOOL operator< ( const InsCaptionOpt & rObj ) const
|
|
|
|
{ return aOleId < rObj.aOleId; }
|
2004-09-20 11:39:12 +00:00
|
|
|
// friend SvStream& operator>>( SvStream& rIStream, InsCaptionOpt& rCapOpt );
|
|
|
|
// friend SvStream& operator<<( SvStream& rOStream, const InsCaptionOpt& rCapOpt );
|
2000-09-18 16:15:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|