UNPKG

@nodegui/nodegui

Version:

A cross-platform library to build native desktop apps.

11 lines (10 loc) 419 B
import { NativeRawPointer } from '../../core/Component'; import { QEvent } from './QEvent'; export declare class QInputMethodEvent extends QEvent { constructor(event: NativeRawPointer<'QEvent'>); commitString(): string; preeditString(): string; replacementLength(): number; replacementStart(): number; setCommitString(commitString: string, replaceFrom?: number, replaceLength?: number): void; }