diff options
Diffstat (limited to 'sw/inc/ftninfo.hxx')
-rw-r--r-- | sw/inc/ftninfo.hxx | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/sw/inc/ftninfo.hxx b/sw/inc/ftninfo.hxx new file mode 100644 index 000000000000..6e84f3ead81b --- /dev/null +++ b/sw/inc/ftninfo.hxx @@ -0,0 +1,120 @@ +/************************************************************************* + * + * 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 m_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 |