• Home
  • Raw
  • Download

Lines Matching refs:callback

361     hide(callback: AsyncCallback<void>): void;
380 hideKeyboard(callback: AsyncCallback<void>): void;
408 callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void
421 callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void
432 on(type: 'keyboardShow' | 'keyboardHide', callback: () => void): void;
442 off(type: 'keyboardShow' | 'keyboardHide', callback?: () => void): void;
463 …on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => v…
473 …off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) =>…
483 on(type: 'inputStop', callback: () => void): void;
493 off(type: 'inputStop', callback: () => void): void;
503 on(type: 'setCallingWindow', callback: (wid: number) => void): void;
513 off(type: 'setCallingWindow', callback: (wid: number) => void): void;
523 on(type: 'keyboardShow' | 'keyboardHide', callback: () => void): void;
533 off(type: 'keyboardShow' | 'keyboardHide', callback?: () => void): void;
543 on(type: 'setSubtype', callback: (inputMethodSubtype: InputMethodSubtype) => void): void;
553 off(type: 'setSubtype', callback?: (inputMethodSubtype: InputMethodSubtype) => void): void;
567 createPanel(ctx: BaseContext, info: PanelInfo, callback: AsyncCallback<Panel>): void;
592 destroyPanel(panel: Panel, callback: AsyncCallback<void>): void;
622 sendKeyFunction(action: number, callback: AsyncCallback<boolean>): void;
642 deleteForward(length: number, callback: AsyncCallback<boolean>): void;
662 deleteBackward(length: number, callback: AsyncCallback<boolean>): void;
682 insertText(text: string, callback: AsyncCallback<boolean>): void;
702 getForward(length: number, callback: AsyncCallback<string>): void;
722 getBackward(length: number, callback: AsyncCallback<string>): void;
741 getEditorAttribute(callback: AsyncCallback<EditorAttribute>): void;
771 sendKeyFunction(action: number, callback: AsyncCallback<boolean>): void;
796 deleteForward(length: number, callback: AsyncCallback<boolean>): void;
834 deleteBackward(length: number, callback: AsyncCallback<boolean>): void;
872 insertText(text: string, callback: AsyncCallback<boolean>): void;
910 getForward(length: number, callback: AsyncCallback<string>): void;
949 getBackward(length: number, callback: AsyncCallback<string>): void;
985 getEditorAttribute(callback: AsyncCallback<EditorAttribute>): void;
1017 moveCursor(direction: number, callback: AsyncCallback<void>): void;
1052 selectByRange(range: Range, callback: AsyncCallback<void>): void;
1087 selectByMovement(movement: Movement, callback: AsyncCallback<void>): void;
1122 getTextIndexAtCursor(callback: AsyncCallback<number>): void;
1158 sendExtendAction(action: ExtendAction, callback: AsyncCallback<void>): void;
1188 on(type: 'keyDown' | 'keyUp', callback: (event: KeyEvent) => boolean): void;
1198 off(type: 'keyDown' | 'keyUp', callback?: (event: KeyEvent) => boolean): void;
1209 on(type: 'keyEvent', callback: (event: InputKeyEvent) => boolean): void;
1219 off(type: 'keyEvent', callback?: (event: InputKeyEvent) => boolean): void;
1229 on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;
1239 … off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;
1252 callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void
1266 callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void
1277 on(type: 'textChange', callback: (text: string) => void): void;
1287 off(type: 'textChange', callback?: (text: string) => void): void;
1297 on(type: 'editorAttributeChanged', callback: (attr: EditorAttribute) => void): void;
1307 off(type: 'editorAttributeChanged', callback?: (attr: EditorAttribute) => void): void;
1328 setUiContent(path: string, callback: AsyncCallback<void>): void;
1353 setUiContent(path: string, storage: LocalStorage, callback: AsyncCallback<void>): void;
1378 resize(width: number, height: number, callback: AsyncCallback<void>): void;
1403 moveTo(x: number, y: number, callback: AsyncCallback<void>): void;
1425 show(callback: AsyncCallback<void>): void;
1443 hide(callback: AsyncCallback<void>): void;
1463 on(type: 'show', callback: () => void): void;
1474 off(type: 'show', callback?: () => void): void;
1485 on(type: 'hide', callback: () => void): void;
1496 off(type: 'hide', callback?: () => void): void;