goocanvas.ItemModel — The interface for canvas item models.
class goocanvas.ItemModel(gobject.GInterface): |
|
"button-press-event" | def callback( |
"button-release-event" | def callback( |
"child-notify" | def callback( |
"enter-notify-event" | def callback( |
"focus-in-event" | def callback( |
"focus-out-event" | def callback( |
"grab-broken-event" | def callback( |
"key-press-event" | def callback( |
"key-release-event" | def callback( |
"leave-notify-event" | def callback( |
"motion-notify-event" | def callback( |
goocanvas.ItemModel
is implementated by
goocanvas.Rect
,
goocanvas.Ellipse
,
goocanvas.Path
,
goocanvas.Polyline
,
goocanvas.Text
,
goocanvas.Image
,
goocanvas.Group
,
goocanvas.Widget
,
goocanvas.Table
,
goocanvas.ItemModelSimple
goocanvas.ItemModel
defines the interface that canvas items must implement, and contains methods for operating on canvas items.
def add_child(item
, position
)
| The item to add. |
| the position of the item, or -1 to place it last (at the top of the stacking order). |
Adds a child item to a container item at the given stack position.
def allocate_area(cr
, requested_area
, allocated_area
, x_offset
, y_offset
)
| A cairo context. |
| The area that the item originally requested, in the parent's coordinate space. |
| The area that the item has been allocated, in the parent's coordinate space. |
| The x offset of the allocated area from the requested area in the device coordinate space. |
| The y offset of the allocated area from the requested area in the device coordinate space. |
This is used by goocanvas.Table
and other layout items to allocate an area to each of their children.
Note that the parent item will use a transform to move each of its children for the layout, so their is no need for the item to reposition itself. It only needs to recalculate its device bounds.
The x_offset and y_offset are provided since for the simple builtin items all they need to do is add these to their bounds.
def animate(x
, y
, scale
, degrees
, absolute
, duration
, step_time
, type
)
| the final x offset from the current position. |
| the final y offset from the current position. |
| the final scale of the item. |
| the final rotation of the item. |
| if the x, y, scale and degrees values are absolute, or relative to the current transform. Note that absolute animations only work if the item currently has a simple transform. If the item has a shear or some other complicated transform it may result in strange animations. |
| the duration of the animation, in milliseconds (1/1000ths of a second). |
| the time between each animation step, in milliseconds. |
| specifies what happens when the animation finishes. |
Animates an item from its current position to the given offsets, scale and rotation.
def ensure_updated()
Updates the canvas immediately, if an update is scheduled. This ensures that all item bounds are up-to-date.
def find_child(child
)
| the child item to find. |
Returns: | The position of the given child item, or -1 if it isn't found. |
Attempts to find the given child item with the container's stack.
def get_bounds()
Returns: | A tuple containing the four coordinates. |
Gets the bounds of the item. Note that the bounds includes the entire fill and stroke extents of the item, whether they are painted or not.
def get_canvas()
Returns: | The
goocanvas.Canvas |
Returns the goocanvas.Canvas
def get_child(child_num
)
| the position of a child in the container's stack. |
Returns: | The child item at the given stack position. |
Gets the child item at the given stack position.
def get_child_properties(child
, properties
)
| a child
goocanvas.ItemModel
|
| property names as string |
Returns: | A tuple containing the property values. |
Gets the values of one or more child properties of child.
def get_child_property(child
, property
)
| a child
goocanvas.ItemModel
|
| property name as string |
Returns: | The property value. |
Gets the value of the property of child.
def get_item_at(x
, y
, cr
, is_pointer_event
, parent_is_visible
)
| The x coordinate of the point. |
| The y coordinate of the point. |
| A cairo context. |
| True if the "pointer-events" properties of items should be used to determine which parts of the item are tested. |
| True if the parent item is visible (which implies that all ancestors are also visible). |
Returns: | The item found at the given point, or None if no item was found. |
Gets the item at the given point.
def get_model()
Returns: | the canvas model, or None of the item isn't in a model. |
Gets the model of the canvas item.
def get_n_children()
Returns: | The number of children. |
Gets the number of children of the container.
def get_parent()
Returns: | The parent item, or None if the item has no parent. |
Gets the parent of the given item.
def get_requested_area(cr
, requested_area
)
| A cairo context. |
| A GooCanvasBounds to return the requested area in, in the parent's coordinate space. |
Returns: | True if the item should be allocated space. |
This is used by GooCanvasTable and other layout items to get the requested area of each of their children.
FIXME: This method is currently broken, it needs to be manually wrapped returning the bounds instead of True/False.
def get_style()
Returns: | The item's style. |
Gets the item's style. If the item doesn't have its own style it will return its parent's style.
def get_simple_transform()
Returns: | A 4 item tuple containing the item's x, y, scale and rotation. |
This function can be used to get the position, scale and rotation of an item, providing that
the item has a simple transformation matrix (e.g. set with
goocanvas.ItemModel.set_simple_transform
(),
or using a combination of simple translate, scale and rotate operations).
If the item has a complex transformation matrix the results will be incorrect.
def get_transform()
Returns: | The item's transformation matrix. |
Gets the transformation matrix of an item.
def is_container()
Returns: | True if the item is a container. |
Tests to see if the given item is a container.
def is_visible()
Returns: | True if the item is visible. |
Tests to see if the given item is visible.
This entails checking the item's own visibility setting, as well as those of its ancestors.
Note that the item may be scrolled off the screen and so may not be actually visible to the user.
def lower(below
)
| the item to lower item below, or None to lower item to the bottom of the stack. |
Lowers an item in the stacking order.
def move_child(old_position
, new_position
)
| the current position of the child item. |
| the new position of the child item. |
Moves a child item to a new stack position within the container.
def paint(cr
, bounds
, scale
)
| A cairo context. |
| The bounds that need to be repainted. |
| the scale to use to determine whether an item should be painted. See visibility-thresold |
Moves a child item to a new stack position within the container.
def raise_(above
)
| the item to raise item above, or NULL to raise item to the top of the stack. |
Raises an item in the stacking order.
def remove()
Removes a model from its parent. If the model is in a canvas it will be removed.
This would normally also result in the model being freed.
def remove_child(child_num
)
| the position of the child item to remove. |
Removes the child item at the given position.
def request_update()
Requests that an update of the item is scheduled. It will be performed as soon as the application is idle, and before the canvas is redrawn.
def rotate(degrees
, cx
, cy
)
| the clockwise angle of rotation. |
| the x coordinate of the origin of the rotation. |
| the y coordinate of the origin of the rotation. |
Rotates the item's coordinate system by the given amount, about the given origin.
def scale(sx
, sy
)
| the amount to scale the horizontal axis. |
| the amount to scale the vertical axis. |
Scales the item's coordinate system by the given amounts.
def set_canvas(canvas
)
| A goocanvas.Canvas |
Sets the canvas of the item.
This is only needed for setting the canvas of the root item, as the other items can get the canvas from their parents.
def set_child_properties(child
, properties
)
| A child goocanvas.ItemModel |
| The properties to set as **kwargs |
Sets the values of one or more child properties of child.
def set_child_property(child
, property
)
| A child goocanvas.ItemModel |
| The property to set as string |
Sets a child property of child.
def set_model(model
)
| A goocanvas.ItemModelModel |
Sets the model of the given canvas item.
def set_parent(parent
)
| the new parent item. |
This function is only intended to be used when implementing new canvas item models (specifically container models such as goocanvas.GroupModel). It sets the parent of the child model.
def set_simple_transform(x
, y
, scale
, rotation
)
| The x coordinate of the origin of the item's coordinate space. |
| The x coordinate of the origin of the item's coordinate space. |
| The scale of the item. |
| The clockwise rotation of the item, in degrees. |
A convenience function to set the item's transformation matrix.
def set_style(style
)
| A goocanvas.Style |
Sets the item's style, by copying the properties from the given style.
def set_transform(matrix
)
| the new transformation matrix, or None to reset the transformation to the identity matrix. |
Sets the transformation matrix of an item.
def skew_x(degrees
, cx
, cy
)
| the skew angle. |
| the x coordinate of the origin of the skew transform. |
| the y coordinate of the origin of the skew transform. |
Skews the item's coordinate system along the x axis by the given amount, about the given origin.
def skew_y(degrees
, cx
, cy
)
| the skew angle. |
| the x coordinate of the origin of the skew transform. |
| the y coordinate of the origin of the skew transform. |
Skews the item's coordinate system along the y axis by the given amount, about the given origin.
def stop_animation()
Stops any current animation for the given item, leaving it at its current position.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
The "button-press-event" signal is emitted when a mouse button is pressed in an item.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
The "button-release-event" signal is emitted when a mouse button is released in an item.
def callback(item
, pspec
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The GParamSpec of the changed child property. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
The "child-notify" signal is emitted for each child property that has changed. The signal's detail holds the property name.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "enter-notify-event" signal is emitted when the mouse enters an item.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "focus-in-event" signal is emitted when the item receives the keyboard focus.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "focus-out-event" signal is emitted when the item loses the keyboard focus.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "grab-broken-event" signal is emitted when the item's keyboard or pointer grab was lost unexpectedly.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "key-press-event" signal is emitted when a key is pressed and the item has the keyboard focus.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "key-release-event" signal is emitted when a key is released and the item has the keyboard focus.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "leave-notify-event" signal is emitted when the mouse leaves an item.
def callback(item
, target_item
, event
, user_param
, ...
)
|
The goocanvas.ItemModel
that received the signal.
|
| The target of the event. |
| The event data, with coordinates translated to canvas coordinates. |
| the first user parameter (if any) specified
with the connect ()
method
|
| additional user parameters (if any) |
| True to stop the signal emission, or False to let it continue. |
The "motion-notify-event" signal is emitted when the mouse moves within an item.