AdgCanvas — The drawing container
AdgCanvas; AdgCanvas * adg_canvas_new (void); void adg_canvas_set_size (AdgCanvas *canvas, const AdgPair *pair); void adg_canvas_set_size_explicit (AdgCanvas *canvas, gdouble x, gdouble y); const AdgPair * adg_canvas_get_size (AdgCanvas *canvas); void adg_canvas_set_background_dress (AdgCanvas *canvas, AdgDress dress); AdgDress adg_canvas_get_background_dress (AdgCanvas *canvas); void adg_canvas_set_frame_dress (AdgCanvas *canvas, AdgDress dress); AdgDress adg_canvas_get_frame_dress (AdgCanvas *canvas); void adg_canvas_set_title_block (AdgCanvas *canvas, AdgTitleBlock *title_block); AdgTitleBlock * adg_canvas_get_title_block (AdgCanvas *canvas); void adg_canvas_set_top_margin (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_top_margin (AdgCanvas *canvas); void adg_canvas_set_right_margin (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_right_margin (AdgCanvas *canvas); void adg_canvas_set_bottom_margin (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_bottom_margin (AdgCanvas *canvas); void adg_canvas_set_left_margin (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_left_margin (AdgCanvas *canvas); void adg_canvas_set_margins (AdgCanvas *canvas, gdouble top, gdouble right, gdouble bottom, gdouble left); void adg_canvas_switch_frame (AdgCanvas *canvas, gboolean new_state); gboolean adg_canvas_has_frame (AdgCanvas *canvas); void adg_canvas_set_top_padding (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_top_padding (AdgCanvas *canvas); void adg_canvas_set_right_padding (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_right_padding (AdgCanvas *canvas); void adg_canvas_set_bottom_padding (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_bottom_padding (AdgCanvas *canvas); void adg_canvas_set_left_padding (AdgCanvas *canvas, gdouble value); gdouble adg_canvas_get_left_padding (AdgCanvas *canvas); void adg_canvas_set_paddings (AdgCanvas *canvas, gdouble top, gdouble right, gdouble bottom, gdouble left);
"background-dress" AdgDress : Read / Write "bottom-margin" gdouble : Read / Write "bottom-padding" gdouble : Read / Write "frame-dress" AdgDress : Read / Write "has-frame" gboolean : Read / Write "left-margin" gdouble : Read / Write "left-padding" gdouble : Read / Write "right-margin" gdouble : Read / Write "right-padding" gdouble : Read / Write "size" AdgPair* : Read / Write "title-block" AdgTitleBlock* : Read / Write "top-margin" gdouble : Read / Write "top-padding" gdouble : Read / Write
The canvas is the toplevel entity of an ADG drawing. It can be bound to a GTK+ widget, such as AdgGtkArea, or manually rendered to a custom surface.
Tipically, the canvas contains the description and properties of the media used, such as such as size (if relevant), margins, border and paddings. This approach clearly follows the block model of the CSS specifications level 2.
The paddings specify the distance between the entities contained by the canvas and the border. The margins specify the distance between the canvas border and the media extents.
The canvas (hence the media) size can be explicitely specified
by directly writing to the "size" property or using any
valid setter, such as adg_canvas_set_size(),
adg_canvas_set_size_explicit() or the convenient
adg_canvas_set_paper() GTK+ wrapper. You can also set explicitely
only one dimension and let the other one be computed automatically.
This is done by using the special value 0 that specifies a side
must be autocalculated.
By default either width and height must be autocalculated (are set to 0), so the arrange() phase on the canvas is performed. Margins and paddings are then added to the extents to get the border coordinates and the final bounding box.
When the size is explicitely set, instead, the final bounding box is forcibly set to this value without taking the canvas extents into account. The margins are then subtracted to get the coordinates of the border. In this case, the paddings are simply ignored.
typedef struct _AdgCanvas AdgCanvas;
All fields are private and should not be used directly. Use its public methods instead.
AdgCanvas * adg_canvas_new (void);
Creates a new empty canvas object.
|
Returns : |
the canvas |
void adg_canvas_set_size (AdgCanvas *canvas, const AdgPair *pair);
Sets a specific size on canvas. The x and/or y
components of the returned AdgPair could be 0, in which
case the size returned by adg_entity_get_extents() on
canvas will be used instead.
|
|
an AdgCanvas |
|
|
the new size for the canvas |
void adg_canvas_set_size_explicit (AdgCanvas *canvas, gdouble x, gdouble y);
A convenient function to set the size of canvas using
explicit coordinates. Check adg_canvas_set_size() for
further details.
|
|
an AdgCanvas |
|
|
the new width of the canvas or 0 to reset |
|
|
the new height of the canvas or 0 to reset |
const AdgPair * adg_canvas_get_size (AdgCanvas *canvas);
Gets the specific size set on canvas. The x and/or y
components of the returned AdgPair could be 0, in which
case the size returned by adg_entity_get_extents() on
canvas will be used instead.
|
|
an AdgCanvas |
|
Returns : |
the explicit size set on this canvas or NULL on errors |
void adg_canvas_set_background_dress (AdgCanvas *canvas, AdgDress dress);
Sets a new background dress for rendering canvas: the new
dress must be a color dress.
AdgDress adg_canvas_get_background_dress (AdgCanvas *canvas);
Gets the background dress to be used in rendering canvas.
|
|
an AdgCanvas |
|
Returns : |
the current background dress |
void adg_canvas_set_frame_dress (AdgCanvas *canvas, AdgDress dress);
Sets the "frame-dress" property of canvas to dress:
the new dress must be a line dress.
AdgDress adg_canvas_get_frame_dress (AdgCanvas *canvas);
Gets the frame dress to be used in rendering the border of canvas.
|
|
an AdgCanvas |
|
Returns : |
the current frame dress |
void adg_canvas_set_title_block (AdgCanvas *canvas, AdgTitleBlock *title_block);
Sets the "title-block" property of canvas to title_block.
Although a title block entity could be added to canvas in the usual
way, that is using the adg_container_add() method, assigning a title
block with adg_canvas_set_title_block() is somewhat different:
- title_block will be automatically attached to the bottom right
corner of to the canvas frame (this could be accomplished in the
usual way too, by resetting the right and bottom paddings);
- the title_block boundary box is not taken into account while
computing the extents of canvas.
|
|
an AdgCanvas |
|
|
a title block |
AdgTitleBlock * adg_canvas_get_title_block (AdgCanvas *canvas);
Gets the AdgTitleBlock object of canvas: check
adg_canvas_set_title_block() for details.
|
|
an AdgCanvas |
|
Returns : |
the title block object or NULL |
void adg_canvas_set_top_margin (AdgCanvas *canvas, gdouble value);
Changes the top margin of canvas by setting "top-margin"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new margin, in identity space |
gdouble adg_canvas_get_top_margin (AdgCanvas *canvas);
Gets the top margin (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested margin or 0 on error |
void adg_canvas_set_right_margin (AdgCanvas *canvas, gdouble value);
Changes the right margin of canvas by setting "right-margin"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new margin, in identity space |
gdouble adg_canvas_get_right_margin (AdgCanvas *canvas);
Gets the right margin (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested margin or 0 on error |
void adg_canvas_set_bottom_margin (AdgCanvas *canvas, gdouble value);
Changes the bottom margin of canvas by setting "bottom-margin"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new margin, in identity space |
gdouble adg_canvas_get_bottom_margin (AdgCanvas *canvas);
Gets the bottom margin (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested margin or 0 on error |
void adg_canvas_set_left_margin (AdgCanvas *canvas, gdouble value);
Changes the left margin of canvas by setting "left-margin"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new margin, in identity space |
gdouble adg_canvas_get_left_margin (AdgCanvas *canvas);
Gets the left margin (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested margin or 0 on error |
void adg_canvas_set_margins (AdgCanvas *canvas, gdouble top, gdouble right, gdouble bottom, gdouble left);
Convenient function to set all the margins at once.
|
|
an AdgCanvas |
|
|
top margin, in identity space |
|
|
right margin, in identity space |
|
|
bottom margin, in identity space |
|
|
left margin, in identity space |
void adg_canvas_switch_frame (AdgCanvas *canvas, gboolean new_state);
Sets a new status on the "has-frame" property: TRUE means a border around the canvas extents (less the margins) should be rendered.
|
|
an AdgCanvas |
|
|
the new flag status |
gboolean adg_canvas_has_frame (AdgCanvas *canvas);
Gets the current status of the "has-frame" property, that is whether a border around the canvas extents (less the margins) should be rendered (TRUE) or not (FALSE).
|
|
an AdgCanvas |
|
Returns : |
the current status of the frame flag |
void adg_canvas_set_top_padding (AdgCanvas *canvas, gdouble value);
Changes the top padding of canvas by setting "top-padding"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new padding, in identity space |
gdouble adg_canvas_get_top_padding (AdgCanvas *canvas);
Gets the top padding (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested padding or 0 on error |
void adg_canvas_set_right_padding (AdgCanvas *canvas, gdouble value);
Changes the right padding of canvas by setting "right-padding"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new padding, in identity space |
gdouble adg_canvas_get_right_padding (AdgCanvas *canvas);
Gets the right padding (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested padding or 0 on error |
void adg_canvas_set_bottom_padding (AdgCanvas *canvas, gdouble value);
Changes the bottom padding of canvas by setting "bottom-padding"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new padding, in identity space |
gdouble adg_canvas_get_bottom_padding (AdgCanvas *canvas);
Gets the bottom padding (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested padding or 0 on error |
void adg_canvas_set_left_padding (AdgCanvas *canvas, gdouble value);
Changes the left padding of canvas by setting "left-padding"
to value. Negative values are allowed.
|
|
an AdgCanvas |
|
|
the new padding, in identity space |
gdouble adg_canvas_get_left_padding (AdgCanvas *canvas);
Gets the left padding (in identity space) of canvas.
|
|
an AdgCanvas |
|
Returns : |
the requested padding or 0 on error |
void adg_canvas_set_paddings (AdgCanvas *canvas, gdouble top, gdouble right, gdouble bottom, gdouble left);
Convenient function to set all the paddings at once.
|
|
an AdgCanvas |
|
|
top padding, in identity space |
|
|
right padding, in identity space |
|
|
bottom padding, in identity space |
|
|
left padding, in identity space |
"background-dress" property"background-dress" AdgDress : Read / Write
The color dress to use for the canvas background.
Allowed values: [G_MAXINT,G_MININT]
Default value: 0
"bottom-margin" property"bottom-margin" gdouble : Read / Write
The margin (in identity space) to leave empty below the frame.
Default value: 15
"bottom-padding" property"bottom-padding" gdouble : Read / Write
The padding (in identity space) to leave empty below between the drawing and the frame.
Default value: 15
"frame-dress" property"frame-dress" AdgDress : Read / Write
Line dress to use while drawing the frame around the canvas.
Allowed values: [G_MAXINT,G_MININT]
Default value: 0
"has-frame" property"has-frame" gboolean : Read / Write
If enabled, a frame using the frame dress will be drawn around the canvas extents, taking into account the margins.
Default value: TRUE
"left-margin" property"left-margin" gdouble : Read / Write
The margin (in identity space) to leave empty at the left of the frame.
Default value: 15
"left-padding" property"left-padding" gdouble : Read / Write
The padding (in identity space) to leave empty at the left between the drawing and the frame.
Default value: 15
"right-margin" property"right-margin" gdouble : Read / Write
The margin (in identity space) to leave empty at the right of the frame.
Default value: 15
"right-padding" property"right-padding" gdouble : Read / Write
The padding (in identity space) to leave empty at the right between the drawing and the frame.
Default value: 15
"size" property"size" AdgPair* : Read / Write
The size set on this canvas: use 0 to have an automatic dimension based on the canvas extents.
"title-block" property"title-block" AdgTitleBlock* : Read / Write
The title block to assign to this canvas.
"top-margin" property"top-margin" gdouble : Read / Write
The margin (in identity space) to leave above the frame.
Default value: 15