IWORKStyle.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 libetonyek 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 IWORKSTYLE_H_INCLUDED
11 #define IWORKSTYLE_H_INCLUDED
12 
13 #include "IWORKStyle_fwd.h"
14 
15 #include <boost/any.hpp>
16 #include <boost/optional.hpp>
17 
18 #include "IWORKPropertyMap.h"
19 #include "IWORKStylesheet.h"
20 
21 namespace libetonyek
22 {
23 
24 class IWORKStyleStack;
25 
29 {
30 public:
31  IWORKStyle(const IWORKPropertyMap &props, const boost::optional<std::string> &ident, const boost::optional<std::string> &parentIdent);
32  IWORKStyle(const IWORKPropertyMap &props, const boost::optional<std::string> &ident, const IWORKStylePtr_t &parent);
33 
40 
45  void flatten();
46 
49  const IWORKPropertyMap &getPropertyMap() const;
50 
55  template<class Property>
56  bool has() const
57  {
58  return m_props.has<Property>(true);
59  }
60 
65  template<class Property>
66  const typename IWORKPropertyInfo<Property>::ValueType &get() const
67  {
68  return m_props.get<Property>(true);
69  }
70 
71  const boost::optional<std::string> &getIdent() const;
72 
73 private:
75 
76  const boost::optional<std::string> m_ident;
77  const boost::optional<std::string> m_parentIdent;
79 };
80 
81 }
82 
83 #endif // IWORKSTYLE_H_INCLUDED
84 
85 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
bool link(const IWORKStylesheetPtr_t &stylesheet)
Find the parent style by its ID.
Definition: IWORKStyle.cpp:36
Definition: IWORKBezierElement.cpp:18
bool has() const
Check for the presence of a property.
Definition: IWORKStyle.h:56
const boost::optional< std::string > & getIdent() const
Definition: IWORKStyle.cpp:68
Definition: IWORKToken.h:271
Represents a hierarchical style.
Definition: IWORKStyle.h:28
const IWORKPropertyMap & getPropertyMap() const
Get the style&#39;s property map.
Definition: IWORKStyle.cpp:63
IWORKStyle(const IWORKPropertyMap &props, const boost::optional< std::string > &ident, const boost::optional< std::string > &parentIdent)
Definition: IWORKStyle.cpp:18
Represents a (hierarchical) property map.
Definition: IWORKPropertyMap.h:24
std::shared_ptr< IWORKStyle > IWORKStylePtr_t
Definition: IWORKStyle_fwd.h:21
void flatten()
Copy attributes from parent style (recursively).
Definition: IWORKStyle.cpp:58
const IWORKPropertyInfo< Property >::ValueType & get(bool lookInParent=false) const
Retrieve the value of a property.
Definition: IWORKPropertyMap.h:113
Definition: IWORKToken.h:333
Definition: IWORKPropertyInfo.h:21
const boost::optional< std::string > m_parentIdent
Definition: IWORKStyle.h:77
const boost::optional< std::string > m_ident
Definition: IWORKStyle.h:76
bool has(bool lookInParent=false) const
Check for the presence of a property.
Definition: IWORKPropertyMap.h:78
IWORKPropertyMap m_props
Definition: IWORKStyle.h:74
IWORKStylePtr_t m_parent
Definition: IWORKStyle.h:78
std::shared_ptr< IWORKStylesheet > IWORKStylesheetPtr_t
Definition: IWORKStylesheet.h:19

Generated for libetonyek by doxygen 1.8.13