IWORKColorElement.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 IWORKCOLORELEMENT_H_INCLUDED
11#define IWORKCOLORELEMENT_H_INCLUDED
12
13#include <boost/optional.hpp>
14
15#include "IWORKTypes.h"
16#include "IWORKXMLContextBase.h"
17
18namespace libetonyek
19{
20
22{
23public:
24 IWORKColorElement(IWORKXMLParserState &state, boost::optional<IWORKColor> &color);
25
26protected:
27 void attribute(int name, const char *value) override;
28 IWORKXMLContextPtr_t element(int name) override;
29 void endOfElement() override;
30
31private:
32 boost::optional<IWORKColor> &m_color;
33 std::string m_type;
34 double m_r;
35 double m_g;
36 double m_b;
37 double m_w;
38 double m_c;
39 double m_m;
40 double m_y;
41 double m_k;
42 double m_a;
43};
44
45}
46
47#endif // IWORKCOLORELEMENT_H_INCLUDED
48
49/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition IWORKColorElement.h:22
void endOfElement() override
Definition IWORKColorElement.cpp:107
double m_k
Definition IWORKColorElement.h:41
double m_y
Definition IWORKColorElement.h:40
double m_w
Definition IWORKColorElement.h:37
std::string m_type
Definition IWORKColorElement.h:33
IWORKColorElement(IWORKXMLParserState &state, boost::optional< IWORKColor > &color)
Definition IWORKColorElement.cpp:24
void attribute(int name, const char *value) override
Definition IWORKColorElement.cpp:40
boost::optional< IWORKColor > & m_color
Definition IWORKColorElement.h:32
double m_c
Definition IWORKColorElement.h:38
double m_m
Definition IWORKColorElement.h:39
double m_g
Definition IWORKColorElement.h:35
double m_r
Definition IWORKColorElement.h:34
double m_b
Definition IWORKColorElement.h:36
double m_a
Definition IWORKColorElement.h:42
Definition IWORKXMLContextBase.h:28
Definition IWORKXMLParserState.h:32
@ value
Definition IWORKToken.h:631
@ element
Definition IWORKToken.h:192
@ color
Definition IWORKToken.h:155
@ name
Definition IWORKToken.h:585
Definition IWORKBezierElement.cpp:21
std::shared_ptr< IWORKXMLContext > IWORKXMLContextPtr_t
Definition IWORKXMLContext.h:20

Generated for libetonyek by doxygen 1.12.0