Symbol: Transformable
src/apps/icon-o-matic/gui/ShapeListView.cpp
198
Transformable* transformables[count];
src/apps/icon-o-matic/gui/StyleListView.cpp
350
Transformable* transformables[count];
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.cpp
217
_WriteTransformable(LittleEndianBuffer& buffer, const Transformable* transformable)
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.cpp
219
int32 matrixSize = Transformable::matrix_size;
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.cpp
233
_WriteTranslation(LittleEndianBuffer& buffer, const Transformable* transformable)
src/apps/icon-o-matic/import_export/flat_icon/FlatIconExporter.cpp
685
fGradientTransformSize += Transformable::matrix_size * sizeof(float);
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.cpp
195
const Transformable& transform, Icon* icon)
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.cpp
93
Transformable transform;
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.h
26
class Transformable;
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.h
47
const Transformable& transform,
src/apps/icon-o-matic/import_export/svg/SVGExporter.cpp
478
SVGExporter::_AppendMatrix(const Transformable* object, BString& string) const
src/apps/icon-o-matic/import_export/svg/SVGExporter.cpp
492
double matrix[Transformable::matrix_size];
src/apps/icon-o-matic/import_export/svg/SVGExporter.h
21
class Transformable;
src/apps/icon-o-matic/import_export/svg/SVGExporter.h
49
void _AppendMatrix(const Transformable* object,
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
105
i * Transformable::matrix_size]);
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
107
Transformable transform(*(fShapes[i]));
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
132
const Transformable& transform)
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
38
count * Transformable::matrix_size]
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.cpp
55
i * Transformable::matrix_size]);
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.h
18
class Transformable;
src/apps/icon-o-matic/shape/commands/FreezeTransformationCommand.h
40
const Transformable& transform);
src/apps/icon-o-matic/shape/commands/TransformPointsCommand.h
19
class Transformable;
src/apps/icon-o-matic/transformable/CanvasTransformBox.cpp
61
Transformable t(*this);
src/apps/icon-o-matic/transformable/CanvasTransformBox.h
29
Transformable fParentTransform;
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
18
Transformable(),
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
237
Transformable::operator=(other);
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
30
Transformable(other),
src/apps/icon-o-matic/transformable/ChannelTransform.cpp
48
ChannelTransform::SetTransformation(const Transformable& other)
src/apps/icon-o-matic/transformable/ChannelTransform.h
14
class ChannelTransform : public Transformable {
src/apps/icon-o-matic/transformable/ChannelTransform.h
23
void SetTransformation(const Transformable& other);
src/apps/icon-o-matic/transformable/ResetTransformationCommand.cpp
29
Transformable** const objects,
src/apps/icon-o-matic/transformable/ResetTransformationCommand.cpp
33
new (nothrow) Transformable*[count] : NULL),
src/apps/icon-o-matic/transformable/ResetTransformationCommand.cpp
36
count * Transformable::matrix_size] : NULL),
src/apps/icon-o-matic/transformable/ResetTransformationCommand.cpp
42
memcpy(fObjects, objects, fCount * sizeof(Transformable*));
src/apps/icon-o-matic/transformable/ResetTransformationCommand.cpp
44
int32 matrixSize = Transformable::matrix_size;
src/apps/icon-o-matic/transformable/ResetTransformationCommand.cpp
81
int32 matrixSize = Transformable::matrix_size;
src/apps/icon-o-matic/transformable/ResetTransformationCommand.h
18
class Transformable;
src/apps/icon-o-matic/transformable/ResetTransformationCommand.h
27
Transformable** const objects,
src/apps/icon-o-matic/transformable/ResetTransformationCommand.h
40
Transformable** fObjects;
src/apps/icon-o-matic/transformable/TransformGradientBox.cpp
172
Transformable t(*this);
src/apps/icon-o-matic/transformable/TransformObjectsCommand.cpp
108
int32 matrixSize = Transformable::matrix_size;
src/apps/icon-o-matic/transformable/TransformObjectsCommand.cpp
21
Transformable** const objects,
src/apps/icon-o-matic/transformable/TransformObjectsCommand.cpp
40
new (nothrow) Transformable*[count] : NULL),
src/apps/icon-o-matic/transformable/TransformObjectsCommand.cpp
43
count * Transformable::matrix_size] : NULL),
src/apps/icon-o-matic/transformable/TransformObjectsCommand.cpp
49
memcpy(fObjects, objects, fCount * sizeof(Transformable*));
src/apps/icon-o-matic/transformable/TransformObjectsCommand.cpp
51
fCount * Transformable::matrix_size * sizeof(double));
src/apps/icon-o-matic/transformable/TransformObjectsCommand.h
18
class Transformable;
src/apps/icon-o-matic/transformable/TransformObjectsCommand.h
29
Transformable** const objects,
src/apps/icon-o-matic/transformable/TransformObjectsCommand.h
57
Transformable** fObjects;
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
118
fShapes[i]->StoreTo(&fOriginals[i * Transformable::matrix_size]);
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
134
Transformable* objects[fCount];
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
37
fOriginals = new double[fCount * Transformable::matrix_size];
src/apps/icon-o-matic/transformable/TransformShapesBox.cpp
94
fShapes[i]->LoadFrom(&fOriginals[i * Transformable::matrix_size]);
src/apps/icon-o-matic/transformable/TransformShapesBox.h
52
Transformable fParentTransform;
src/libs/icon/IconRenderer.cpp
122
const Transformable& transformation, const Container<Transformer>* transformers)
src/libs/icon/IconRenderer.cpp
252
IconRenderer::StyleHandler::_MergeTransformers(const Transformable* styleTransformation,
src/libs/icon/IconRenderer.cpp
253
const Container<Transformer>* transformers, const Transformable* shapeTransformation)
src/libs/icon/IconRenderer.cpp
272
styleTransformers[i++] = new (nothrow) Transformable(*styleTransformation);
src/libs/icon/IconRenderer.cpp
280
styleTransformers[i++] = new (nothrow) Transformable(*shapeTransformation);
src/libs/icon/IconRenderer.cpp
52
const Transformable& transformation,
src/libs/icon/IconRenderer.cpp
526
typedef agg::conv_transform<VertexSource, Transformable> ScaledPath;
src/libs/icon/IconRenderer.cpp
569
Transformable transform(*shape);
src/libs/icon/IconRenderer.cpp
61
const Transformable* styleTransformation,
src/libs/icon/IconRenderer.cpp
63
const Transformable* shapeTransformation);
src/libs/icon/IconRenderer.h
112
Transformable fGlobalTransform;
src/libs/icon/flat_icon/FlatIconImporter.cpp
147
_ReadTransformable(LittleEndianBuffer& buffer, Transformable* transformable)
src/libs/icon/flat_icon/FlatIconImporter.cpp
149
int32 matrixSize = Transformable::matrix_size;
src/libs/icon/flat_icon/FlatIconImporter.cpp
163
_ReadTranslation(LittleEndianBuffer& buffer, Transformable* transformable)
src/libs/icon/shape/ReferenceImage.cpp
103
if (dataSize != Transformable::matrix_size * sizeof(double))
src/libs/icon/shape/ReferenceImage.cpp
131
int32 size = Transformable::matrix_size;
src/libs/icon/shape/Shape.cpp
192
int32 size = Transformable::matrix_size;
src/libs/icon/shape/Shape.cpp
230
int32 size = Transformable::matrix_size;
src/libs/icon/shape/Shape.cpp
435
agg::conv_transform< ::VertexSource, Transformable>
src/libs/icon/shape/Shape.cpp
53
Transformable(),
src/libs/icon/shape/Shape.cpp
57
: Transformable(),
src/libs/icon/shape/Shape.cpp
89
Transformable(other),
src/libs/icon/shape/Shape.cpp
93
: Transformable(other),
src/libs/icon/shape/Shape.h
50
public _ICON_NAMESPACE Transformable,
src/libs/icon/shape/Shape.h
56
class Shape : public _ICON_NAMESPACE Transformable,
src/libs/icon/shape/VectorPath.cpp
961
VectorPath::ApplyTransform(const Transformable& transform)
src/libs/icon/shape/VectorPath.h
163
void ApplyTransform(const Transformable& transform);
src/libs/icon/style/GradientTransformable.cpp
100
Transformable(other),
src/libs/icon/style/GradientTransformable.cpp
102
: Transformable(other),
src/libs/icon/style/GradientTransformable.cpp
130
int32 size = Transformable::matrix_size;
src/libs/icon/style/GradientTransformable.cpp
187
if (Transformable::operator==(other))
src/libs/icon/style/GradientTransformable.cpp
29
Transformable(),
src/libs/icon/style/GradientTransformable.cpp
31
: Transformable(),
src/libs/icon/style/GradientTransformable.cpp
51
Transformable(),
src/libs/icon/style/GradientTransformable.cpp
53
: Transformable(),
src/libs/icon/style/GradientTransformable.cpp
610
Transformable::PrintToStream();
src/libs/icon/style/GradientTransformable.cpp
65
int32 size = Transformable::matrix_size;
src/libs/icon/style/GradientTransformable.h
50
public Transformable {
src/libs/icon/style/GradientTransformable.h
52
class Gradient : public Transformable {
src/libs/icon/transformable/Transformable.cpp
106
Transformable::SetTransform(const Transformable& other)
src/libs/icon/transformable/Transformable.cpp
115
Transformable&
src/libs/icon/transformable/Transformable.cpp
116
Transformable::operator=(const Transformable& other)
src/libs/icon/transformable/Transformable.cpp
127
Transformable&
src/libs/icon/transformable/Transformable.cpp
128
Transformable::Multiply(const Transformable& other)
src/libs/icon/transformable/Transformable.cpp
139
Transformable::Reset()
src/libs/icon/transformable/Transformable.cpp
149
Transformable::IsIdentity() const
src/libs/icon/transformable/Transformable.cpp
165
Transformable::IsTranslationOnly() const
src/libs/icon/transformable/Transformable.cpp
179
Transformable::IsNotDistorted() const
src/libs/icon/transformable/Transformable.cpp
188
Transformable::IsValid() const
src/libs/icon/transformable/Transformable.cpp
19
Transformable::Transformable()
src/libs/icon/transformable/Transformable.cpp
197
Transformable::operator==(const Transformable& other) const
src/libs/icon/transformable/Transformable.cpp
208
Transformable::operator!=(const Transformable& other) const
src/libs/icon/transformable/Transformable.cpp
229
Transformable::TransformBounds(BRect bounds) const
src/libs/icon/transformable/Transformable.cpp
25
Transformable::Transformable(const Transformable& other)
src/libs/icon/transformable/Transformable.cpp
252
Transformable::TranslateBy(BPoint offset)
src/libs/icon/transformable/Transformable.cpp
262
Transformable::RotateBy(BPoint origin, double degrees)
src/libs/icon/transformable/Transformable.cpp
274
Transformable::ScaleBy(BPoint origin, double xScale, double yScale)
src/libs/icon/transformable/Transformable.cpp
286
Transformable::ShearBy(BPoint origin, double xShear, double yShear)
src/libs/icon/transformable/Transformable.cpp
298
Transformable::TransformationChanged()
src/libs/icon/transformable/Transformable.cpp
305
Transformable::PrintToStream() const
src/libs/icon/transformable/Transformable.cpp
31
Transformable::~Transformable()
src/libs/icon/transformable/Transformable.cpp
40
Transformable::Invert()
src/libs/icon/transformable/Transformable.cpp
53
Transformable::InverseTransform(double* x, double* y) const
src/libs/icon/transformable/Transformable.cpp
60
Transformable::InverseTransform(BPoint* point) const
src/libs/icon/transformable/Transformable.cpp
75
Transformable::InverseTransform(const BPoint& point) const
src/libs/icon/transformable/Transformable.cpp
84
Transformable::StoreTo(double matrix[matrix_size]) const
src/libs/icon/transformable/Transformable.cpp
91
Transformable::LoadFrom(const double matrix[matrix_size])
src/libs/icon/transformable/Transformable.cpp
96
Transformable t;
src/libs/icon/transformable/Transformable.h
27
class Transformable : public StyleTransformer,
src/libs/icon/transformable/Transformable.h
34
Transformable();
src/libs/icon/transformable/Transformable.h
35
Transformable(const Transformable& other);
src/libs/icon/transformable/Transformable.h
36
virtual ~Transformable();
src/libs/icon/transformable/Transformable.h
54
void SetTransform(const Transformable& other);
src/libs/icon/transformable/Transformable.h
55
Transformable& operator=(const Transformable& other);
src/libs/icon/transformable/Transformable.h
56
Transformable& Multiply(const Transformable& other);
src/libs/icon/transformable/Transformable.h
64
bool operator==(const Transformable& other) const;
src/libs/icon/transformable/Transformable.h
65
bool operator!=(const Transformable& other) const;
src/servers/app/ServerFont.cpp
1005
Transformable& fTransform;
src/servers/app/ServerFont.cpp
1018
Transformable transform(EmbeddedTransformation());
src/servers/app/ServerFont.cpp
1040
Transformable transform(EmbeddedTransformation());
src/servers/app/ServerFont.cpp
1193
Transformable
src/servers/app/ServerFont.cpp
1197
Transformable transform;
src/servers/app/ServerFont.cpp
920
BoundingBoxConsumer(Transformable& transform, BRect* rectArray,
src/servers/app/ServerFont.h
171
Transformable EmbeddedTransformation() const;
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
110
typedef agg::conv_transform<FontCacheEntry::CurveConverter, Transformable>
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
113
typedef agg::conv_transform<FontCacheEntry::ContourConverter, Transformable>
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
123
const Transformable& transform,
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
356
const Transformable& fTransform;
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
379
Transformable transform(fEmbeddedTransformation);
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
415
Transformable transform(fEmbeddedTransformation);
src/servers/app/drawing/Painter/AGGTextRenderer.h
95
Transformable fEmbeddedTransformation;
src/servers/app/drawing/Painter/Painter.h
357
Transformable fTransform;
src/servers/app/drawing/Painter/Painter.h
75
const Transformable& Transform() const
src/servers/app/drawing/Painter/Transformable.cpp
107
Transformable::SetTransformable(const Transformable& other)
src/servers/app/drawing/Painter/Transformable.cpp
116
Transformable&
src/servers/app/drawing/Painter/Transformable.cpp
117
Transformable::operator=(const Transformable& other)
src/servers/app/drawing/Painter/Transformable.cpp
127
Transformable&
src/servers/app/drawing/Painter/Transformable.cpp
128
Transformable::operator=(const agg::trans_affine& other)
src/servers/app/drawing/Painter/Transformable.cpp
138
Transformable&
src/servers/app/drawing/Painter/Transformable.cpp
139
Transformable::Multiply(const Transformable& other)
src/servers/app/drawing/Painter/Transformable.cpp
150
Transformable::Reset()
src/servers/app/drawing/Painter/Transformable.cpp
157
Transformable::IsIdentity() const
src/servers/app/drawing/Painter/Transformable.cpp
173
Transformable::IsDilation() const
src/servers/app/drawing/Painter/Transformable.cpp
182
Transformable::Transform(double* x, double* y) const
src/servers/app/drawing/Painter/Transformable.cpp
189
Transformable::Transform(BPoint* point) const
src/servers/app/drawing/Painter/Transformable.cpp
204
Transformable::Transform(const BPoint& point) const
src/servers/app/drawing/Painter/Transformable.cpp
213
Transformable::InverseTransform(double* x, double* y) const
src/servers/app/drawing/Painter/Transformable.cpp
220
Transformable::InverseTransform(BPoint* point) const
src/servers/app/drawing/Painter/Transformable.cpp
235
Transformable::InverseTransform(const BPoint& point) const
src/servers/app/drawing/Painter/Transformable.cpp
244
Transformable::TransformBounds(const BRect& bounds) const
src/servers/app/drawing/Painter/Transformable.cpp
267
Transformable::IsTranslationOnly() const
src/servers/app/drawing/Painter/Transformable.cpp
278
Transformable::TranslateBy(BPoint offset)
src/servers/app/drawing/Painter/Transformable.cpp
288
Transformable::RotateBy(BPoint origin, double radians)
src/servers/app/drawing/Painter/Transformable.cpp
300
Transformable::ScaleBy(BPoint origin, double xScale, double yScale)
src/servers/app/drawing/Painter/Transformable.cpp
31
Transformable::Transformable()
src/servers/app/drawing/Painter/Transformable.cpp
312
Transformable::ShearBy(BPoint origin, double xShear, double yShear)
src/servers/app/drawing/Painter/Transformable.cpp
37
Transformable::Transformable(const Transformable& other)
src/servers/app/drawing/Painter/Transformable.cpp
43
Transformable::Transformable(const BMessage* archive)
src/servers/app/drawing/Painter/Transformable.cpp
60
Transformable::~Transformable()
src/servers/app/drawing/Painter/Transformable.cpp
66
Transformable::Archive(BMessage* into, bool deep) const
src/servers/app/drawing/Painter/Transformable.cpp
86
Transformable::StoreTo(double matrix[6]) const
src/servers/app/drawing/Painter/Transformable.cpp
93
Transformable::LoadFrom(double matrix[6])
src/servers/app/drawing/Painter/Transformable.cpp
97
Transformable t;
src/servers/app/drawing/Painter/Transformable.h
18
class Transformable : public BArchivable,
src/servers/app/drawing/Painter/Transformable.h
21
Transformable();
src/servers/app/drawing/Painter/Transformable.h
22
Transformable(const Transformable& other);
src/servers/app/drawing/Painter/Transformable.h
23
Transformable(const BMessage* archive);
src/servers/app/drawing/Painter/Transformable.h
24
virtual ~Transformable();
src/servers/app/drawing/Painter/Transformable.h
34
void SetTransformable(const Transformable& other);
src/servers/app/drawing/Painter/Transformable.h
35
Transformable& operator=(const agg::trans_affine& other);
src/servers/app/drawing/Painter/Transformable.h
36
Transformable& operator=(const Transformable& other);
src/servers/app/drawing/Painter/Transformable.h
37
Transformable& Multiply(const Transformable& other);
src/servers/app/font/FontCacheEntry.h
101
typedef agg::conv_transform<ContourConverter, Transformable>
src/servers/app/font/FontCacheEntry.h
98
typedef agg::conv_transform<CurveConverter, Transformable>
src/tests/servers/app/painter/Painter.cpp
781
Transformable transform;
src/tests/servers/app/painter/Painter.cpp
903
Transformable transform;
src/tests/servers/app/painter/ShapeConverter.cpp
15
Transformable(),
src/tests/servers/app/painter/ShapeConverter.cpp
23
Transformable(),
src/tests/servers/app/painter/ShapeConverter.h
24
public Transformable {