Files
libreoffice/sw/source/core/text/itratr.hxx
Jens-Heiner Rechtien 965bb8c3ac INTEGRATION: CWS swwarnings (1.18.242); FILE MERGED
2007/04/03 13:00:11 tl 1.18.242.2: #i69287# warning-free code
2007/03/08 09:51:56 fme 1.18.242.1: #i69287# Warning free code
2007-09-27 08:13:54 +00:00

141 lines
4.6 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: itratr.hxx,v $
*
* $Revision: 1.19 $
*
* last change: $Author: hr $ $Date: 2007-09-27 09:13:54 $
*
* 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 <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;
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 CtorInitAttrIter( SwTxtNode& rTxtNode, SwScriptInfo& rScrInf, SwTxtFrm* pFrm = 0 );
inline SwAttrIter()
: pShell(0), pFnt(0), pLastOut(0), nChgCnt(0), pRedln(0), nPropFont(0) {}
public:
// Konstruktor, Destruktor
inline SwAttrIter( SwTxtNode& rTxtNode, SwScriptInfo& rScrInf )
: pShell(0), pFnt(0), pHints(0), pScriptInfo(0), pLastOut(0), nChgCnt(0), pRedln(0),nPropFont(0)
{ CtorInitAttrIter( 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 SeekAndChgAttrIter( const xub_StrLen nPos, OutputDevice* pOut );
sal_Bool SeekStartAndChgAttrIter( 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