The interface for a notebook widget factory.

interface IFactory {
    autoStartDefault: boolean;
    canStartKernel?: boolean;
    defaultFor?: readonly string[];
    defaultRendered?: readonly string[];
    editorConfig: IEditorConfig;
    fileTypes: readonly string[];
    isDisposed: boolean;
    label?: string;
    modelName?: string;
    name: string;
    notebookConfig: INotebookConfig;
    preferKernel?: boolean;
    readOnly?: boolean;
    shutdownOnClose: boolean;
    toolbarFactory?: ((widget) => IObservableList<DocumentRegistry.IToolbarItem> | DocumentRegistry.IToolbarItem[]);
    translator?: IRenderMime.ITranslator;
    widgetCreated: ISignal<IWidgetFactory<NotebookPanel, INotebookModel>, NotebookPanel>;
    createNew(context, source?): NotebookPanel;
    dispose(): void;
}

Hierarchy (view full)

Properties

autoStartDefault: boolean

Whether to automatically start the preferred kernel.

canStartKernel?: boolean

Whether the widgets can start a kernel when opened.

defaultFor?: readonly string[]

The file types for which the factory should be the default.

defaultRendered?: readonly string[]

The file types for which the factory should be the default for rendering, if that is different than the default factory (which may be for editing) If undefined, then it will fall back on the default file type.

editorConfig: IEditorConfig

A configuration object for cell editor settings.

fileTypes: readonly string[]

The file types the widget can view.

isDisposed: boolean

Test whether the object has been disposed.

Notes

This property is always safe to access.

label?: string

The label of the widget to display in dialogs. If not given, name is used instead.

modelName?: string

The name of the document model type.

name: string

The name of the widget to display in dialogs.

notebookConfig: INotebookConfig

A configuration object for notebook settings.

preferKernel?: boolean

Whether the widgets prefer having a kernel started.

readOnly?: boolean

Whether the widget factory is read only.

shutdownOnClose: boolean

Whether the kernel should be shutdown when the widget is closed.

A function producing toolbar widgets, overriding the default toolbar widgets.

The application language translator.

A signal emitted when a new widget is created.

Methods

  • Dispose of the resources held by the object.

    Notes

    If the object's dispose method is called more than once, all calls made after the first will be a no-op.

    Undefined Behavior

    It is undefined behavior to use any functionality of the object after it has been disposed unless otherwise explicitly noted.

    Returns void