Construct an output area widget.
ReadonlycontentThe content factory used by the widget.
ReadonlymodelThe model used by the widget.
ReadonlynodeGet the DOM node owned by the widget.
ReadonlyoutputReadonlyrendermimeThe rendermime instance used by the widget.
The dataset for the widget's DOM node.
The kernel future associated with the output area.
Get the method for hiding the widget.
Set the method for hiding the widget.
Get the id of the widget's DOM node.
Set the id of the widget's DOM node.
Signal emitted when an output area is requesting an input. The signal carries the input widget that this class creates in response to the input request.
Test whether the widget's node is attached to the DOM.
Test whether the widget has been disposed.
Test whether the widget is visible.
A widget is visible when it is attached to the DOM, is not explicitly hidden, and has no explicitly hidden ancestors.
Since 2.7.0, this does not rely on the Widget.Flag.IsVisible flag. It recursively checks the visibility of all parent widgets.
Narrow the type of OutputArea's layout prop
A widget tracker for individual output widgets in the output area.
Get the parent of the widget.
Set the parent of the widget.
Children are typically added to a widget by using a layout, which means user code will not normally set the parent widget directly.
The widget will be automatically removed from its old parent.
This is a no-op if there is no effective parent change.
A flag indicating if the output area has pending input.
The title object for the widget.
The title object is used by some container widgets when displaying the widget alongside some title, such as a tab panel or side bar.
Since not all widgets will use the title, it is created on demand.
The owner property of the title is set to this widget.
Emitted when user requests toggling of the output scrolling mode.
Create an iterator over the widget's children.
A new iterator over the children of the widget.
The widget must have a populated layout in order to have children.
If a layout is not installed, the returned iterator will be empty.
ProtectedcreateCreate an output item with a prompt and actual output
a rendered widget, or null if we cannot render
ProtectedcreateRender a mimetype
Hide the widget and make it hidden to its parent widget.
This causes the isHidden property to be true.
If the widget is explicitly hidden, this is a no-op.
ProtectednotifyProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonHandle an input request from a kernel.
ProtectedonFollow changes on the model state.
ProtectedonProtectedonFollow changes on the output model state.
ProtectedonShow the widget and make it visible to its parent widget.
This causes the isHidden property to be false.
If the widget is not explicitly hidden, this is a no-op.
Toggle a class name on the widget's DOM node.
The class name to toggle on the node.
Optionalforce: booleanWhether to force add the class (true) or force
remove the class (false). If not provided, the presence of
the class will be toggled from its current state.
true if the class is now present, false otherwise.
The class name must not contain whitespace.
An output area widget.
Notes
The widget model must be set separately and can be changed at any time. Consumers of the widget must account for a
nullmodel, and may want to listen to themodelChangedsignal.