/usr/include/gnash/asobj/LineStyle.h is in gnash-dev 0.8.11~git20160109-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | // LineStyle.h Line style types.
//
// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
// Free Software Foundation, Inc
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
// Based on public domain work by Thatcher Ulrich <tu@tulrich.com> 2003
#ifndef GNASH_LINESTYLE_H
#define GNASH_LINESTYLE_H
#include "RGBA.h"
#include "SWF.h"
#include <utility>
namespace gnash {
class SWFStream;
class movie_definition;
class RunResources;
}
namespace gnash {
enum CapStyle {
CAP_ROUND = 0,
CAP_NONE = 1,
CAP_SQUARE = 2
};
enum JoinStyle {
JOIN_ROUND = 0,
JOIN_BEVEL = 1,
JOIN_MITER = 2
};
/// For the outside of outline shapes, or just bare lines.
class LineStyle
{
public:
/// Construct a default LineStyle.
LineStyle();
/// Construct a line style with explicit values
///
/// @param width Thickness of line in twips.
/// Zero for hair line
///
/// @param color Line color
/// @param scaleThicknessVertically
/// @param scaleThicknessHorizontally
/// @param noClose
/// @param startCapStyle
/// @param endCapStyle
/// @param joinStyle
/// @param miterLimitFactor
LineStyle(std::uint16_t width, rgba color,
bool scaleThicknessVertically=true,
bool scaleThicknessHorizontally=true,
bool pixelHinting=false,
bool noClose=false,
CapStyle startCapStyle=CAP_ROUND,
CapStyle endCapStyle=CAP_ROUND,
JoinStyle joinStyle=JOIN_ROUND,
float miterLimitFactor=1.0f
)
:
m_width(width),
m_color(std::move(color)),
_scaleVertically(scaleThicknessVertically),
_scaleHorizontally(scaleThicknessHorizontally),
_pixelHinting(pixelHinting),
_noClose(noClose),
_startCapStyle(startCapStyle),
_endCapStyle(endCapStyle),
_joinStyle(joinStyle),
_miterLimitFactor(miterLimitFactor)
{
}
/// Read the line style from an SWF stream
//
/// Stream is assumed to be positioned at
/// the right place.
///
/// Throw a ParserException if there's no enough bytes in the
/// currently opened tag for reading. See stream::ensureBytes()
void read(SWFStream& in, SWF::TagType t, movie_definition& md,
const RunResources& r);
/// Read two lines styles from the SWF stream
/// at the same time -- this is used in morphing.
void read_morph(SWFStream& in, SWF::TagType t, movie_definition& md,
const RunResources& r, LineStyle *pOther);
/// Return thickness of the line, in TWIPS
std::uint16_t getThickness() const {
return m_width;
}
/// Return true if line thickness should be scaled vertically
bool scaleThicknessVertically() const {
return _scaleVertically;
}
/// Return true if line thickness should be scaled horizontally
bool scaleThicknessHorizontally() const {
return _scaleHorizontally;
}
/// Return the start cap style
CapStyle startCapStyle() const {
return _startCapStyle;
}
/// Return the end cap style
CapStyle endCapStyle() const {
return _endCapStyle;
}
/// Return the join style
JoinStyle joinStyle() const {
return _joinStyle;
}
/// Return the miter limit factor
float miterLimitFactor() const {
return _miterLimitFactor;
}
/// Return true if stroke should not be closed if the stroke's last point
/// matches the first point. Caps should be applied instead of a join
bool noClose() const {
return _noClose;
}
/// Return true if pixel hinting should be activated
bool doPixelHinting() const {
return _pixelHinting;
}
/// Return line color and alpha
const rgba& get_color() const { return m_color; }
/// Set this style to the interpolation of the given one
//
/// @param ls1 First LineStyle to interpolate.
/// @param ls2 Second LineStyle to interpolate.
/// @ratio The interpolation factor (0..1).
/// When 0, this will be equal to ls1, when 1
/// this will be equal to ls2.
void set_lerp(const LineStyle& ls1, const LineStyle& ls2, float ratio);
private:
/// Width in twips.
std::uint16_t m_width;
rgba m_color;
bool _scaleVertically;
bool _scaleHorizontally;
bool _pixelHinting;
bool _noClose;
CapStyle _startCapStyle;
CapStyle _endCapStyle;
JoinStyle _joinStyle;
float _miterLimitFactor;
};
inline void
setLerp(LineStyle& s, const LineStyle& ls1, const LineStyle& ls2, double ratio)
{
s.set_lerp(ls1, ls2, ratio);
}
} // namespace gnash
#endif
// Local Variables:
// mode: C++
// indent-tabs-mode: t
// End:
|