Dash.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 libmspub 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 __DASH_H__
11#define __DASH_H__
12
13#include <boost/optional.hpp>
14#include <vector>
15
16namespace libmspub
17{
19{
22};
24{
36};
37struct Dot
38{
39 boost::optional<double> m_length;
40 unsigned m_count;
41 Dot(unsigned count) : m_length(), m_count(count)
42 {
43 }
44 Dot(unsigned count, double length) : m_length(length), m_count(count)
45 {
46 }
47};
48struct Dash
49{
50 double m_distance;
52 std::vector<Dot> m_dots; // empty vector is interpreted as solid line
53 Dash(double distance, DotStyle dotStyle) : m_distance(distance),
54 m_dotStyle(dotStyle), m_dots()
55 {
56 }
57};
58bool operator!=(const Dot &lhs, const Dot &rhs);
59bool operator==(const Dot &lhs, const Dot &rhs);
60bool operator==(const Dash &lhs, const Dash &rhs);
61Dash getDash(MSPUBDashStyle style, unsigned shapeLineWidthInEmu,
62 DotStyle dotStyle);
63} // namespace libmspub
64
65#endif /* __DASH_H__ */
66/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition: Arrow.h:14
DotStyle
Definition: Dash.h:19
@ RECT_DOT
Definition: Dash.h:20
@ ROUND_DOT
Definition: Dash.h:21
MSPUBDashStyle
Definition: Dash.h:24
@ DOT_SYS
Definition: Dash.h:27
@ DASH_DOT_GEL
Definition: Dash.h:33
@ DASH_DOT_SYS
Definition: Dash.h:28
@ MSPUB_DS_SOLID
Definition: Dash.h:25
@ DASH_DOT_DOT_SYS
Definition: Dash.h:29
@ DASH_GEL
Definition: Dash.h:31
@ LONG_DASH_DOT_GEL
Definition: Dash.h:34
@ LONG_DASH_GEL
Definition: Dash.h:32
@ LONG_DASH_DOT_DOT_GEL
Definition: Dash.h:35
@ DASH_SYS
Definition: Dash.h:26
@ DOT_GEL
Definition: Dash.h:30
bool operator==(const ColorReference &l, const ColorReference &r)
Definition: ColorReference.cpp:52
bool operator!=(const Dot &lhs, const Dot &rhs)
Definition: Dash.cpp:21
Dash getDash(MSPUBDashStyle style, unsigned shapeLineWidthEmu, DotStyle dotStyle)
Definition: Dash.cpp:43
Definition: Dash.h:49
double m_distance
Definition: Dash.h:50
Dash(double distance, DotStyle dotStyle)
Definition: Dash.h:53
std::vector< Dot > m_dots
Definition: Dash.h:52
DotStyle m_dotStyle
Definition: Dash.h:51
Definition: Dash.h:38
Dot(unsigned count, double length)
Definition: Dash.h:44
unsigned m_count
Definition: Dash.h:40
boost::optional< double > m_length
Definition: Dash.h:39
Dot(unsigned count)
Definition: Dash.h:41

Generated for libmspub by doxygen 1.9.3