Ipelib
|
#include <ipeobject.h>
Inherited by ipe::Group, ipe::Image, ipe::Path, ipe::Reference, and ipe::Text.
Public Types | |
enum | Type { EGroup, EPath, EText, EImage, EReference } |
Public Member Functions | |
virtual | ~Object ()=0 |
virtual void | accept (Visitor &visitor) const =0 |
virtual Object * | clone () const =0 |
virtual Group * | asGroup () |
virtual Text * | asText () |
virtual Path * | asPath () |
virtual Image * | asImage () |
virtual Reference * | asReference () |
virtual Type | type () const =0 |
virtual TPinned | pinned () const |
void | setPinned (TPinned pin) |
TTransformations | transformations () const |
void | setTransformations (TTransformations trans) |
void | setMatrix (const Matrix &matrix) |
const Matrix & | matrix () const |
virtual bool | setAttribute (Property prop, Attribute value, Attribute stroke, Attribute fill) |
virtual Attribute | getAttribute (Property prop) |
virtual void | saveAsXml (Stream &stream, String layer) const =0 |
virtual void | draw (Painter &painter) const =0 |
virtual void | drawSimple (Painter &painter) const =0 |
virtual double | distance (const Vector &v, const Matrix &m, double bound) const =0 |
virtual void | addToBBox (Rect &box, const Matrix &m, bool cp) const =0 |
virtual void | snapVtx (const Vector &mouse, const Matrix &m, Vector &pos, double &bound) const =0 |
virtual void | checkStyle (const Cascade *sheet, AttributeSeq &seq) const |
virtual void | snapBnd (const Vector &mouse, const Matrix &m, Vector &pos, double &bound) const |
Protected Member Functions | |
Object () | |
Object (const AllAttributes &attr) | |
Object (const Object &rhs) | |
Object (const XmlAttributes &attr) | |
void | saveAttributesAsXml (Stream &stream, String layer) const |
Static Protected Member Functions | |
static void | checkSymbol (Kind kind, Attribute attr, const Cascade *sheet, AttributeSeq &seq) |
Protected Attributes | |
Matrix | iMatrix |
TPinned | iPinned: 8 |
TTransformations | iTransformations: 8 |
Base class for all Ipe objects, composite or leaf.
All objects are derived from this class. It provides functionality common to all objects, and carries the standard attributes.
All Object's provide a constant time copy constructor (and a virtual Object::clone() method). Objects of non-constant size realize this by separating the implementation and using reference counting. In particular, copying a composite object does not create new copies of the components.
Object has only three attributes: the transformation matrix, the pinning status, and the allowed transformations.
If an object is pinned, it cannot be moved at all (or only in the non-pinned direction) from the Ipe user interface.
Restricting the allowed transformations works somewhat differently: It doesn't stop transformations being applied to the object, but they only effect the position of the reference point (the origin of the object coordinate system), and (if transformations() == ETransformationsRigidMotions) the orientation of the object coordinate system.
enum ipe::Object::Type |
|
pure virtual |
Pure virtual destructor.
|
explicitprotected |
Create object with identity matrix, no pinning, all transformations.
|
explicitprotected |
Create object by taking pinning/transforming from attr and setting identity matrix.
|
protected |
Copy constructor.
|
explicitprotected |
Construct from XML stream.
|
pure virtual |
Calls visitXXX method of the visitor.
Implemented in ipe::Path, ipe::Group, ipe::Text, ipe::Reference, and ipe::Image.
|
pure virtual |
Make a copy of this object (constant-time).
Implemented in ipe::Group, ipe::Reference, ipe::Text, ipe::Path, and ipe::Image.
|
virtual |
Return pointer to this object if it is an Group, 0 otherwise.
Reimplemented in ipe::Group.
|
virtual |
|
virtual |
|
virtual |
Return pointer to this object if it is an Image , 0 otherwise.
Reimplemented in ipe::Image.
|
virtual |
Return pointer to this object if it is an Ref, 0 otherwise.
Reimplemented in ipe::Reference.
|
pure virtual |
Implemented in ipe::Group, ipe::Reference, ipe::Text, ipe::Path, and ipe::Image.
|
virtual |
Return pinning mode of the object.
Reimplemented in ipe::Group.
void Object::setPinned | ( | TPinned | pin | ) |
Set pinning mode of the object.
|
inline |
Return allowed transformations of the object.
void Object::setTransformations | ( | TTransformations | trans | ) |
Set allowed transformations of the object.
void Object::setMatrix | ( | const Matrix & | matrix | ) |
Set the transformation matrix.
Don't use this on an Object in a Page, because it wouldn't invalidate its bounding box. Call Page::transform instead.
|
inline |
Return transformation matrix.
|
virtual |
Set an attribute on this object.
Returns true if an attribute was actually changed. The arguments stroke and fill are only used then prop is EPropPathMode, and stroking or filling is added to an object that didn't have it before.
Reimplemented in ipe::Path, ipe::Group, ipe::Reference, and ipe::Text.
Get setting of an attribute of this object.
If object does not have this attribute, returnes "undefined" attribute.
Reimplemented in ipe::Path, ipe::Reference, and ipe::Text.
Save the object in XML format.
Implemented in ipe::Path, ipe::Group, ipe::Reference, ipe::Text, and ipe::Image.
|
pure virtual |
Draw the object.
Implemented in ipe::Path, ipe::Group, ipe::Reference, ipe::Text, and ipe::Image.
|
pure virtual |
Draw simple version for selecting and transforming.
Implemented in ipe::Path, ipe::Group, ipe::Reference, ipe::Text, and ipe::Image.
|
pure virtual |
Return distance of transformed object to point v. If larger than bound, can just return bound.
Implemented in ipe::Path, ipe::Group, ipe::Text, ipe::Reference, and ipe::Image.
Extend box to include the object transformed by m.
For objects in a page, don't call this directly. The Page caches the bounding box of each object, so it is far more efficient to call Page::bbox.
Control points that lie outside the visual object are included if cp is true.
If called with an empty box and cp == false
, the result of this function is a tight bounding box for the object, with a little leeway in case the boundary is determined by a spline (it has to be approximated to perform this operation).
Implemented in ipe::Path, ipe::Group, ipe::Text, ipe::Reference, and ipe::Image.
|
pure virtual |
Compute possible vertex snapping position for transformed object.
Looks only for positions closer than bound. If successful, modify pos and bound.
Implemented in ipe::Path, ipe::Group, ipe::Text, ipe::Reference, and ipe::Image.
|
virtual |
Check all symbolic attributes.
Reimplemented in ipe::Path, ipe::Group, ipe::Reference, and ipe::Text.
|
virtual |
Compute boundary snapping position for transformed object.
Looks only for positions closer than bound. If successful, modify pos and bound. The default implementation does nothing.
Reimplemented in ipe::Path, ipe::Group, and ipe::Reference.
Write layer, pin, transformations, matrix to XML stream.
|
staticprotected |
Check whether attribute is either absolute or defined in the style sheet cascade sheet. Add attr to seq if this is not the case.
|
protected |
|
protected |
|
protected |