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 
39 
44  void flatten();
45 
48  const IWORKPropertyMap &getPropertyMap() const;
49 
54  template<class Property>
55  bool has() const
56  {
57  return m_props.has<Property>(true);
58  }
59 
64  template<class Property>
65  const typename IWORKPropertyInfo<Property>::ValueType &get() const
66  {
67  return m_props.get<Property>(true);
68  }
69 
70  const boost::optional<std::string> &getIdent() const;
71 
72 private:
74 
75  const boost::optional<std::string> m_ident;
76  const boost::optional<std::string> m_parentIdent;
78 };
79 
80 }
81 
82 #endif // IWORKSTYLE_H_INCLUDED
83 
84 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
boost::shared_ptr< IWORKStylesheet > IWORKStylesheetPtr_t
Definition: IWORKStylesheet.h:19
bool link(const IWORKStylesheetPtr_t &stylesheet)
Find the parent style by its ID.
Definition: IWORKStyle.cpp:25
Definition: IWORKColorElement.cpp:19
const boost::optional< std::string > & getIdent() const
Definition: IWORKStyle.cpp:61
Represents a hierarchical style.
Definition: IWORKStyle.h:28
boost::shared_ptr< IWORKStyle > IWORKStylePtr_t
Definition: IWORKStyle_fwd.h:21
IWORKStyle(const IWORKPropertyMap &props, const boost::optional< std::string > &ident, const boost::optional< std::string > &parentIdent)
Definition: IWORKStyle.cpp:17
Represents a (hierarchical) property map.
Definition: IWORKPropertyMap.h:23
bool has() const
Check for the presence of a property.
Definition: IWORKStyle.h:55
const IWORKPropertyMap & getPropertyMap() const
Get the style's property map.
Definition: IWORKStyle.cpp:56
void flatten()
Copy attributes from parent style (recursively).
Definition: IWORKStyle.cpp:51
Definition: IWORKPropertyInfo.h:21
const boost::optional< std::string > m_parentIdent
Definition: IWORKStyle.h:76
const boost::optional< std::string > m_ident
Definition: IWORKStyle.h:75
Definition: KEY2Token.h:49
Definition: IWORKToken.h:218
bool has(bool lookInParent=false) const
Check for the presence of a property.
Definition: IWORKPropertyMap.h:77
const IWORKPropertyInfo< Property >::ValueType & get(bool lookInParent=false) const
Retrieve the value of a property.
Definition: IWORKPropertyMap.h:99
IWORKPropertyMap m_props
Definition: IWORKStyle.h:73
IWORKStylePtr_t m_parent
Definition: IWORKStyle.h:77

Generated for libetonyek by doxygen 1.8.8