import { ISessionContext, Printing } from '@jupyterlab/apputils'; import { DocumentWidget } from '@jupyterlab/docregistry'; import { ITranslator } from '@jupyterlab/translation'; import { Token } from '@lumino/coreutils'; import { INotebookModel } from './model'; import { Notebook, StaticNotebook } from './widget'; import { Message } from '@lumino/messaging'; /** * A widget that hosts a notebook toolbar and content area. * * #### Notes * The widget keeps the document metadata in sync with the current * kernel on the context. */ export declare class NotebookPanel extends DocumentWidget { /** * Construct a new notebook panel. */ constructor(options: DocumentWidget.IOptions); /** * Handle a change to the document registry save state. * * @param sender The document registry context * @param state The document registry save state */ private _onSave; /** * The session context used by the panel. */ get sessionContext(): ISessionContext; /** * The model for the widget. */ get model(): INotebookModel | null; /** * Update the options for the current notebook panel. * * @param config new options to set */ setConfig(config: NotebookPanel.IConfig): void; /** * Set URI fragment identifier. */ setFragment(fragment: string): void; /** * Dispose of the resources used by the widget. */ dispose(): void; /** * Prints the notebook by converting to HTML with nbconvert. */ [Printing.symbol](): () => Promise; /** * A message handler invoked on a 'before-hide' message. */ protected onBeforeHide(msg: Message): void; /** * A message handler invoked on a 'before-show' message. */ protected onBeforeShow(msg: Message): void; /** * Handle a change in the kernel by updating the document metadata. */ private _onKernelChanged; private _onSessionStatusChanged; /** * Update the kernel language. */ private _updateLanguage; /** * Update the kernel spec. */ private _updateSpec; /** * Whether we are currently in a series of autorestarts we have already * notified the user about. */ private _autorestarting; translator: ITranslator; } /** * A namespace for `NotebookPanel` statics. */ export declare namespace NotebookPanel { /** * Notebook config interface for NotebookPanel */ interface IConfig { /** * Whether to automatically start the preferred kernel */ autoStartDefault: boolean; /** * A config object for cell editors */ editorConfig: StaticNotebook.IEditorConfig; /** * A config object for notebook widget */ notebookConfig: StaticNotebook.INotebookConfig; /** * Whether to shut down the kernel when closing the panel or not */ kernelShutdown: boolean; } /** * A content factory interface for NotebookPanel. */ interface IContentFactory extends Notebook.IContentFactory { /** * Create a new content area for the panel. */ createNotebook(options: Notebook.IOptions): Notebook; } /** * The default implementation of an `IContentFactory`. */ class ContentFactory extends Notebook.ContentFactory implements IContentFactory { /** * Create a new content area for the panel. */ createNotebook(options: Notebook.IOptions): Notebook; } /** * The notebook renderer token. */ const IContentFactory: Token; }