Protected_viewProtectedcellsReadonlycontentThe cell factory used by the widget.
ProtectedjumpedA signal that emits the index when the virtual scrollbar jumps to an item.
ReadonlykernelReadonlynodeGet the DOM node owned by the widget.
ProtectedrendererThe renderer for this windowed list. Set at instantiation.
ReadonlyrendermimeThe Rendermime instance used by the widget.
ReadonlytranslatorTranslator to be used by cell renderers
Static ReadonlyDEFAULT_Default widget size
A signal emitted when the active cell changes.
This can be due to the active index changing or the cell at the active index changing.
A signal emitted when cells are pasted to the notebook.
Get the mimetype for code cells.
The dataset for the widget's DOM node.
A configuration object for cell editor settings.
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.
Test whether the widget's node is attached to the DOM.
Test whether the widget has been disposed.
Whether the parent is hidden or not.
This should be set externally if a container is hidden to stop updating the widget size when hidden.
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.
Widget layout
The interactivity mode of the notebook.
The model for the widget.
A configuration object for notebook settings.
The outer container of the windowed list.
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.
Flag to enable virtual scrollbar.
List of selected and active cells
A signal emitted when the state of the notebook changes.
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.
ProtectedviewViewport
A read-only sequence of the widgets in the notebook.
Protected_onHandle a change cells event.
ProtectedaddProtectedaddCreate 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.
Deselect a cell widget.
It is a no-op if the value does not change.
It will emit the selectionChanged signal.
Move the head of an existing contiguous selection to extend the selection.
The new head of the existing selection.
If there is no existing selection, the active cell is considered an existing one-cell selection.
If the new selection is a single cell, that cell becomes the active cell and all cells are deselected.
There is no change if there are no cells (i.e., activeCellIndex is -1).
Get the head and anchor of a contiguous cell selection.
The head of a contiguous selection is always the active cell.
If there are no cells selected, {head: null, anchor: null} is returned.
Throws an error if the currently selected cells do not form a contiguous selection.
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.
Whether a cell is selected.
Whether a cell is selected or is the active cell.
Move cells preserving widget view state.
This is required because at the model level a move is a deletion followed by an insertion. Hence the view state is not preserved.
The index of the cell to move
The new index of the cell
Number of cells to move
ProtectednotifyProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonProtectedonHandle a cell being inserted.
ProtectedonHandle a cell being removed.
ProtectedonProtectedonProtectedonProtectedonProtectedonHandle changes to the notebook model metadata.
The default implementation updates the mimetypes of the code cells
when the language_info metadata changes.
ProtectedonHandle a new model.
ProtectedonHandle changes to the notebook model content.
The default implementation emits the modelContentChanged signal.
ProtectedonProtectedonProtectedonCallback on view model change
Windowed list model
Change
ProtectedonExperimentalPop and return the top cell from the back stack, pushing to forward stack.
ExperimentalPop and return the top cell from the forward stack, pushing to back stack.
This function should be called when a clipboard interaction involve notebook cells.
the clipboard interaction (copy, cut or paste).
the cells copied, cut or pasted.
ProtectedremoveScroll so that the given cell is in view. Selects and activates cell.
A cell in the notebook widget.
Type of alignment.
Scroll to the specified item.
By default, the list will scroll as little as possible to ensure the item is fully visible (auto).
You can control the alignment of the item though by specifying a second alignment parameter.
Acceptable values are:
auto - Automatically align with the top or bottom minimising the amount scrolled,
If alignPreference is given, follow such preferred alignment.
If item is smaller than the viewport and fully visible, do not scroll at all.
smart - If the item is significantly visible, don't scroll at all (regardless of whether it fits in the viewport).
If the item is less than one viewport away, scroll so that it becomes fully visible (following the auto heuristics).
If the item is more than one viewport away, scroll so that it is centered within the viewport (center if smaller than viewport, top-center otherwise).
center - Align the middle of the item with the middle of the viewport (it only works well for items smaller than the viewport).
top-center - Align the top of the item with the middle of the viewport (works well for items larger than the viewport).
end - Align the bottom of the item to the bottom of the list.
start - Align the top of item to the top of the list.
Item index to scroll to
Optionalalign: ScrollToAlignType of alignment
Optionalmargin: numberIn 'smart' mode the viewport proportion to add
OptionalalignPreference: BaseScrollToAlignmentAllows to override the alignment of item when the auto heuristic decides that the item needs to be scrolled into view.
Select a cell widget.
It is a no-op if the value does not change.
It will emit the selectionChanged signal.
ProtectedsetSet the notebook mode.
Notebook mode
Control mode side-effect
Show 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.
A notebook widget that supports interactivity.