@univerjs/sheets-ui
Version:
Spreadsheet UI layer for Univer Sheets.
53 lines (52 loc) • 2.34 kB
TypeScript
/**
* 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 type { IRange, Workbook } from '@univerjs/core';
import type { IRenderContext, IRenderModule } from '@univerjs/engine-render';
import { Disposable, ICommandService, InterceptorManager } from '@univerjs/core';
import { SheetsSelectionsService } from '@univerjs/sheets';
import { SheetSkeletonManagerService } from '../../services/sheet-skeleton-manager.service';
export declare const HEADER_MOVE_PERMISSION_CHECK: import("@univerjs/core").IInterceptor<boolean, IRange>;
export declare class HeaderMoveRenderController extends Disposable implements IRenderModule {
private readonly _context;
private readonly _sheetSkeletonManagerService;
private readonly _commandService;
private _startOffsetX;
private _startOffsetY;
private _moveHelperBackgroundShape;
private _moveHelperLineShape;
private _headerPointerDownSubs;
private _headerPointerMoveSubs;
private _headerPointerLeaveSubs;
private _dragHeaderMoveSub;
private _scenePointerUpSub;
private _scrollTimer;
private _changeFromColumn;
private _changeFromRow;
private _changeToColumn;
private _changeToRow;
readonly interceptor: InterceptorManager<{
HEADER_MOVE_PERMISSION_CHECK: import("@univerjs/core").IInterceptor<boolean, IRange>;
}>;
private readonly _workbookSelections;
constructor(_context: IRenderContext<Workbook>, selectionManagerService: SheetsSelectionsService, _sheetSkeletonManagerService: SheetSkeletonManagerService, _commandService: ICommandService);
dispose(): void;
private _init;
private _initialRowOrColumn;
private _rowColumnMoving;
private _clearObserverEvent;
private _newBackgroundAndLine;
private _disposeBackgroundAndLine;
}