EPUBSpanStyleManager.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/*
3 * This file is part of the libepubgen project.
4 *
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/.
8 */
9
10#ifndef INCLUDED_EPUBSPANSTYLEMANAGER_H
11#define INCLUDED_EPUBSPANSTYLEMANAGER_H
12
13#include <map>
14#include <string>
15#include <unordered_map>
16
17#include <boost/functional/hash.hpp>
18
19#include <librevenge/librevenge.h>
20
21#include "EPUBCSSProperties.h"
22
23namespace libepubgen
24{
25
26class EPUBCSSSink;
27
30{
31 typedef std::unordered_map<EPUBCSSProperties, std::string, boost::hash<EPUBCSSProperties>> ContentNameMap_t;
32
33public:
36 {
37 }
40 {
41 }
43 void defineSpan(librevenge::RVNGPropertyList const &pList);
45 std::string getClass(librevenge::RVNGPropertyList const &pList);
47 std::string getStyle(librevenge::RVNGPropertyList const &pList);
49 void send(EPUBCSSSink &out);
50protected:
52 void extractProperties(librevenge::RVNGPropertyList const &pList, EPUBCSSProperties &cssProps) const;
54 void extractTextPosition(char const *value, EPUBCSSProperties &cssProps) const;
56 void extractDecorations(librevenge::RVNGPropertyList const &pList, EPUBCSSProperties &cssProps) const;
60 std::map<int, std::string> m_idNameMap;
61
62private:
65};
66
67}
68
69#endif
70
71/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition: EPUBCSSSink.h:24
Small class to manage the span style.
Definition: EPUBSpanStyleManager.h:30
~EPUBSpanStyleManager()
destructor
Definition: EPUBSpanStyleManager.h:39
void defineSpan(librevenge::RVNGPropertyList const &pList)
define a span style
Definition: EPUBSpanStyleManager.cpp:55
EPUBSpanStyleManager operator=(EPUBSpanStyleManager const &orig)
void extractProperties(librevenge::RVNGPropertyList const &pList, EPUBCSSProperties &cssProps) const
convert a property list into a CSS property map
Definition: EPUBSpanStyleManager.cpp:78
std::map< int, std::string > m_idNameMap
a map id -> name
Definition: EPUBSpanStyleManager.h:60
void extractDecorations(librevenge::RVNGPropertyList const &pList, EPUBCSSProperties &cssProps) const
add data corresponding to the line decoration into the map
Definition: EPUBSpanStyleManager.cpp:146
EPUBSpanStyleManager()
constructor
Definition: EPUBSpanStyleManager.h:35
std::string getStyle(librevenge::RVNGPropertyList const &pList)
returns the style string corresponding to a propertylist
Definition: EPUBSpanStyleManager.cpp:44
std::string getClass(librevenge::RVNGPropertyList const &pList)
returns the class name corresponding to a propertylist
Definition: EPUBSpanStyleManager.cpp:24
std::unordered_map< EPUBCSSProperties, std::string, boost::hash< EPUBCSSProperties > > ContentNameMap_t
Definition: EPUBSpanStyleManager.h:31
EPUBSpanStyleManager(EPUBSpanStyleManager const &orig)
void extractTextPosition(char const *value, EPUBCSSProperties &cssProps) const
add data corresponding to a text position into the map
Definition: EPUBSpanStyleManager.cpp:177
void send(EPUBCSSSink &out)
send the data to the sink
Definition: EPUBSpanStyleManager.cpp:68
ContentNameMap_t m_contentNameMap
a map content -> name
Definition: EPUBSpanStyleManager.h:58
Definition: EPUBBinarySink.cpp:13
std::map< std::string, std::string > EPUBCSSProperties
Definition: EPUBCSSProperties.h:21

Generated for libepubgen by doxygen 1.9.5