1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * The Contents of this file are made available subject to the terms of
5 * either of the following licenses
7 * - GNU Lesser General Public License Version 2.1
8 * - Sun Industry Standards Source License Version 1.1
10 * Sun Microsystems Inc., October, 2000
12 * GNU Lesser General Public License Version 2.1
13 * =============================================
14 * Copyright 2000 by Sun Microsystems, Inc.
15 * 901 San Antonio Road, Palo Alto, CA 94303, USA
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License version 2.1, as published by the Free Software Foundation.
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
26 * You should have received a copy of the GNU Lesser General Public
27 * License along with this library; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 * Sun Industry Standards Source License Version 1.1
33 * =================================================
34 * The contents of this file are subject to the Sun Industry Standards
35 * Source License Version 1.1 (the "License"); You may not use this file
36 * except in compliance with the License. You may obtain a copy of the
37 * License at http://www.openoffice.org/license.html.
39 * Software provided under this License is provided on an "AS IS" basis,
40 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
41 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
42 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
43 * See the License for the specific provisions governing your rights and
44 * obligations concerning the Software.
46 * The Initial Developer of the Original Code is: IBM Corporation
48 * Copyright: 2008 by IBM Corporation
50 * All Rights Reserved.
52 * Contributor(s): _______________________________________
55 ************************************************************************/
56 /*************************************************************************
58 * Font manager related classes header file
59 * LwpFontTableEntry, LwpFontTable, LwpFontNameEntry,
60 * LwpFontAttrEntry, LwpFontNameManager,LwpFontAttrManager,
62 ************************************************************************/
64 #ifndef INCLUDED_LOTUSWORDPRO_INC_LWPFONT_HXX
65 #define INCLUDED_LOTUSWORDPRO_INC_LWPFONT_HXX
67 #include <config_lgpl.h>
68 #include <rtl/ref.hxx>
69 #include "lwpobjstrm.hxx"
70 #include "lwpatomholder.hxx"
71 #include "lwpcolor.hxx"
72 #include "xfilter/xffont.hxx"
75 class LwpFontTableEntry
80 void Read(LwpObjectStream
*pStrm
);
81 OUString
const & GetFaceName() const;
83 LwpAtomHolder m_WindowsFaceName
; //font face name under windows
84 LwpAtomHolder m_FaceName
; //font face name
85 void RegisterFontDecl();
86 //Not useful now, so skip
87 //LwpPanoseNumber m_PanoseNumber;
96 void Read(LwpObjectStream
*pStrm
);
97 OUString
GetFaceName(sal_uInt16 index
); //index: start from 1
98 // void RegisterFontDecls();
101 std::unique_ptr
<LwpFontTableEntry
[]> m_pFontEntries
;
104 class LwpFontNameEntry
117 void Read(LwpObjectStream
*pStrm
);
118 sal_uInt16
GetFaceID() const {return m_nFaceName
;}
119 sal_uInt16
GetAltFaceID() const {return m_nAltFaceName
;}
120 void Override(rtl::Reference
<XFFont
> const & pFont
);
121 inline bool IsFaceNameOverridden() const;
122 inline bool IsAltFaceNameOverridden() const;
124 //Data of CFontDescriptionOverrideBase
125 sal_uInt8 m_nOverrideBits
;
126 sal_uInt8 m_nApplyBits
;
127 sal_uInt32 m_nPointSize
;
128 sal_uInt16 m_nOverstrike
;
129 sal_uInt16 m_nTightness
;
131 LwpColor m_BackColor
;
132 //Data of LwpFontNameEntry
133 sal_uInt16 m_nFaceName
; //CFontTableID
134 sal_uInt16 m_nAltFaceName
; //CFontTableID
144 ALL_BITS
= (POINTSIZE
| COLOR
| OVERSTRIKE
146 | TIGHTNESS
| FACENAME
| BKCOLOR
)
149 inline bool IsPointSizeOverridden() const;
150 inline bool IsColorOverridden() const;
151 inline bool IsBackgroundColorOverridden() const;
153 // inline sal_Bool IsTightnessOverridden();
154 // inline sal_Bool IsAnythingOverridden();
157 class LwpFontNameManager
160 LwpFontNameManager();
161 ~LwpFontNameManager();
162 OUString
GetNameByIndex(sal_uInt16 index
);
165 std::unique_ptr
<LwpFontNameEntry
[]> m_pFontNames
;
166 LwpFontTable m_FontTbl
;
169 void Read(LwpObjectStream
*pStrm
);
170 void Override(sal_uInt16 index
, rtl::Reference
<XFFont
> const & pFont
);
173 class LwpFontAttrEntry
178 , m_nAttrOverrideBits(0)
179 , m_nAttrApplyBits(0)
180 , m_nAttrOverrideBits2(0)
181 , m_nAttrApplyBits2(0)
186 void Read(LwpObjectStream
*pStrm
);
187 void Override(rtl::Reference
<XFFont
> const & pFont
);
189 sal_uInt16 m_nAttrBits
;
190 sal_uInt16 m_nAttrOverrideBits
;
191 sal_uInt16 m_nAttrApplyBits
;
192 sal_uInt8 m_nAttrOverrideBits2
;
193 sal_uInt8 m_nAttrApplyBits2
;
202 SUPERSCRIPT
= 0x0100,
207 ALL_ATTRS
= BOLD
| ITALIC
| STRIKETHRU
208 | SUPERSCRIPT
| SUBSCRIPT
222 UNDER_WORD_SINGLE
= 4,
223 UNDER_WORD_DOUBLE
= 5,
228 ALL_ATTRS2
= CASE
| UNDER
230 bool Is(sal_uInt16 Attr
);
231 bool IsBoldOverridden() const;
232 bool IsItalicOverridden() const;
233 bool IsStrikeThruOverridden() const;
234 bool IsSmallCapsOverridden() const;
235 bool IsSuperOverridden() const;
236 bool IsSubOverridden() const;
237 bool IsUnderlineOverridden() const;
238 bool IsCaseOverridden() const;
242 class LwpFontAttrManager
248 ~LwpFontAttrManager();
250 void Read(LwpObjectStream
*pStrm
);
251 void Override(sal_uInt16 index
, rtl::Reference
<XFFont
> const & pFont
);
254 std::unique_ptr
<LwpFontAttrEntry
[]> m_pFontAttrs
;
262 LwpFontNameManager m_FNMgr
;
263 LwpFontAttrManager m_AttrMgr
;
266 void Read(LwpObjectStream
*pStrm
);
267 rtl::Reference
<XFFont
> CreateOverrideFont(sal_uInt32 fontID
, sal_uInt32 overID
);
268 rtl::Reference
<XFFont
> CreateFont(sal_uInt32 fontID
);
269 OUString
GetNameByID(sal_uInt32 fontID
);
272 void Override(sal_uInt32 fontID
, rtl::Reference
<XFFont
> const & pFont
);
273 static inline sal_uInt16
GetFontNameIndex(sal_uInt32 fontID
);
274 static inline sal_uInt16
GetFontAttrIndex(sal_uInt32 fontID
);
277 sal_uInt16
LwpFontManager::GetFontNameIndex(sal_uInt32 fontID
)
279 return static_cast<sal_uInt16
>((fontID
>>16)&0xFFFF);
282 sal_uInt16
LwpFontManager::GetFontAttrIndex(sal_uInt32 fontID
)
284 return static_cast<sal_uInt16
>(fontID
);
289 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */