/** * 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, Injector } from '@univerjs/core'; import { IDrawingManagerService } from '@univerjs/drawing'; import { DrawingRenderService } from '@univerjs/drawing-ui'; import { IRenderManagerService } from '@univerjs/engine-render'; import { SheetPrintInterceptorService } from '@univerjs/sheets-ui'; import { ComponentManager } from '@univerjs/ui'; import { SheetCanvasFloatDomManagerService } from '../services/canvas-float-dom-manager.service'; export declare class SheetDrawingPrintingController extends Disposable { private readonly _sheetPrintInterceptorService; private readonly _drawingRenderService; private readonly _drawingManagerService; private readonly _renderManagerService; private readonly _canvasFloatDomManagerService; private readonly _componetManager; private readonly _injector; constructor(_sheetPrintInterceptorService: SheetPrintInterceptorService, _drawingRenderService: DrawingRenderService, _drawingManagerService: IDrawingManagerService, _renderManagerService: IRenderManagerService, _canvasFloatDomManagerService: SheetCanvasFloatDomManagerService, _componetManager: ComponentManager, _injector: Injector); private _initPrinting; private _initPrintingDom; }