/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SW_SOURCE_CORE_INC_SWFONT_HXX #define INCLUDED_SW_SOURCE_CORE_INC_SWFONT_HXX #include #include #include #include #include #include #include #include #include class SfxItemSet; class SwAttrSet; class SwDoCapitals; // DoCapitals class SwDrawTextInfo; // _DrawText class SwScriptInfo; // _GetTextSize class SwViewShell; class IDocumentSettingAccess; typedef struct _xmlTextWriter *xmlTextWriterPtr; enum class SvxShadowItemSide; const sal_Unicode CH_BLANK = ' '; // ' ' blank spaces const sal_Unicode CH_BREAK = 0x0A; const sal_Unicode CH_TAB = '\t'; // \t const sal_Unicode CH_PAR = 0xB6; // paragraph const sal_Unicode CH_BULLET = 0xB7; // centered dot sal_uInt16 UnMapDirection( sal_uInt16 nDir, const bool bVertFormat ); class SwSubFont : public SvxFont { friend class SwFont; const void *pMagic; // "MagicNumber" within the font cache Size aSize; // foreigners only see this size sal_uInt16 nFntIndex; // index in the font cache sal_uInt16 nOrgHeight; // height including escapement/proportion sal_uInt16 nOrgAscent; // ascent including escapement/proportion sal_uInt16 nPropWidth; // proportional width bool smallCapsPercentage66; inline SwSubFont() : aSize(0,0) { pMagic = NULL; nFntIndex = nOrgHeight = nOrgAscent = 0; nPropWidth =100; smallCapsPercentage66 = false; } sal_uInt16 CalcEscAscent( const sal_uInt16 nOldAscent ) const; sal_uInt16 CalcEscHeight( const sal_uInt16 nOldHeight, const sal_uInt16 nOldAscent ) const; void CalcEsc( SwDrawTextInfo& rInf, Point& rPos ); inline void CopyMagic( const SwSubFont& rFnt ) { pMagic = rFnt.pMagic; nFntIndex = rFnt.nFntIndex; } SwSubFont& operator=( const SwSubFont &rFont ); short _CheckKerning( ); bool ChgFnt( SwViewShell const *pSh, OutputDevice& rOut ); bool IsSymbol( SwViewShell *pSh ); sal_uInt16 GetAscent( SwViewShell *pSh, const OutputDevice& rOut ); sal_uInt16 GetHeight( SwViewShell *pSh, const OutputDevice& rOut ); Size _GetTextSize( SwDrawTextInfo& rInf ); Size GetCapitalSize( SwDrawTextInfo& rInf ); void _DrawText( SwDrawTextInfo &rInf, const bool bGrey ); void DrawCapital( SwDrawTextInfo &rInf ); void DrawStretchCapital( SwDrawTextInfo &rInf ); void DoOnCapitals( SwDoCapitals &rDo ); void _DrawStretchText( SwDrawTextInfo &rInf ); sal_Int32 _GetCrsrOfst( SwDrawTextInfo& rInf ); sal_Int32 GetCapitalCrsrOfst( SwDrawTextInfo& rInf ); inline void SetColor( const Color& rColor ); inline void SetFillColor( const Color& rColor ); inline void SetCharSet( const rtl_TextEncoding eCharSet ); inline void SetPitch( const FontPitch ePitch ); inline void SetAlign( const FontAlign eAlign ); inline void SetUnderline( const FontUnderline eUnderline ); inline void SetOverline( const FontUnderline eOverline ); inline void SetStrikeout( const FontStrikeout eStrikeout ); inline void SetItalic( const FontItalic eItalic ); inline void SetOutline( const bool bOutline ); inline void SetVertical( const sal_uInt16 nDir, const bool bVertFormat ); inline void SetShadow( const bool bShadow ); inline void SetAutoKern( FontKerning nAutoKern ); inline void SetWordLineMode( const bool bWordLineMode ); inline void SetEmphasisMark( const FontEmphasisMark eValue ); inline void SetRelief( const FontRelief eNew ); // methods for sub-/superscript inline void SetEscapement( const short nNewEsc ); inline void SetProportion( const sal_uInt8 nNewPropr ); inline void SetFamily( const FontFamily eFamily ); inline void SetName( const OUString& rName ); inline void SetStyleName( const OUString& rStyleName ); inline void SetSize( const Size& rSize ); inline void SetWeight( const FontWeight eWeight ); inline void SetLanguage( LanguageType eNewLang ); inline short CheckKerning() { return GetFixKerning() >= 0 ? GetFixKerning() : _CheckKerning( ); } inline void SetPropWidth( const sal_uInt16 nNew ) { pMagic = 0; nPropWidth = nNew; } public: sal_uInt16 GetPropWidth() const { return nPropWidth; } }; #define SW_LATIN 0 #define SW_CJK 1 #define SW_CTL 2 #define SW_SCRIPTS 3 class SwFont { // CJK == Chinese, Japanese, Korean // CTL == Complex text layout ( Hebrew, Arabic ) SwSubFont aSub[SW_SCRIPTS]; // Latin-, CJK- and CTL-font Color* pBackColor; // background color (i.e. at character styles) Color m_aHighlightColor; // highlight color Color aUnderColor; // color of the underlining Color aOverColor; // color of the overlining // character borders boost::optional m_aTopBorder; boost::optional m_aBottomBorder; boost::optional m_aRightBorder; boost::optional m_aLeftBorder; // border distance sal_uInt16 m_nTopBorderDist; sal_uInt16 m_nBottomBorderDist; sal_uInt16 m_nRightBorderDist; sal_uInt16 m_nLeftBorderDist; Color m_aShadowColor; sal_uInt16 m_nShadowWidth; SvxShadowLocation m_aShadowLocation; sal_uInt8 nToxCnt; // counts the nesting depth of the Tox sal_uInt8 nRefCnt; // counts the nesting depth of the Refs sal_uInt8 m_nMetaCount; // count META/METAFIELD sal_uInt8 m_nInputFieldCount; // count INPUTFIELD sal_uInt8 nActual; // actual font (Latin, CJK or CTL) // switch for the font-extensions bool bNoHyph :1; // SwTextNoHyphenHere: no separator bool bBlink :1; // blinking font bool bPaintBlank :1; // blanks not with DrawRect bool bFntChg :1; bool bOrgChg :1; // nOrgHeight/Ascent are invalid bool bURL :1; bool bPaintWrong :1; // flag for spelling mistakes bool bGreyWave :1; // for the extended TextInput: gray waveline bool bNoColReplace :1; // Replacement without colormanipulation public: SwFont( const SwAttrSet* pSet, const IDocumentSettingAccess* pIDocumentSettingAccess ); SwFont( const SwFont& rFont ); inline void ChgFnt( SwViewShell const *pSh, OutputDevice& rOut ) { bPaintBlank = aSub[nActual].ChgFnt( pSh, rOut ); } ~SwFont(); SwFont& operator=( const SwFont &rFont ); inline sal_uInt8 GetActual() const { return nActual; } inline void SetActual( sal_uInt8 nNew ); inline const SvxFont& GetActualFont() const { return aSub[nActual]; } // gets a MagicNumber via SwFntAccess void GoMagic( SwViewShell *pSh, sal_uInt8 nWhich ); // set background color void SetBackColor( Color* pNewColor ); inline const Color* GetBackColor() const{ return pBackColor; } void SetHighlightColor( const Color& aNewColor ); const Color& GetHighlightColor() const { return m_aHighlightColor; } inline void ChkMagic( SwViewShell *pSh, sal_uInt8 nWhich ) { if( !aSub[ nWhich ].pMagic ) GoMagic( pSh, nWhich ); } // assumes the MagicNumber of a (hopefully not identical) colleague inline void CopyMagic( const SwFont* pFnt, sal_uInt8 nWhich ) { aSub[nWhich].CopyMagic( pFnt->aSub[nWhich] ); } inline void GetMagic( const void* &rMagic, sal_uInt16 &rIdx, sal_uInt8 nWhich ) { rMagic = aSub[nWhich].pMagic; rIdx = aSub[nWhich].nFntIndex; } inline void SetMagic( const void* pNew, const sal_uInt16 nIdx, sal_uInt8 nWhich ) { aSub[nWhich].pMagic = pNew; aSub[nWhich].nFntIndex = nIdx; } inline bool DifferentMagic( const SwFont* pFnt, sal_uInt8 nWhich ) { return aSub[nWhich].pMagic != pFnt->aSub[nWhich].pMagic || !aSub[nWhich].pMagic || !pFnt->aSub[nWhich].pMagic; } inline const Size &GetSize( sal_uInt8 nWhich ) const { return aSub[nWhich].aSize; } inline bool IsFntChg() const { return bFntChg; } inline void SetFntChg( const bool bNew ) { bFntChg = bNew; } // the encapsulated SV-Font-methods (set bFntChg to true) inline void SetColor( const Color& rColor ); inline void SetFillColor( const Color& rColor ); inline void SetAlign( const FontAlign eAlign ); inline void SetUnderline( const FontUnderline eUnderline ); inline void SetUnderColor( const Color &rColor ) { aUnderColor = rColor; } inline void SetOverline( const FontUnderline eOverline ); inline void SetOverColor( const Color &rColor ) { aOverColor = rColor; } inline void SetStrikeout( const FontStrikeout eStrikeout ); inline void SetOutline( const bool bOutline ); void SetVertical( sal_uInt16 nDir, const bool nVertLayout = false ); inline void SetShadow( const bool bShadow ); inline void SetAutoKern( FontKerning nAutoKern ); inline void SetTransparent( const bool bTrans ); inline void SetWordLineMode( const bool bWordLineMode ); inline void SetFixKerning( const short nNewKern ); inline void SetCaseMap( const SvxCaseMap eNew ); inline void SetEmphasisMark( const FontEmphasisMark eValue ); // methods for sub-/superscript inline void SetEscapement( const short nNewEsc ); inline void SetProportion( const sal_uInt8 nNewPropr ); inline void SetPropWidth( const sal_uInt16 nNew ); inline void SetFamily( const FontFamily eFamily, const sal_uInt8 nWhich ); inline void SetName( const OUString& rName, const sal_uInt8 nWhich ); inline void SetStyleName( const OUString& rStyleName, const sal_uInt8 nWhich ); inline void SetSize( const Size& rSize, const sal_uInt8 nWhich ); inline void SetWeight( const FontWeight eWeight, const sal_uInt8 nWhich ); inline void SetItalic( const FontItalic eItalic, const sal_uInt8 nWhich ); inline void SetLanguage( LanguageType eNewLang, const sal_uInt8 nWhich ); inline void SetCharSet( const rtl_TextEncoding eCharSet, const sal_uInt8 nWhich ); inline void SetPitch( const FontPitch ePitch, const sal_uInt8 nWhich ); inline void SetRelief( const FontRelief eNew ); // Get/Set-methods for the current setting inline void SetNoHyph( const bool bNew ); inline bool IsNoHyph() const { return bNoHyph; } inline void SetBlink( const bool bBlink ); inline bool IsBlink() const { return bBlink; } inline sal_uInt8 &GetTox() { return nToxCnt; } inline sal_uInt8 GetTox() const { return nToxCnt; } inline bool IsTox() const { return ( 0 != nToxCnt ); } inline sal_uInt8 &GetRef() { return nRefCnt; } inline sal_uInt8 GetRef() const { return nRefCnt; } inline bool IsRef() const { return ( 0 != nRefCnt ); } inline sal_uInt8 &GetMeta() { return m_nMetaCount; } inline sal_uInt8 GetMeta() const { return m_nMetaCount; } inline bool IsMeta() const { return (0 != m_nMetaCount); } inline sal_uInt8 &GetInputField() { return m_nInputFieldCount; } inline sal_uInt8 GetInputField() const { return m_nInputFieldCount; } inline bool IsInputField() const { return (0 != m_nInputFieldCount); } inline void SetURL( const bool bURL ); inline bool IsURL() const { return bURL; } inline void SetGreyWave( const bool bNew ); inline bool IsGreyWave() const { return bGreyWave; } inline void SetNoCol( const bool bNew ); inline bool IsNoCol() const { return bNoColReplace; } inline void SetPaintBlank( const bool bNew ); inline bool IsPaintBlank() const { return bPaintBlank; } inline void SetPaintWrong( const bool bNew ); inline bool IsPaintWrong() const { return bPaintWrong; } // setting of the base class font for SwTextCharFormat void SetDiffFnt( const SfxItemSet* pSet, const IDocumentSettingAccess* pIDocumentSettingAccess ); inline const SvxFont &GetFnt( const sal_uInt8 nWhich ) const { return aSub[nWhich]; }; bool IsSymbol( SwViewShell *pSh ) { return aSub[nActual].IsSymbol( pSh ); } FontUnderline GetUnderline() const { return aSub[nActual].GetUnderline(); } const Color& GetUnderColor() const { return aUnderColor; } FontUnderline GetOverline() const { return aSub[nActual].GetOverline(); } const Color& GetOverColor() const { return aOverColor; } short GetFixKerning() const { return aSub[nActual].GetFixKerning(); } FontStrikeout GetStrikeout() const { return aSub[nActual].GetStrikeout(); } const Color& GetColor() const { return aSub[nActual].GetColor(); } bool IsShadow() const { return aSub[nActual].IsShadow(); } bool IsWordLineMode() const { return aSub[nActual].IsWordLineMode(); } bool IsOutline() const { return aSub[nActual].IsOutline(); } bool IsKerning() const { return aSub[nActual].IsKerning(); } short GetEscapement() const { return aSub[nActual].GetEscapement(); } SvxCaseMap GetCaseMap() const { return aSub[nActual].GetCaseMap(); } sal_uInt8 GetPropr() const { return aSub[nActual].GetPropr(); } FontItalic GetItalic() const { return aSub[nActual].GetItalic(); } LanguageType GetLanguage() const { return aSub[nActual].GetLanguage(); } FontAlign GetAlign() const { return aSub[nActual].GetAlign(); } const OUString& GetName() const { return aSub[nActual].GetName(); } const OUString& GetStyleName() const {return aSub[nActual].GetStyleName();} FontFamily GetFamily() const { return aSub[nActual].GetFamily(); } FontPitch GetPitch() const { return aSub[nActual].GetPitch(); } rtl_TextEncoding GetCharSet() const { return aSub[nActual].GetCharSet(); } long GetHeight() const { return aSub[nActual].GetSize().Height(); } FontWeight GetWeight() const { return aSub[nActual].GetWeight(); } FontEmphasisMark GetEmphasisMark() const { return aSub[nActual].GetEmphasisMark(); } sal_uInt16 GetPropWidth() const { return aSub[nActual].GetPropWidth(); } sal_uInt16 GetOrientation( const bool nVertLayout = false ) const; inline const OUString& GetName( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetName(); } inline LanguageType GetLanguage( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetLanguage(); } inline const OUString& GetStyleName( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetStyleName(); } inline FontFamily GetFamily( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetFamily(); } inline FontItalic GetItalic( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetItalic(); } inline FontPitch GetPitch( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetPitch(); } inline rtl_TextEncoding GetCharSet( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetCharSet(); } inline long GetHeight( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetSize().Height(); } inline FontWeight GetWeight( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetWeight(); } inline FontEmphasisMark GetEmphasisMark( const sal_uInt8 nWhich ) const { return aSub[nWhich].GetEmphasisMark(); } // makes the logical font be effective in the OutputDevice void ChgPhysFnt( SwViewShell *pSh, OutputDevice& rOut ); Size GetCapitalSize( SwDrawTextInfo& rInf ) { return aSub[nActual].GetCapitalSize( rInf ); } sal_Int32 GetCapitalBreak( SwViewShell const* pSh, const OutputDevice* pOut, const SwScriptInfo* pScript, const OUString& rText, long nTextWidth, const sal_Int32 nIdx, const sal_Int32 nLen ); sal_Int32 GetCapitalCrsrOfst( SwDrawTextInfo& rInf ) { return aSub[nActual].GetCapitalCrsrOfst( rInf ); } void DrawCapital( SwDrawTextInfo &rInf ) { aSub[nActual].DrawCapital( rInf ); } void DrawStretchCapital( SwDrawTextInfo &rInf ) { aSub[nActual].DrawStretchCapital( rInf ); } void DoOnCapitals( SwDoCapitals &rDo ) { aSub[nActual].DoOnCapitals( rDo ); } Size _GetTextSize( SwDrawTextInfo& rInf ) { rInf.SetFont( this ); return aSub[nActual]._GetTextSize( rInf ); } sal_Int32 GetTextBreak( SwDrawTextInfo& rInf, long nTextWidth ); sal_Int32 _GetCrsrOfst( SwDrawTextInfo& rInf ) { return aSub[nActual]._GetCrsrOfst( rInf ); } inline void _DrawText( SwDrawTextInfo &rInf ) { aSub[nActual]._DrawText( rInf, IsGreyWave() ); } inline void _DrawStretchText( SwDrawTextInfo &rInf ) { aSub[nActual]._DrawStretchText( rInf ); } inline short CheckKerning() { return aSub[nActual].CheckKerning(); } inline sal_uInt16 GetAscent( SwViewShell *pSh, const OutputDevice& rOut ) { return aSub[nActual].GetAscent( pSh, rOut ); } inline sal_uInt16 GetHeight( SwViewShell *pSh, const OutputDevice& rOut ) { return aSub[nActual].GetHeight( pSh, rOut ); } inline void Invalidate() { bFntChg = bOrgChg = true; } void SetTopBorder( const editeng::SvxBorderLine* pTopBorder ); void SetBottomBorder( const editeng::SvxBorderLine* pBottomBorder ); void SetRightBorder( const editeng::SvxBorderLine* pRightBorder ); void SetLeftBorder( const editeng::SvxBorderLine* pLeftBorder ); const boost::optional& GetTopBorder() const { return m_aTopBorder; } const boost::optional& GetBottomBorder() const { return m_aBottomBorder; } const boost::optional& GetRightBorder() const { return m_aRightBorder; } const boost::optional& GetLeftBorder() const { return m_aLeftBorder; } // Get absolute border correspond to the layout verticality and orientation. const boost::optional& GetAbsTopBorder( const bool bVertLayout ) const; const boost::optional& GetAbsBottomBorder( const bool bVertLayout ) const; const boost::optional& GetAbsRightBorder( const bool bVertLayout ) const; const boost::optional& GetAbsLeftBorder( const bool bVertLayout ) const; void SetTopBorderDist( const sal_uInt16 nTopDist ); void SetBottomBorderDist( const sal_uInt16 nBottomDist ); void SetRightBorderDist( const sal_uInt16 nRightDist ); void SetLeftBorderDist( const sal_uInt16 nLeftDist ); sal_uInt16 GetTopBorderDist() const { return m_nTopBorderDist; } sal_uInt16 GetBottomBorderDist() const { return m_nBottomBorderDist; } sal_uInt16 GetRightBorderDist() const { return m_nRightBorderDist; } sal_uInt16 GetLeftBorderDist() const { return m_nLeftBorderDist; } // Return with the whole space which border holed (border width, spacing and shadow width) sal_uInt16 GetTopBorderSpace() const; sal_uInt16 GetBottomBorderSpace() const; sal_uInt16 GetRightBorderSpace() const; sal_uInt16 GetLeftBorderSpace() const; /// Check whether font has any border on any side bool HasBorder() const; void SetShadowColor( const Color& rColor ); void SetShadowWidth( const sal_uInt16 nWidth ); void SetShadowLocation( const SvxShadowLocation aLocation ); const Color& GetShadowColor() const { return m_aShadowColor; } sal_uInt16 GetShadowWidth() const { return m_nShadowWidth; } SvxShadowLocation GetShadowLocation() const { return m_aShadowLocation; } /** * Get the absolute shadow location dependent from orientation. * * @param[in] bVertLayout true, if the container layout is vertical * false, otherwise * @return absolute location **/ SvxShadowLocation GetAbsShadowLocation( const bool bVertLayout ) const; /** * Calculate the shadow space on the specified side dependent from * the orientation and connection with neightbours. * @see shaditem.hxx for integer constants of sides * * @param[in] nShadow specify the side * @param[in] bVertLayout true, if the container layout is vertical * false, otherwise * @param[in] bSkipLeft relative left shadow space is skipped * @param[in] bSkipRight relative right shadow space is skipped * @return the shadow space **/ sal_uInt16 CalcShadowSpace( const SvxShadowItemSide nShadow, const bool bVertLayout, const bool bSkipLeft, const bool bSkipRight ) const; void dumpAsXml( xmlTextWriterPtr writer = NULL ) const; }; inline void SwFont::SetColor( const Color& rColor ) { bFntChg = true; aSub[0].SetColor( rColor ); aSub[1].SetColor( rColor ); aSub[2].SetColor( rColor ); } // encapsulated SV-Font-method inline void SwSubFont::SetColor( const Color& rColor ) { pMagic = 0; Font::SetColor( rColor ); } // encapsulated SV-Font-method inline void SwSubFont::SetFillColor( const Color& rColor ) { pMagic = 0; Font::SetFillColor( rColor ); } inline void SwFont::SetFillColor( const Color& rColor ) { bFntChg = true; aSub[0].SetFillColor( rColor ); aSub[1].SetFillColor( rColor ); aSub[2].SetFillColor( rColor ); } // encapsulated SV-Font-method inline void SwSubFont::SetFamily( const FontFamily eFamily ) { pMagic = 0; Font::SetFamily( eFamily ); } inline void SwFont::SetFamily( const FontFamily eFamily, const sal_uInt8 nWhich ) { bFntChg = true; aSub[nWhich].SetFamily( eFamily ); } // encapsulated SV-Font-method inline void SwSubFont::SetName( const OUString& rName ) { pMagic = 0; Font::SetName( rName ); } inline void SwFont::SetName( const OUString& rName, const sal_uInt8 nWhich ) { bFntChg = true; aSub[nWhich].SetName( rName ); } // encapsulated SV-Font-method inline void SwSubFont::SetStyleName( const OUString& rStyleName ) { pMagic = 0; Font::SetStyleName( rStyleName ); } inline void SwFont::SetStyleName( const OUString& rStyle, const sal_uInt8 nWhich ) { bFntChg = true; aSub[nWhich].SetStyleName( rStyle ); } // encapsulated SV-Font-method inline void SwSubFont::SetCharSet( const rtl_TextEncoding eCharSet ) { pMagic = 0; Font::SetCharSet( eCharSet ); } inline void SwFont::SetCharSet( const rtl_TextEncoding eCharSet, const sal_uInt8 nWhich ) { bFntChg = true; aSub[nWhich].SetCharSet( eCharSet ); } // encapsulated SV-Font-method inline void SwSubFont::SetPitch( const FontPitch ePitch ) { pMagic = 0; Font::SetPitch( ePitch ); } // encapsulated SV-Font-method inline void SwFont::SetPitch( const FontPitch ePitch, const sal_uInt8 nWhich ) { bFntChg = true; aSub[nWhich].SetPitch( ePitch ); } // encapsulated SV-Font-method inline void SwSubFont::SetAlign( const FontAlign eAlign ) { pMagic = 0; Font::SetAlign( eAlign ); } inline void SwFont::SetAlign( const FontAlign eAlign ) { bFntChg = true; aSub[0].SetAlign( eAlign ); aSub[1].SetAlign( eAlign ); aSub[2].SetAlign( eAlign ); } // encapsulated SV-Font-method inline void SwSubFont::SetWeight( const FontWeight eWeight ) { pMagic = 0; Font::SetWeight( eWeight ); } inline void SwFont::SetWeight( const FontWeight eWeight, const sal_uInt8 nWhich ) { bFntChg = true; aSub[nWhich].SetWeight( eWeight ); } // encapsulated SV-Font-method inline void SwSubFont::SetUnderline( const FontUnderline eUnderline ) { pMagic = 0; Font::SetUnderline( eUnderline ); } inline void SwFont::SetUnderline( const FontUnderline eUnderline ) { bFntChg = true; aSub[0].SetUnderline( eUnderline ); aSub[1].SetUnderline( eUnderline ); aSub[2].SetUnderline( eUnderline ); } // encapsulated SV-Font-method inline void SwSubFont::SetOverline( const FontUnderline eOverline ) { pMagic = 0; Font::SetOverline( eOverline ); } inline void SwFont::SetOverline( const FontUnderline eOverline ) { bFntChg = true; aSub[0].SetOverline( eOverline ); aSub[1].SetOverline( eOverline ); aSub[2].SetOverline( eOverline ); } // encapsulated SV-Font-method inline void SwSubFont::SetStrikeout( const FontStrikeout eStrikeout ) { pMagic = 0; Font::SetStrikeout( eStrikeout ); } inline void SwFont::SetStrikeout( const FontStrikeout eStrikeout ) { bFntChg = true; aSub[0].SetStrikeout( eStrikeout ); aSub[1].SetStrikeout( eStrikeout ); aSub[2].SetStrikeout( eStrikeout ); } // encapsulated SV-Font-method inline void SwSubFont::SetItalic( const FontItalic eItalic ) { pMagic = 0; Font::SetItalic( eItalic ); } inline void SwFont::SetItalic( const FontItalic eItalic, const sal_uInt8 nWhich ) { bFntChg = true; aSub[nWhich].SetItalic( eItalic ); } // encapsulated SV-Font-method inline void SwSubFont::SetOutline( const bool bOutline ) { pMagic = 0; Font::SetOutline( bOutline ); } inline void SwFont::SetOutline( const bool bOutline ) { bFntChg = true; aSub[0].SetOutline( bOutline ); aSub[1].SetOutline( bOutline ); aSub[2].SetOutline( bOutline ); } // encapsulated SV-Font-method inline void SwSubFont::SetShadow( const bool bShadow ) { pMagic = 0; Font::SetShadow( bShadow ); } inline void SwFont::SetShadow( const bool bShadow ) { bFntChg = true; aSub[0].SetShadow( bShadow ); aSub[1].SetShadow( bShadow ); aSub[2].SetShadow( bShadow ); } // encapsulated SV-Font-method inline void SwSubFont::SetAutoKern( FontKerning nAutoKern ) { pMagic = 0; Font::SetKerning( nAutoKern ); } inline void SwFont::SetAutoKern( FontKerning nAutoKern ) { bFntChg = true; aSub[1].SetAutoKern( nAutoKern ); if( nAutoKern != FontKerning::NONE ) nAutoKern = FontKerning::FontSpecific; aSub[0].SetAutoKern( nAutoKern ); aSub[2].SetAutoKern( nAutoKern ); } inline void SwFont::SetTransparent( const bool bTrans ) { aSub[0].SetTransparent( bTrans ); aSub[1].SetTransparent( bTrans ); aSub[2].SetTransparent( bTrans ); } inline void SwFont::SetFixKerning( const short nNewKern ) { aSub[SW_LATIN].SetFixKerning( nNewKern ); aSub[SW_CJK].SetFixKerning( nNewKern ); aSub[SW_CTL].SetFixKerning( nNewKern ); } inline void SwFont::SetCaseMap( const SvxCaseMap eNew ) { aSub[SW_LATIN].SetCaseMap( eNew ); aSub[SW_CJK].SetCaseMap( eNew ); aSub[SW_CTL].SetCaseMap( eNew ); } // encapsulated SV-Font-method inline void SwSubFont::SetWordLineMode( const bool bWordLineMode ) { pMagic = 0; Font::SetWordLineMode( bWordLineMode ); } inline void SwFont::SetWordLineMode( const bool bWordLineMode ) { bFntChg = true; aSub[0].SetWordLineMode( bWordLineMode ); aSub[1].SetWordLineMode( bWordLineMode ); aSub[2].SetWordLineMode( bWordLineMode ); } // encapsulated SV-Font-method inline void SwSubFont::SetEmphasisMark( const FontEmphasisMark eValue ) { pMagic = 0; Font::SetEmphasisMark( eValue ); } inline void SwFont::SetEmphasisMark( const FontEmphasisMark eValue ) { bFntChg = true; aSub[0].SetEmphasisMark( eValue ); aSub[1].SetEmphasisMark( eValue ); aSub[2].SetEmphasisMark( eValue ); } inline void SwFont::SetPropWidth( const sal_uInt16 nNew ) { if( nNew != aSub[0].GetPropWidth() ) { bFntChg = true; aSub[0].SetPropWidth( nNew ); aSub[1].SetPropWidth( nNew ); aSub[2].SetPropWidth( nNew ); } } // encapsulated SV-Font-method inline void SwSubFont::SetRelief( const FontRelief eNew ) { pMagic = 0; Font::SetRelief( eNew ); } inline void SwFont::SetRelief( const FontRelief eNew ) { if( eNew != aSub[0].GetRelief() ) { bFntChg = true; aSub[0].SetRelief( eNew ); aSub[1].SetRelief( eNew ); aSub[2].SetRelief( eNew ); } } // overloaded font-method inline void SwSubFont::SetSize( const Size& rSize ) { aSize = rSize; if ( GetPropr() == 100 ) Font::SetSize( aSize ); else { Font::SetSize( Size( (long) aSize.Width() * GetPropr() / 100L, (long) aSize.Height() * GetPropr() / 100L ) ); } pMagic = 0; } inline void SwFont::SetSize( const Size& rSize, const sal_uInt8 nWhich ) { if( aSub[nWhich].aSize != rSize ) { aSub[nWhich].SetSize( rSize ); bFntChg = true; bOrgChg = true; } } inline void SwFont::SetActual( sal_uInt8 nNew ) { if ( nActual != nNew ) { bFntChg = true; bOrgChg = true; nActual = nNew; } } inline void SwSubFont::SetProportion( const sal_uInt8 nNewPropr ) { pMagic = 0; Font::SetSize( Size( (long) aSize.Width() * nNewPropr / 100L, (long) aSize.Height() * nNewPropr / 100L ) ); SvxFont::SetPropr( nNewPropr ); } inline void SwFont::SetProportion( const sal_uInt8 nNewPropr ) { if( nNewPropr != aSub[0].GetPropr() ) { bFntChg = true; bOrgChg = true; aSub[0].SetProportion( nNewPropr ); aSub[1].SetProportion( nNewPropr ); aSub[2].SetProportion( nNewPropr ); } } inline void SwSubFont::SetEscapement( const short nNewEsc ) { pMagic = 0; SvxFont::SetEscapement( nNewEsc ); } inline void SwFont::SetEscapement( const short nNewEsc ) { if( nNewEsc != aSub[0].GetEscapement() ) { // these have to be set, otherwise nOrgHeight and nOrgAscent will not // be calculated bFntChg = true; bOrgChg = true; aSub[0].SetEscapement( nNewEsc ); aSub[1].SetEscapement( nNewEsc ); aSub[2].SetEscapement( nNewEsc ); } } inline void SwSubFont::SetLanguage( LanguageType eNewLang ) { pMagic = 0; if( eNewLang == LANGUAGE_SYSTEM ) eNewLang = (LanguageType)GetAppLanguage(); SvxFont::SetLanguage( eNewLang ); } inline void SwFont::SetLanguage( const LanguageType eNewLang, const sal_uInt8 nWhich ) { aSub[nWhich].SetLanguage( eNewLang ); if( SW_CJK == nWhich ) { aSub[SW_LATIN].SetCJKContextLanguage( eNewLang ); aSub[SW_CJK].SetCJKContextLanguage( eNewLang ); aSub[SW_CTL].SetCJKContextLanguage( eNewLang ); } } inline void SwFont::SetPaintBlank( const bool bNew ) { bPaintBlank = bNew; } inline void SwFont::SetPaintWrong( const bool bNew ) { bPaintWrong = bNew; } inline void SwFont::SetNoHyph( const bool bNew ) { bNoHyph = bNew; } inline void SwFont::SetBlink( const bool bNew ) { bBlink = bNew; } inline void SwFont::SetURL( const bool bNew ) { bURL = bNew; } inline void SwFont::SetGreyWave( const bool bNew ) { bGreyWave = bNew; } inline void SwFont::SetNoCol( const bool bNew ) { bNoColReplace = bNew; } inline void SwSubFont::SetVertical( const sal_uInt16 nDir, const bool bVertFormat ) { pMagic = 0; Font::SetVertical( bVertFormat ); Font::SetOrientation( nDir ); } inline void SwFont::SetTopBorderDist( const sal_uInt16 nTopDist ) { m_nTopBorderDist = nTopDist; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } inline void SwFont::SetBottomBorderDist( const sal_uInt16 nBottomDist ) { m_nBottomBorderDist = nBottomDist; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } inline void SwFont::SetRightBorderDist( const sal_uInt16 nRightDist ) { m_nRightBorderDist = nRightDist; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } inline void SwFont::SetLeftBorderDist( const sal_uInt16 nLeftDist ) { m_nLeftBorderDist = nLeftDist; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } inline sal_uInt16 SwFont::GetTopBorderSpace() const { sal_uInt16 nRet = 0; if( m_aTopBorder ) { nRet += m_aTopBorder.get().GetScaledWidth() + m_nTopBorderDist; } if( m_aShadowLocation == SVX_SHADOW_TOPLEFT || m_aShadowLocation == SVX_SHADOW_TOPRIGHT ) { nRet += m_nShadowWidth; } return nRet; } inline sal_uInt16 SwFont::GetBottomBorderSpace() const { sal_uInt16 nRet = 0; if( m_aBottomBorder ) { nRet += m_aBottomBorder.get().GetScaledWidth() + m_nBottomBorderDist; } if( m_aShadowLocation == SVX_SHADOW_BOTTOMLEFT || m_aShadowLocation == SVX_SHADOW_BOTTOMRIGHT ) { nRet += m_nShadowWidth; } return nRet; } inline sal_uInt16 SwFont::GetRightBorderSpace() const { sal_uInt16 nRet = 0; if( m_aRightBorder ) { nRet += m_aRightBorder.get().GetScaledWidth() + m_nRightBorderDist; } if( m_aShadowLocation == SVX_SHADOW_TOPRIGHT || m_aShadowLocation == SVX_SHADOW_BOTTOMRIGHT ) { nRet += m_nShadowWidth; } return nRet; } inline sal_uInt16 SwFont::GetLeftBorderSpace() const { sal_uInt16 nRet = 0; if( m_aLeftBorder ) { nRet += m_aLeftBorder.get().GetScaledWidth() + m_nLeftBorderDist; } if( m_aShadowLocation == SVX_SHADOW_TOPLEFT || m_aShadowLocation == SVX_SHADOW_BOTTOMLEFT ) { nRet += m_nShadowWidth; } return nRet; } inline bool SwFont::HasBorder() const { return m_aTopBorder || m_aBottomBorder || m_aLeftBorder || m_aRightBorder; } inline void SwFont::SetShadowColor( const Color& rColor ) { m_aShadowColor = rColor; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } inline void SwFont::SetShadowWidth( const sal_uInt16 nWidth ) { m_nShadowWidth = nWidth; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } inline void SwFont::SetShadowLocation( const SvxShadowLocation aLocation ) { m_aShadowLocation = aLocation; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } inline void SwFont::SetHighlightColor( const Color& aNewColor ) { m_aHighlightColor = aNewColor; bFntChg = true; aSub[SW_LATIN].pMagic = aSub[SW_CJK].pMagic = aSub[SW_CTL].pMagic = 0; } // Used for the "continuous underline" feature. class SwUnderlineFont { Point aPos; SwFont* pFnt; public: // sets the font which should paint the common baseline // and the starting point of the common baseline SwUnderlineFont( SwFont& rFnt, const Point& rPoint ); ~SwUnderlineFont(); SwFont& GetFont() { OSL_ENSURE( pFnt, "No underline font" ); return *pFnt; } const Point& GetPos() const { return aPos; } // the x coordinate of the starting point has to be set for each portion void SetPos( const Point& rPoint ) { aPos = rPoint; } }; #ifdef DBG_UTIL class SvStatistics { public: sal_uInt16 nGetTextSize; sal_uInt16 nDrawText; sal_uInt16 nGetStretchTextSize; sal_uInt16 nDrawStretchText; sal_uInt16 nChangeFont; sal_uInt16 nGetFontMetric; inline void Reset() { nGetTextSize = nDrawText = nGetStretchTextSize = nDrawStretchText = nChangeFont = nGetFontMetric = 0; } inline SvStatistics() { Reset(); } inline void PrintOn( SvStream &rOS ) const; //$ ostream inline bool IsEmpty() const { return !( nGetTextSize || nDrawText || nDrawStretchText || nChangeFont || nGetFontMetric ); } }; // global variable, implemented in swfont.cxx extern SvStatistics g_SvStat; #define SV_STAT(nWhich) ++(g_SvStat.nWhich); inline void SvStatistics::PrintOn( SvStream &rOS ) const //$ ostream { if( IsEmpty() ) return; rOS.WriteCharPtr( "{ SV called:\n" ); if( nGetTextSize ) rOS.WriteCharPtr( "\tnGetTextSize: " ).WriteUInt16( nGetTextSize ).WriteChar( '\n' ); if( nDrawText ) rOS.WriteCharPtr( "\tnDrawText: " ).WriteUInt16( nDrawText ).WriteChar( '\n' ); if( nGetStretchTextSize ) rOS.WriteCharPtr( "\tnGetStretchTextSize: " ).WriteUInt16( nGetStretchTextSize ).WriteChar( '\n' ); if( nDrawStretchText ) rOS.WriteCharPtr( "\tnDrawStretchText: " ).WriteUInt16( nDrawStretchText ).WriteChar( '\n' ); if( nChangeFont ) rOS.WriteCharPtr( "\tnChangeFont: " ).WriteUInt16( nChangeFont ).WriteChar( '\n' ); if( nGetFontMetric ) rOS.WriteCharPtr( "\tnGetFontMetric: " ).WriteUInt16( nGetFontMetric ).WriteChar( '\n' ); rOS.WriteCharPtr( "}\n" ); } #else #define SV_STAT(nWhich) #endif /* DBG_UTIL */ #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */