fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / writerfilter / source / dmapper / FontTable.hxx
blob36dec44aa414fcf63906a20db8375b914576a1ee
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_FONTTABLE_HXX
21 #define INCLUDED_FONTTABLE_HXX
23 #include <boost/shared_ptr.hpp>
24 #include <WriterFilterDllApi.hxx>
25 #include <resourcemodel/LoggedResources.hxx>
26 #include <com/sun/star/lang/XComponent.hpp>
27 #include <com/sun/star/io/XInputStream.hpp>
29 namespace writerfilter {
30 namespace dmapper
33 struct FontTable_Impl;
34 struct FontEntry
36 typedef boost::shared_ptr<FontEntry> Pointer_t;
38 OUString sFontName;
39 OUString sFontName1;
40 bool bTrueType;
41 sal_Int16 nPitchRequest;
42 sal_Int32 nTextEncoding;
43 sal_Int32 nFontFamilyId;
44 sal_Int32 nBaseWeight;
45 sal_Int32 nAltFontIndex;
46 OUString sPanose;
47 OUString sFontSignature;
48 OUString sAlternativeFont;
49 FontEntry() :
50 bTrueType(false),
51 nPitchRequest( 0 ),
52 nTextEncoding( RTL_TEXTENCODING_DONTKNOW ),
53 nFontFamilyId( 0 ),
54 nBaseWeight( 0 ),
55 nAltFontIndex( 0 )
59 class WRITERFILTER_DLLPRIVATE FontTable : public LoggedProperties, public LoggedTable
60 /*,public BinaryObj*/, public LoggedStream
62 FontTable_Impl *m_pImpl;
64 public:
65 FontTable();
66 virtual ~FontTable();
68 sal_uInt32 size();
69 const FontEntry::Pointer_t getFontEntry(sal_uInt32 nIndex);
71 private:
72 // Properties
73 virtual void lcl_attribute(Id Name, Value & val);
74 virtual void lcl_sprm(Sprm & sprm);
75 void resolveSprm(Sprm & r_sprm);
77 // Table
78 virtual void lcl_entry(int pos, writerfilter::Reference<Properties>::Pointer_t ref);
80 // Stream
81 virtual void lcl_startSectionGroup();
82 virtual void lcl_endSectionGroup();
83 virtual void lcl_startParagraphGroup();
84 virtual void lcl_endParagraphGroup();
85 virtual void lcl_startCharacterGroup();
86 virtual void lcl_endCharacterGroup();
87 virtual void lcl_text(const sal_uInt8 * data, size_t len);
88 virtual void lcl_utext(const sal_uInt8 * data, size_t len);
89 virtual void lcl_props(writerfilter::Reference<Properties>::Pointer_t ref);
90 virtual void lcl_table(Id name,
91 writerfilter::Reference<Table>::Pointer_t ref);
92 virtual void lcl_substream(Id name,
93 ::writerfilter::Reference<Stream>::Pointer_t ref);
94 virtual void lcl_info(const string & info);
95 virtual void lcl_startShape( ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape );
96 virtual void lcl_endShape( );
99 typedef boost::shared_ptr< FontTable > FontTablePtr;
101 class EmbeddedFontHandler : public LoggedProperties
103 public:
104 EmbeddedFontHandler( const OUString& fontName, const char* style );
105 virtual ~EmbeddedFontHandler();
106 private:
107 virtual void lcl_attribute( Id name, Value& val );
108 virtual void lcl_sprm( Sprm& rSprm );
109 OUString fontName;
110 const char* const style;
111 OUString id;
112 OUString fontKey;
113 ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > inputStream;
119 #endif //
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */