devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 782 B
TypeScript
import { LayoutSelection } from '../../../layout/selection/layout-selection';
import { DocumentRendererPageCache } from '../common/document-renderer';
export declare class TouchSelectionCircleElementsManager {
private static BAR_CLASS_NAME;
private firstElement;
private secondElement;
private radius;
layoutSelection: LayoutSelection;
private cache;
constructor(cache: DocumentRendererPageCache[], layoutSelection: LayoutSelection);
getSecondElement(): HTMLElement;
update(): void;
setVisibilityTouchBars(visible: boolean): void;
setFirstTouchBarVisibility(visible: boolean): void;
setSecondTouchBarVisibility(visible: boolean): void;
private setVisible;
private isElementVisible;
private isCreated;
}