/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: itratr.hxx,v $ * * $Revision: 1.18 $ * * last change: $Author: hr $ $Date: 2006-08-14 16:38:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library 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 for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ #ifndef _ITRATR_HXX #define _ITRATR_HXX #ifndef _ATRHNDL_HXX #include #endif #include "txttypes.hxx" #include "swfont.hxx" #include "porlay.hxx" #define _SVSTDARR_XUB_STRLEN #define _SVSTDARR_USHORTS #include class OutputDevice; class SwFont; class SwpHints; class SwTxtAttr; class SwAttrSet; class SwTxtNode; class SwRedlineItr; class ViewShell; class SwTxtFrm; /************************************************************************* * class SwAttrIter *************************************************************************/ class SwAttrIter { friend class SwFontSave; protected: SwAttrHandler aAttrHandler; ViewShell *pShell; SwFont *pFnt; SwpHints *pHints; const SwAttrSet* pAttrSet; // das Char-Attribut-Set SwScriptInfo* pScriptInfo; private: OutputDevice *pLastOut; MSHORT nChgCnt; SwRedlineItr *pRedln; xub_StrLen nStartIndex, nEndIndex, nPos; BYTE nPropFont; void SeekFwd( const xub_StrLen nPos ); inline void SetFnt( SwFont* pNew ) { pFnt = pNew; } const void* aMagicNo[ SW_SCRIPTS ]; MSHORT aFntIdx[ SW_SCRIPTS ]; protected: void Chg( SwTxtAttr *pHt ); void Rst( SwTxtAttr *pHt ); void CtorInit( SwTxtNode& rTxtNode, SwScriptInfo& rScrInf, SwTxtFrm* pFrm = 0 ); inline SwAttrIter() : pFnt(0), pLastOut(0), nChgCnt(0), nPropFont(0), pShell(0), pRedln(0){} public: // Konstruktor, Destruktor inline SwAttrIter( SwTxtNode& rTxtNode, SwScriptInfo& rScrInf ) : pFnt(0), pLastOut(0), nChgCnt(0), nPropFont(0), pShell(0), pRedln(0) { CtorInit( rTxtNode, rScrInf ); } virtual ~SwAttrIter(); inline SwRedlineItr *GetRedln() { return pRedln; } // Liefert im Parameter die Position des naechsten Wechsels vor oder an // der uebergebenen Characterposition zurueck. Liefert sal_False, wenn vor // oder an dieser Position kein Wechsel mehr erfolgt, sal_True sonst. xub_StrLen GetNextAttr( ) const; // Macht die an der Characterposition i gueltigen Attribute im // logischen Font wirksam. sal_Bool Seek( const xub_StrLen nPos ); // Bastelt den Font an der gew. Position via Seek und fragt ihn, // ob er ein Symbolfont ist. sal_Bool IsSymbol( const xub_StrLen nPos ); // Fuehrt ChgPhysFnt aus, wenn Seek() sal_True zurueckliefert. sal_Bool SeekAndChg( const xub_StrLen nPos, OutputDevice* pOut ); sal_Bool SeekStartAndChg( OutputDevice* pOut, const sal_Bool bParaFont = sal_False ); // Gibt es ueberhaupt Attributwechsel ? inline sal_Bool HasHints() const { return 0 != pHints; } // liefert fuer eine Position das Attribut SwTxtAttr *GetAttr( const xub_StrLen nPos ) const; inline const SwAttrSet* GetAttrSet() const { return pAttrSet; } inline const SwpHints *GetHints() const { return pHints; } inline SwFont *GetFnt() { return pFnt; } inline const SwFont *GetFnt() const { return pFnt; } inline const BYTE GetPropFont() const { return nPropFont; } inline void SetPropFont( const BYTE nNew ) { nPropFont = nNew; } inline SwAttrHandler& GetAttrHandler() { return aAttrHandler; } #if OSL_DEBUG_LEVEL > 1 void Dump( SvStream &rOS ) const; #endif }; #endif