|
| | Artboard () |
| | Constructs an empty Artboard object.
|
| |
| | Artboard (const Artboard &a_) |
| | Constructs a new Artboard object from an existing Artboard object (copy constructor)
|
| |
| virtual | ~Artboard () |
| | Destructs an Artboard object.
|
| |
| virtual Artboard & | operator= (const Artboard &rhs_) |
| | Assigns one Artboard object to another.
|
| |
| virtual bool | isEmpty () const |
| | Gets whether the target Artboard object is empty (constructed with the default ctor)
|
| |
| virtual bool | valid () const |
| | Tests the validity of the target artboard.
|
| |
| virtual bool | dispose () |
| | Removes the artboard from the document.
|
| |
| virtual bool | operator== (const Artboard &rhs_) const |
| | Tests whether a given Artboard object is the same as another.
|
| |
| virtual bool | operator!= (const Artboard &rhs_) const |
| | Tests whether a given Artboard object is not the same as another.
|
| |
| virtual ArtboardRect | bounds () const |
| | Gets the position (bounds) of the artboard.
|
| |
| virtual void | setBounds (const ArtboardRect &bounds_) |
| | Sets the position (bounds) of the artboard.
|
| |
| virtual ArtboardPoint | rulerOrigin () const |
| | Gets the ruler origin point of the artboard, relative to the artboard itself.
|
| |
| virtual void | setRulerOrigin (const ArtboardPoint &origin_) |
| | Sets the ruler origin point of the artboard, relative to the artboard itself.
|
| |
| virtual std::string | name () const |
| | Gets the artboard's name.
|
| |
| virtual void | setName (const std::string &name_) |
| | Sets the artboard's name.
|
| |
| virtual ArtColor | color () const |
| | Gets the color for the artboard.
|
| |
| virtual void | setColor (const ArtColor &color_) |
| | Sets the color for the artboard.
|
| |
| virtual bool | editable () const |
| | Gets whether the artboard is editable.
|
| |
| virtual void | setEditable (const bool editable_) |
| | Sets whether the artboard is editable.
|
| |
| virtual bool | locked () const |
| | Gets whether the artboard is locked.
|
| |
| virtual void | setLocked (const bool lock_) |
| | Sets whether the artboard is locked.
|
| |
| virtual bool | hidden () const |
| | Gets whether the artboard is hidden.
|
| |
| virtual void | setHidden (const bool hidden_) |
| | Sets whether the artboard is hidden.
|
| |
| virtual bool | active () const |
| | Gets whether the target artboard is the current one in the current document.
|
| |
| virtual ArtVector | allArtObjects () const |
| | Gets all the art objects that "touch" the target artboard.
|
| |
Represents an individual artboard in the current document.