office-gobmx/sw/inc/ftninfo.hxx
Rüdiger Timm 648cd4d027 INTEGRATION: CWS changefileheader (1.8.38); FILE MERGED
2008/04/01 15:56:14 thb 1.8.38.3: #i85898# Stripping all external header guards
2008/04/01 12:53:31 thb 1.8.38.2: #i85898# Stripping all external header guards
2008/03/31 16:52:38 rt 1.8.38.1: #i87441# Change license header to LPGL v3.
2008-04-10 10:18:09 +00:00

120 lines
3.4 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ftninfo.hxx,v $
* $Revision: 1.9 $
*
* 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.
*
************************************************************************/
#ifndef _FTNINFO_HXX
#define _FTNINFO_HXX
#include <tools/string.hxx>
#include "swdllapi.h"
//#ifndef _NUMRULE_HXX
//#include <numrule.hxx>
//#endif
#include <calbck.hxx>
#include <svx/numitem.hxx>
class SwTxtFmtColl;
class SwPageDesc;
class SwCharFmt;
class SwDoc;
class SW_DLLPUBLIC SwEndNoteInfo : public SwClient
{
SwDepend aPageDescDep;
SwDepend aCharFmtDep, aAnchorCharFmtDep;
String sPrefix;
String sSuffix;
protected:
BOOL bEndNote;
public:
SvxNumberType aFmt;
USHORT nFtnOffset;
void ChgPageDesc( SwPageDesc *pDesc );
SwPageDesc *GetPageDesc( SwDoc &rDoc ) const;
SwClient *GetPageDescDep() const { return (SwClient*)&aPageDescDep; }
void SetFtnTxtColl(SwTxtFmtColl& rColl);
SwTxtFmtColl* GetFtnTxtColl() const { return (SwTxtFmtColl*) GetRegisteredIn(); } // kann 0 sein
SwCharFmt* GetCharFmt(SwDoc &rDoc) const;
void SetCharFmt( SwCharFmt* );
SwClient *GetCharFmtDep() const { return (SwClient*)&aCharFmtDep; }
SwCharFmt* GetAnchorCharFmt(SwDoc &rDoc) const;
void SetAnchorCharFmt( SwCharFmt* );
SwClient *GetAnchorCharFmtDep() const { return (SwClient*)&aAnchorCharFmtDep; }
virtual void Modify( SfxPoolItem* pOld, SfxPoolItem* pNew );
SwEndNoteInfo & operator=(const SwEndNoteInfo&);
BOOL operator==( const SwEndNoteInfo &rInf ) const;
SwEndNoteInfo( SwTxtFmtColl *pTxtColl = 0);
SwEndNoteInfo(const SwEndNoteInfo&);
const String& GetPrefix() const { return sPrefix; }
const String& GetSuffix() const { return sSuffix; }
void SetPrefix(const String& rSet) { sPrefix = rSet; }
void SetSuffix(const String& rSet) { sSuffix = rSet; }
};
enum SwFtnPos
{
//Derzeit nur PAGE und CHAPTER. CHAPTER == Dokumentendenoten.
FTNPOS_PAGE = 1,
FTNPOS_CHAPTER = 8
};
enum SwFtnNum
{
FTNNUM_PAGE, FTNNUM_CHAPTER, FTNNUM_DOC
};
class SW_DLLPUBLIC SwFtnInfo: public SwEndNoteInfo
{
using SwEndNoteInfo::operator ==;
public:
String aQuoVadis;
String aErgoSum;
SwFtnPos ePos;
SwFtnNum eNum;
SwFtnInfo& operator=(const SwFtnInfo&);
BOOL operator==( const SwFtnInfo &rInf ) const;
SwFtnInfo(SwTxtFmtColl* pTxtColl = 0);
SwFtnInfo(const SwFtnInfo&);
};
#endif