/** * Copyright 2023-present DreamNum Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Disposable, ICommandService, Injector } from '@univerjs/core'; import { ComponentManager, IMenuManagerService, IShortcutService, IUIPartsService } from '@univerjs/ui'; /** * This controller registers UI parts of slide workbench to the base-ui workbench. */ export declare class SlidesUIController extends Disposable { protected readonly _injector: Injector; protected readonly _menuManagerService: IMenuManagerService; protected readonly _componentManager: ComponentManager; protected readonly _uiPartsService: IUIPartsService; protected readonly _commandService: ICommandService; protected readonly _shortcutService: IShortcutService; constructor(_injector: Injector, _menuManagerService: IMenuManagerService, _componentManager: ComponentManager, _uiPartsService: IUIPartsService, _commandService: ICommandService, _shortcutService: IShortcutService); private _initMenus; private _initCustomComponents; private _initCommands; protected _initUIComponents(): void; private _initShortcuts; }