Panel.Paned¶
- Subclasses:
None
Methods¶
- Inherited:
Gtk.Widget (181), GObject.Object (37), Gtk.Accessible (15), Gtk.Buildable (1), Gtk.Orientable (2)
- Structs:
class |
|
|
|
|
|
|
|
|
|
|
|
|
Virtual Methods¶
- Inherited:
Gtk.Widget (25), GObject.Object (7), Gtk.Accessible (6), Gtk.Buildable (9)
Properties¶
- Inherited:
Signals¶
- Inherited:
Fields¶
- Inherited:
Class Details¶
- class Panel.Paned(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
A
Panel.Paned
is the concrete widget for a panel area.- classmethod new()¶
- Returns:
a newly created
Panel.Paned
- Return type:
Create a new
Panel.Paned
.
- append(child)¶
- Parameters:
child (
Gtk.Widget
) – aGtk.Widget
to append.
Append a widget in the paned.
- get_n_children()¶
- Returns:
the number of children.
- Return type:
Gets the number of children in the paned.
- get_nth_child(nth)¶
- Parameters:
nth (
int
) – the child position- Returns:
a
Gtk.Widget
orNone
- Return type:
Gtk.Widget
orNone
Gets the child at position nth.
- insert(position, child)¶
- Parameters:
position (
int
) – the positionchild (
Gtk.Widget
) – aGtk.Widget
to insert.
Inserts a widget at position in the paned.
- insert_after(child, sibling)¶
- Parameters:
child (
Gtk.Widget
) – aGtk.Widget
to insert.sibling (
Gtk.Widget
) – the widget after which to insert.
Inserts a widget afer sibling in the paned.
- prepend(child)¶
- Parameters:
child (
Gtk.Widget
) – aGtk.Widget
to prepend.
Prepends a widget in the paned.
- remove(child)¶
- Parameters:
child (
Gtk.Widget
) – aGtk.Widget
Removes a widget from the paned.