Files
libreoffice/sw/source/core/text/itratr.hxx
Rüdiger Timm b5001828f1 INTEGRATION: CWS ooo19126 (1.16.600); FILE MERGED
2005/09/05 13:40:50 rt 1.16.600.1: #i54170# Change license header: remove SISSL
2005-09-09 03:54:15 +00:00

153 lines
4.7 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: itratr.hxx,v $
*
* $Revision: 1.17 $
*
* last change: $Author: rt $ $Date: 2005-09-09 04:54:15 $
*
* 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 _SOLAR_H
#include <tools/solar.h>
#endif
#ifndef _ATRHNDL_HXX
#include <atrhndl.hxx>
#endif
#include "txttypes.hxx"
#include "swfont.hxx"
#include "porlay.hxx"
#define _SVSTDARR_XUB_STRLEN
#define _SVSTDARR_USHORTS
#include <svtools/svstdarr.hxx>
class OutputDevice;
class SwFont;
class SwpHints;
class SwTxtAttr;
class SwAttrSet;
class SwTxtNode;
class SwRedlineItr;
class ViewShell;
#ifdef VERTICAL_LAYOUT
class SwTxtFrm;
#endif
/*************************************************************************
* 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 );
#ifdef VERTICAL_LAYOUT
void CtorInit( SwTxtNode& rTxtNode, SwScriptInfo& rScrInf, SwTxtFrm* pFrm = 0 );
#else
void CtorInit( SwTxtNode& rTxtNode, SwScriptInfo& rScrInf );
#endif
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