devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
55 lines (54 loc) • 3.09 kB
TypeScript
import { EventDispatcher } from '../../utils/event-dispatcher';
import { ILayoutChangesListener } from '../../interfaces/i-document-layout-changes-listener';
import { IModelChangesListener } from '../../interfaces/model-changes-listener';
import { PageChange } from '../../layout-formatter/changes/changes/page-change';
import { LayoutPage } from '../../layout/main-structures/layout-page';
import { LayoutSelection } from '../../layout/selection/layout-selection';
import { IMeasurer } from '../../measurer/measurer';
import { ModelChange } from '../../model/changes/change';
import { DocumentProtectionSettings } from '../../model/options/protection';
import { SubDocument } from '../../model/sub-document';
import { BatchUpdatableObject } from '@devexpress/utils/lib/class/batch-updatable';
import { ISelectionLayoutChangesListener } from '../../interfaces/i-selection-layout-changes-listener';
import { IMisspelledSelectionChangesListener, ISearchSelectionChangesListener, ISelectionChangesListener } from '../../selection/i-selection-changes-listener';
import { Selection } from '../../selection/selection';
export declare enum SimpleSelectionLayoutType {
Search = 0,
Misspelled = 1,
RangePermission = 2
}
export declare class SelectionFormatter extends BatchUpdatableObject implements ILayoutChangesListener, ISelectionChangesListener, ISearchSelectionChangesListener, IMisspelledSelectionChangesListener, IModelChangesListener {
private measurer;
private selection;
layoutSelection: LayoutSelection;
private documentProtectionSettings;
onSelectionLayoutChanged: EventDispatcher<ISelectionLayoutChangesListener>;
private static itemConstructorsMap;
private get highlightRanges();
constructor(selection: Selection, measurer: IMeasurer, layoutSelection: LayoutSelection, documentProtectionSettings: DocumentProtectionSettings);
modelChanged(change: ModelChange): void;
onRangePermissionPropertiesChanged(): void;
NotifySelectionChanged(_selection: Selection): void;
NotifySearchSelectionChanged(): void;
NotifyMisspelledSelectionChanged(): void;
NotifyPagesReady(pageChanges: PageChange[]): void;
NotifyFullyFormatted(_pageCount: number): void;
onUpdateUnlocked(_occurredEvents: number): void;
private selectionChanged;
private updateSubDocumentInfo;
private buildContiniousSelection;
private buildPageSelection;
private buildRangePermissionSelection;
private createCollapsedSelectionLayout;
private createExtendedSelectionLayout;
private static isCellFullySelected;
private static translateInteralsToIterators;
private intersectModelIntervalsWithValidPageIntervals;
private createSimpleLayout;
private raiseSelectionLayoutChanged;
private raiseSearchSelectionLayoutChanged;
private raiseMisspelledSelectionLayoutChanged;
private raiseRangePermissionLayoutChanged;
private static setPositionOnVisibleBox;
static getFloatingObjId(subDocument: SubDocument, page: LayoutPage): number;
}