Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_xmloff / XMLFontStylesContext.hxx
blobd0c95da4bd895149cad3cd0d78a587c14e980175
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XMLFontStylesContext.hxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef _XMLOFF_XMLFONTSTYLESCONTEXT_HXX_
31 #define _XMLOFF_XMLFONTSTYLESCONTEXT_HXX_
33 #ifndef __SGI_STL_VECTOR
34 #include <vector>
35 #endif
37 #ifndef _XMLOFF_XMLSTYLE_HXX_
38 #include <bf_xmloff/xmlstyle.hxx>
39 #endif
40 namespace binfilter {
42 struct XMLPropertyState;
43 class SvXMLTokenMap;
44 class XMLFontFamilyNamePropHdl;
45 class XMLFontFamilyPropHdl;
46 class XMLFontPitchPropHdl;
47 class XMLFontEncodingPropHdl;
49 class XMLFontStylesContext : public SvXMLStylesContext
51 XMLFontFamilyNamePropHdl *pFamilyNameHdl;
52 XMLFontFamilyPropHdl *pFamilyHdl;
53 XMLFontPitchPropHdl *pPitchHdl;
54 XMLFontEncodingPropHdl *pEncHdl;
56 SvXMLTokenMap *pFontStyleAttrTokenMap;
58 rtl_TextEncoding eDfltEncoding;
60 protected:
62 virtual SvXMLStyleContext *CreateStyleChildContext( sal_uInt16 nPrefix,
63 const ::rtl::OUString& rLocalName,
64 const ::com::sun::star::uno::Reference<
65 ::com::sun::star::xml::sax::XAttributeList > & xAttrList );
67 public:
69 TYPEINFO();
71 XMLFontStylesContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
72 const ::rtl::OUString& rLName,
73 const ::com::sun::star::uno::Reference<
74 ::com::sun::star::xml::sax::XAttributeList > & xAttrList,
75 rtl_TextEncoding eDfltEnc );
76 virtual ~XMLFontStylesContext();
78 const SvXMLTokenMap& GetFontStyleAttrTokenMap() const
80 return *pFontStyleAttrTokenMap;
83 sal_Bool FillProperties( const ::rtl::OUString& rName,
84 ::std::vector< XMLPropertyState > &rProps,
85 sal_Int32 nFamilyNameIdx,
86 sal_Int32 nStyleNameIdx,
87 sal_Int32 nFamilyIdx,
88 sal_Int32 nPitchIdx,
89 sal_Int32 nCharsetIdx ) const;
91 rtl_TextEncoding GetDfltCharset() const { return eDfltEncoding; }
93 XMLFontFamilyNamePropHdl& GetFamilyNameHdl() const { return *pFamilyNameHdl; }
94 XMLFontFamilyPropHdl& GetFamilyHdl() const { return *pFamilyHdl; }
95 XMLFontPitchPropHdl& GetPitchHdl() const { return *pPitchHdl; }
96 XMLFontEncodingPropHdl& GetEncodingHdl() const { return *pEncHdl; }
100 }//end of namespace binfilter
101 #endif