Searched refs:Shape (Results 1 - 25 of 86) sorted by relevance

1234

/haiku/src/apps/icon-o-matic/shape/commands/
H A DMoveShapesCommand.h18 class Shape;
24 class MoveShapesCommand : public MoveCommand<Shape> {
27 Container<Shape>* container,
28 Shape** shapes,
H A DAddShapesCommand.h18 class Shape;
24 class AddShapesCommand : public AddCommand<Shape> {
27 Container<Shape>* container,
28 const Shape* const* shapes,
H A DRemoveShapesCommand.h19 class Shape;
25 class RemoveShapesCommand : public RemoveCommand<Shape> {
28 Container<Shape>* container,
H A DMoveShapesCommand.cpp16 #include "Shape.h"
23 MoveShapesCommand::MoveShapesCommand(Container<Shape>* container,
24 Shape** shapes, int32 count, int32 toIndex)
25 : MoveCommand<Shape>(container, shapes, count, toIndex)
H A DAddShapesCommand.cpp16 #include "Shape.h"
23 AddShapesCommand::AddShapesCommand(Container<Shape>* container,
24 const Shape* const* shapes, int32 count, int32 index)
25 : AddCommand<Shape>(container, shapes, count, true, index)
H A DRemoveShapesCommand.cpp16 #include "Shape.h"
24 Container<Shape>* container, const int32* indices, int32 count)
25 : RemoveCommand<Shape>(container, indices, count)
/haiku/src/libs/icon/transformer/
H A DTransformerFactory.h23 class Shape;
40 Shape* shape);
44 Shape* shape);
H A DTransformerFactory.cpp14 #include "Shape.h"
28 TransformerFactory::TransformerFor(uint32 type, VertexSource& source, Shape* shape)
46 TransformerFactory::TransformerFor(BMessage* message, VertexSource& source, Shape* shape)
H A DPerspectiveTransformer.h31 class Shape;
60 Shape* shape);
63 Shape* shape,
121 Shape* fShape;
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformShapesBox.h17 class Shape;
26 const Shape** objects,
39 Shape** Shapes() const
45 Shape** fShapes;
H A DTransformGradientBox.h21 class Shape;
31 Shape* parent);
53 Shape* fShape;
/haiku/src/libs/icon/
H A DIcon.h30 class Shape;
45 class Icon : public ContainerListener<Shape>,
67 const Container<Shape>* Shapes() const
69 Container<Shape>* Shapes()
79 Container<Shape> fShapes;
83 // ContainerListener<Shape> interface
84 virtual void ItemAdded(Shape* shape, int32 index);
85 virtual void ItemRemoved(Shape* shape);
H A DIcon.cpp17 #include "Shape.h"
79 Shape* shape = other.fShapes.ItemAtFast(i);
80 Shape* clone = shape->Clone();
135 Icon::ItemAdded(Shape* shape, int32 index)
143 Icon::ItemRemoved(Shape* shape)
153 const Shape* shape = dynamic_cast<const Shape*>(object);
/haiku/src/libs/icon/shape/
H A DShape.cpp10 #include "Shape.h"
50 Shape::Shape(::Style* style) function in class:Shape
86 Shape::Shape(const Shape& other) function in class:Shape
143 Shape::~Shape()
162 Shape::Unarchive(BMessage* archive)
206 Shape
[all...]
H A DPathSourceShape.cpp30 : Shape(style),
39 : Shape(other),
58 Shape::Unarchive(archive);
85 status_t ret = Shape::Archive(into, deep);
102 PropertyObject* object = Shape::MakePropertyObject();
122 Shape::SetToPropertyObject(object);
144 return Shape::InitCheck();
H A DShape.h36 // ie add "AppearanceChanged(Shape* shape)"
42 // TODO: this is not useful for all subclasses of Shape (e.g. ReferenceImage)
49 class Shape : public IconObject, class in inherits:IconObject,_ICON_NAMESPACETransformable,Observer,ContainerListener,ContainerListener,PathListener
56 class Shape : public _ICON_NAMESPACE Transformable,
61 Shape(_ICON_NAMESPACE Style* style);
62 Shape(const Shape& other);
63 virtual ~Shape();
100 // Shape
102 virtual Shape* Clon
[all...]
H A DReferenceImage.h18 #include "Shape.h"
31 class ReferenceImage : public _ICON_NAMESPACE Shape {
51 // Shape
53 virtual Shape* Clone() const
H A DPathSourceShape.h14 #include "Shape.h"
28 class PathSourceShape : public _ICON_NAMESPACE Shape {
57 { Shape::SetStyle(style); }
59 { return Shape::Style(); }
/haiku/src/apps/icon-o-matic/gui/
H A DShapeListView.h26 class Shape;
39 public ContainerListener<Shape> {
67 // ContainerListener<Shape> interface
68 virtual void ItemAdded(Shape* shape, int32 index);
69 virtual void ItemRemoved(Shape* shape);
73 void SetShapeContainer(Container<Shape>* container);
79 bool _AddShape(Shape* shape, int32 index);
80 bool _RemoveShape(Shape* shape);
82 ShapeListItem* _ItemForShape(Shape* shape) const;
89 Container<Shape>* fShapeContaine
[all...]
H A DTransformerListView.h25 class Shape;
67 void SetShape(Shape* shape);
83 Shape* fShape;
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DSVGExporter.h19 class Shape;
44 status_t _ExportShape(const Shape* shape,
/haiku/src/libs/icon/message/
H A DMessageImporter.h31 class Shape;
56 Container<Shape>* shapes) const;
/haiku/src/apps/icon-o-matic/import_export/message/
H A DMessageExporter.h20 class Shape;
42 status_t _Export(const Shape* shape,
/haiku/src/add-ons/input_server/methods/pen/
H A DPenInputInkWindow.h7 #include <Shape.h>
/haiku/src/libs/icon/flat_icon/
H A DFlatIconImporter.h32 class Shape;
60 Shape* _ReadPathSourceShape(
67 Container<Shape>* shapes);

Completed in 104 milliseconds

1234