Qt
digraph inheritance624b96e1c6 {
rankdir=LR;
width=8.0;
ratio=compress;
fontsize=14;
size="8.0, 12.0";
"QtDockPane" [style="setlinewidth(0.5)",URL="#enaml.qt.qt_dock_pane.QtDockPane",fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25,shape=box,fontsize=10];
"QtWidget" -> "QtDockPane" [arrowsize=0.5,style="setlinewidth(0.5)"];
"QtWidget" [style="setlinewidth(0.5)",URL="enaml.widgets.widget.Widget.html#enaml.qt.qt_widget.QtWidget",fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25,shape=box,fontsize=10];
"QtObject" -> "QtWidget" [arrowsize=0.5,style="setlinewidth(0.5)"];
"QtObject" [shape=box,style="setlinewidth(0.5)",fontsize=10,fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25];
}
-
class enaml.qt.qt_dock_pane.QtDockPane(object_id, parent, session)[source]
Bases: enaml.qt.qt_widget.QtWidget
A Qt implementation of an Enaml DockPane.
-
create_widget(parent, tree)[source]
Create the underlying dock pane widget.
-
create(tree)[source]
Create and initialize the dock pane control.
-
init_layout()[source]
Handle the layout initialization for the dock pane.
-
dock_widget()[source]
Find and return the dock widget child for this widget.
Returns: | result (QWidget or None) – The dock widget defined for this widget, or None if one is not defined. |
-
child_removed(child)[source]
Handle the child removed event for a QtDockPane.
-
child_added(child)[source]
Handle the child added event for a QtDockPane.
-
on_closed()[source]
The signal handler for the ‘closed’ signal.
-
on_floated()[source]
The signal handler for the ‘floated’ signal.
-
on_docked(area)[source]
The signal handler for the ‘docked’ signal.
-
on_action_set_title(content)[source]
Handle the ‘set_title’ action from the Enaml widget.
-
on_action_set_title_bar_visible(content)[source]
Handle the ‘set_title_bar_visible’ action from the Enaml
widget.
-
on_action_set_title_bar_orientation(content)[source]
Handle the ‘set_title_bar_orientation’ action from the
Enaml widget.
-
on_action_set_closable(content)[source]
Handle the ‘set_closable’ action from the Enaml widget.
-
on_action_set_movable(content)[source]
Handle the ‘set_movable’ action from the Enaml widget.
-
on_action_set_floatable(content)[source]
Handle the ‘set_floatable’ action from the Enaml widget.
-
on_action_set_floating(content)[source]
Handle the ‘set_floating’ action from the Enaml widget.
-
on_action_set_dock_area(content)[source]
Handle the ‘set_dock_area’ action from the Enaml widget.
-
on_action_set_allowed_dock_areas(content)[source]
Handle the ‘set_allowed_dock_areas’ action from the Enaml
widget.
-
on_action_open(content)[source]
Handle the ‘open’ action from the Enaml widget.
-
on_action_close(content)[source]
Handle the ‘close’ action from the Enaml widget.
-
set_title(title)[source]
Set the title on the underlying widget.
-
set_title_bar_visible(visible)[source]
Set the title bar visibility of the underlying widget.
-
set_title_bar_orientation(orientation)[source]
Set the title bar orientation of the underyling widget.
-
set_closable(closable)[source]
Set the closable state on the underlying widget.
-
set_movable(movable)[source]
Set the movable state on the underlying widget.
-
set_floatable(floatable)[source]
Set the floatable state on the underlying widget.
-
set_floating(floating)[source]
Set the floating staet on the underlying widget.
-
set_dock_area(dock_area)[source]
Set the dock area on the underlying widget.
-
set_allowed_dock_areas(dock_areas)[source]
Set the allowed dock areas on the underlying widget.
Wx
digraph inheritancec73006d853 {
rankdir=LR;
width=8.0;
ratio=compress;
fontsize=14;
size="8.0, 12.0";
"WxWidget" [style="setlinewidth(0.5)",URL="enaml.widgets.widget.Widget.html#enaml.wx.wx_widget.WxWidget",fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25,shape=box,fontsize=10];
"WxObject" -> "WxWidget" [arrowsize=0.5,style="setlinewidth(0.5)"];
"WxDockPane" [style="setlinewidth(0.5)",URL="#enaml.wx.wx_dock_pane.WxDockPane",fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25,shape=box,fontsize=10];
"WxWidget" -> "WxDockPane" [arrowsize=0.5,style="setlinewidth(0.5)"];
"WxObject" [shape=box,style="setlinewidth(0.5)",fontsize=10,fontname=Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans,height=0.25];
}
-
class enaml.wx.wx_dock_pane.WxDockPane(object_id, parent, session)[source]
Bases: enaml.wx.wx_widget.WxWidget
A Wx implementation of an Enaml DockPane.
-
create_widget(parent, tree)[source]
Create the underlying wxDockPane widget.
-
create(tree)[source]
Create and initialize the dock pane control.
-
init_layout()[source]
Handle the layout initialization for the dock pane.
-
dock_widget()[source]
Find and return the dock widget child for this widget.
Returns: | result (wxWindow or None) – The dock widget defined for this widget, or None if one is not defined. |
-
child_removed(child)[source]
Handle the child removed event for a WxDockPane.
-
child_added(child)[source]
Handle the child added event for a WxDockPane.
-
on_dock_pane_closed(event)[source]
The event handler for the EVT_DOCK_PANE_CLOSED event.
-
on_dock_pane_floated(event)[source]
The event handler for the EVT_DOCK_PANE_FLOATED event.
-
on_dock_pane_docked(event)[source]
The event handler for the EVT_DOCK_PANE_AREA event.
-
on_action_set_title(content)[source]
Handle the ‘set_title’ action from the Enaml widget.
-
on_action_set_title_bar_visible(content)[source]
Handle the ‘set_title_bar_visible’ action from the Enaml
widget.
-
on_action_set_title_bar_orientation(content)[source]
Handle the ‘set_title_bar_orientation’ action from the
Enaml widget.
-
on_action_set_closable(content)[source]
Handle the ‘set_closable’ action from the Enaml widget.
-
on_action_set_movable(content)[source]
Handle the ‘set_movable’ action from the Enaml widget.
-
on_action_set_floatable(content)[source]
Handle the ‘set_floatable’ action from the Enaml widget.
-
on_action_set_floating(content)[source]
Handle the ‘set_floating’ action from the Enaml widget.
-
on_action_set_dock_area(content)[source]
Handle the ‘set_dock_area’ action from the Enaml widget.
-
on_action_set_allowed_dock_areas(content)[source]
Handle the ‘set_allowed_dock_areas’ action from the Enaml
widget.
-
on_action_open(content)[source]
Handle the ‘open’ action from the Enaml widget.
-
on_action_close(content)[source]
Handle the ‘close’ action from the Enaml widget.
-
set_visible(visible)[source]
An overridden visibility setter which to opens|closes the
dock pane.
-
set_title(title)[source]
Set the title on the underlying widget.
-
set_title_bar_visible(visible)[source]
Set the title bar visibility of the underlying widget.
-
set_title_bar_orientation(orientation)[source]
Set the title bar orientation of the underyling widget.
-
set_closable(closable)[source]
Set the closable state on the underlying widget.
-
set_movable(movable)[source]
Set the movable state on the underlying widget.
-
set_floatable(floatable)[source]
Set the floatable state on the underlying widget.
-
set_floating(floating)[source]
Set the floating staet on the underlying widget.
-
set_dock_area(dock_area)[source]
Set the dock area on the underyling widget.
-
set_allowed_dock_areas(dock_areas)[source]
Set the allowed dock areas on the underlying widget.