xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QObject.xcsm
浏览该文件的文档.
1package Qt{
2 public static class Runnable {
3 public void run();
4 };
5
6 @SuppressWarnings public class QObject : QCore {
7 public static List<Runnable> _uiloop_list = new List<Runnable>();
8 public static bool _ui_loop_busy = false;
9
10 public void runOnUi(Runnable task) {
11 synchronized(_uiloop_list) {
12 _uiloop_list.add(task);
13 }
14 Notify(Constant.NEW_UI_TASK_NID);
15 }
16
17 /*public void runOnUi(Runnable task, String tag) {
18 synchronized(_uiloop_list) {
19 _uiloop_list.add(task);
20 }
21 Class c = this.getClass();
22 Notify(Constant.NEW_UI_TASK_NID, tag + "_" + c.getName() + "handle:" + nativehandle);
23 }*/
24
25 public static void runOnThread(Runnable task) {
26 new QThread() {
27 void run()override {
28 task.run();
29 super.run();
30 }
31 } .start();
32 }
33
34 private final void onNotify(long eventid) {
35 if (eventid == Constant.NEW_UI_TASK_NID) {
36 if (_ui_loop_busy == false){
37 _ui_loop_busy = true;
38 while (_uiloop_list.size() > 0) {
39 Runnable r;
40 synchronized(_uiloop_list) {
41 if (_uiloop_list.size() > 0) {
42 try{
43 r = _uiloop_list.pollHead();
45
46 }
47 }
48 }
49 if (r != nilptr) {
50 r.run();
51 }
52 }
53 _ui_loop_busy = false;
54 }
55 } else {
56 onNotification(eventid);
57 }
58 if (_notifyListener != nilptr) {
59 _notifyListener.onNotify(this, eventid);
60 }
61 }
62
63
64 public void onNotification(long eventid) {
65 if (_notifyListener != nilptr) {
66 _notifyListener.onNotify(this, eventid);
67 }
68 }
69
70 public void setOnFileSystemChangeListener(onFileSystemChangeListener l) {
71 _fsweListener = l;
72 }
73 public TableWidgetEventListener _tableenvlis = nilptr;
74 public onFileSystemChangeListener _fsweListener = nilptr;
75 public onEditEventListener _editEventListener = nilptr;
76 public onMouseEventListener _mouseListener = nilptr;
77 public onKeyEventListener _keyListener = nilptr;
78 public onFocusEventListener _focusListener = nilptr;
79 public onScopeEventListener _scopeListener = nilptr;
80 public onPaintListener _paintEvent = nilptr;
81 public onLayoutEventListener _layoutEvent = nilptr;
82 public onStatusListener _statusEvent = nilptr;
83 public onUpdateListener _updateListener = nilptr;
84 public onEventListener _eventListener = nilptr;
85 public onTreeViewItemEvent _treeitemevent = nilptr;
86 public onNotifyListener _notifyListener = nilptr;
87 public onClickListener _clicklistener = nilptr;
88 public SciEventListener _sciEventListener = nilptr;
89 public onContextMenuListener _contextMenuListener = nilptr;
90 public onActivateListener _activateListener = nilptr;
91 public onComboBoxEventListener _comboboxListener = nilptr;
92 public onDragListener _dragListener = nilptr;
93 public void setOnDragListener(onDragListener l) {
94 _dragListener = l;
95 }
96 public void setOnTableWidgetEventListener(TableWidgetEventListener l) {
97 _tableenvlis = l;
98 }
99 public void setOnComboBoxEventListener(onComboBoxEventListener l) {
100 _comboboxListener = l;
101 }
102 public void setOnActivateListener(onActivateListener l) {
103 _activateListener = l;
104 }
105 public void setOnContextMenuListener(onContextMenuListener l) {
106 _contextMenuListener = l;
107 }
108 public void setOnSciEventListener(SciEventListener l) {
109 _sciEventListener = l;
110 }
111 public void setOnClickListener(onClickListener l) {
112 _clicklistener = l;
113 }
114
115 public void setOnNotifyListener(onNotifyListener l) {
116 _notifyListener = l;
117 }
118
119 public void setOnTreeViewItemEvent(onTreeViewItemEvent l) {
120 _treeitemevent = l;
121 }
122 public void setOnEventListener(onEventListener l) {
123 _eventListener = l;
124 }
125 public void setOnUpdateListener(onUpdateListener l) {
126 _updateListener = l;
127 }
128 public void setOnEditEventListener(onEditEventListener l) {
129 _editEventListener = l;
130 }
131 public void setOnMouseEventListener(onMouseEventListener l) {
132 _mouseListener = l;
133 }
134 public void setOnKeyEventListener(onKeyEventListener l) {
135 _keyListener = l;
136 }
137 public void setOnFocusEventListener(onFocusEventListener l) {
138 _focusListener = l;
139 }
140 public void setOnScopeEventListener(onScopeEventListener l) {
141 _scopeListener = l;
142 }
143 public void setOnPaintListener(onPaintListener l) {
144 _paintEvent = l;
145 }
146 public void setOnLayoutEventListener(onLayoutEventListener l) {
147 _layoutEvent = l;
148 }
149 public void setOnStatusListener(onStatusListener l) {
150 _statusEvent = l;
151 }
152
153 public void onAttach() {
154
155 }
156
157 public QObject() {
158 }
159
160 public QObject(long handle) {
161 super(handle);
162 }
163
164 public QObject findByName(String name) {
165 return (QObject)QtXnl.findControl(nativehandle, name);
166 }
167
168 public QObject attachByName(@NotNilptr QObject newObj, String name) {
169 newObj.nativehandle = QtXnl.attachControl(nativehandle, newObj, name);
170 if (newObj.nativehandle != 0) {
171 newObj.onAttach();
172 return newObj;
173 }
174 return nilptr;
175 }
176
177 public bool attach(@NotNilptr QObject obj) {
178 nativehandle = QtXnl.core_attach(obj.nativehandle, this);
179 if (nativehandle != 0) {
180 onAttach();
181 return true;
182 }
183 return false;
184 }
185
186 public String getName() {
187 return (String)QtXnl.core_getName(nativehandle);
188 }
189
190 public final void delete(){
191 QtXnl.widget_slot(nativehandle, Constant.DELETE_OBJECT);
192 }
193
194 public void setName(String name) {
195 QtXnl.widget_slot_string(nativehandle, Constant.OBJECTSETNAME, name);
196 }
197
199 return (String)QtXnl.core_getClassName(nativehandle);
200 }
201
202 public QObject getParent() {
203 return (QObject)QtXnl.core_getParent(nativehandle);
204 }
205
206 public void onTimer(int timeId) {}
208 public void onMouseButtonPress(int Button, int x, int y, int flags, int source) {
209 if (_mouseListener != nilptr) {
210 _mouseListener.onMouseButtonPress(this, Button, x, y, flags, source);
211 }
212 }
213
214 public void onMouseButtonRelease(int Button, int x, int y, int flags, int source) {
215 if (_mouseListener != nilptr) {
216 _mouseListener.onMouseButtonRelease(this, Button, x, y, flags, source);
217 }
218 }
219
220 public void onMouseButtonDblClick(int Button, int x, int y, int flags, int source) {
221 if (_mouseListener != nilptr) {
222 _mouseListener.onMouseButtonDblClick(this, Button, x, y, flags, source);
223 }
224 }
225
226 public void onMouseMove(int Button, int x, int y, int flags, int source) {
227 if (_mouseListener != nilptr) {
228 _mouseListener.onMouseMove(this, Button, x, y, flags, source);
229 }
230 }
231 public void onWheel(int button, int x,int y,int Orientation,int delta, bool inverted) {
232 if (_mouseListener != nilptr) {
233 _mouseListener.onWheel(this, button, x, y, Orientation, delta, inverted);
234 }
235 }
237 public bool onKeyPress(int key, bool repeat, int count, String text, int scanCode, int virtualKey, int modifier) {
238 if (_keyListener != nilptr) {
239 return _keyListener.onKeyPress(this, key, repeat, count, text, scanCode, virtualKey, modifier);
240 }
241 return true;
242 }
243 public bool onKeyRelease(int key, bool repeat, int count, String text, int scanCode, int virtualKey, int modifier) {
244 if (_keyListener != nilptr) {
245 return _keyListener.onKeyRelease(this, key, repeat, count, text, scanCode, virtualKey, modifier);
246 }
247 return true;
248 }
249 public void onFocusIn(bool focus, int reson) {
250 if (_focusListener != nilptr) {
251 _focusListener.onFocusIn(this, focus, reson);
252 }
253 }
254 public void onFocusOut(bool focus, int reson) {
255 if (_focusListener != nilptr) {
256 _focusListener.onFocusOut(this, focus, reson);
257 }
258 }
259 public void onFocusAboutToChange(bool focus, int reson) {
260 if (_focusListener != nilptr) {
261 _focusListener.onFocusAboutToChange(this, focus, reson);
262 }
263 }
264 public void onEnter(int x, int y) {
265 if (_scopeListener != nilptr) {
266 _scopeListener.onEnter(this, x, y);
267 }
268 }
269 public void onLeave() {
270 if (_scopeListener != nilptr) {
271 _scopeListener.onLeave(this);
272 }
273 }
274 public void onPaint(int l,int t, int r,int b, long hpaint) {
275 if (_paintEvent != nilptr) {
276 _paintEvent.onPaint(this, l, t, r, b, hpaint);
277 }
278 }
279 public void onMove(int x,int y,int oldx,int oldy) {
280 if (_layoutEvent != nilptr) {
281 _layoutEvent.onMove(this, x, y, oldx, oldy);
282 }
283 }
284 public void onResize(int w, int h, int oldw, int oldh) {
285 if (_layoutEvent != nilptr) {
286 _layoutEvent.onResize(this, w, h, oldw, oldh);
287 }
288 }
289 public void onCreate() {
290 if (_statusEvent != nilptr) {
291 _statusEvent.onCreate(this);
292 }
293 }
294 public void onDestroy() {
295 if (_statusEvent != nilptr) {
296 _statusEvent.onDestroy(this);
297 }
298 }
299 public void onShow() {
300 if (_statusEvent != nilptr) {
301 _statusEvent.onShow(this);
302 }
303 }
304 public void onHide() {
305 if (_statusEvent != nilptr) {
306 _statusEvent.onHide(this);
307 }
308 }
309 public bool onClose() {
310 if (_statusEvent != nilptr) {
311 return _statusEvent.onClose(this);
312 }
313 return true;
314 }
315 public void onQuit() {
316 if (_statusEvent != nilptr) {
317 _statusEvent.onQuit(this);
318 }
319 }
320 public void onParentChange() {
321 if (_statusEvent != nilptr) {
322 _statusEvent.onParentChange(this);
323 }
324 }
325
326 public void onTrigger() {
327 if (_eventListener != nilptr) {
328 _eventListener.onTrigger(this);
329 }
330 }
331
332 public void onParentAboutToChange() {}
333 public void onThreadChange() {}
334 public void onWindowActivate() {
335 if (_activateListener != nilptr) {
336 _activateListener.onWindowActivate(this);
337 }
338 }
339 public void onWindowDeactivate() {
340 if (_activateListener != nilptr) {
341 _activateListener.onWindowDeactivate(this);
342 }
343 }
344 public void onShowToParent() {}
345 public void onHideToParent() { }
346 public void onClipboard() { }
347 public void onWinEventAct() {}
348 public void onDeferredDelete() {}
349 public bool onDragEnter(int l,int t,int r,int b) {
350 if (_dragListener != nilptr) {
351 return _dragListener.onDragEnter(this, l,t,r,b);
352 }
353 return true;
354 }
355 public bool onDragMove(int l,int t,int r,int b) {
356 if (_dragListener != nilptr) {
357 return _dragListener.onDragMove(this, l,t,r,b);
358 }
359 return true;
360 }
361 public bool onDragLeave(int l,int t,int r,int b) {
362 if (_dragListener != nilptr) {
363 return _dragListener.onDragLeave(this, l,t,r,b);
364 }
365 return true;
366 }
367 public void onDrop(Object object) {
368 if (_dragListener != nilptr) {
369 _dragListener.onDrop(this, object);
370 }
371 }
372 public void onDragResponse() {}
373 public void onLayoutRequest() {}
374 public void onUpdateRequest() {
375 if (_updateListener != nilptr) {
376 _updateListener.onUpdate(this);
377 }
378 }
379 public void onUpdateLater() {}
380 public void onEmbeddingControl() {}
381 public void onActivateControl() {}
382 public void onDeactivateControl() {}
383 public void onContextMenu(int x,int y, int reson) {
384 if (_contextMenuListener != nilptr) {
385 _contextMenuListener.onContextMenu(this, x, y, reson);
386 }
387 }
388 public void onInputMethod() {}
389 public void onTabletMove() {}
390 public void onLocaleChange() {}
391 public void onLanguageChange() {}
392 public void onLayoutDirectionChange() {}
393 public void onStyle() {}
394 public void onTabletPress() {}
395 public void onTabletRelease() {}
396 public void onOkRequest() {}
397 public void onHelpRequest(int x,int y) {}
398 public void onIconDrag() {}
399 public void onFontChange() {}
400 public void onEnabledChange() {}
401 public void onActivationChange() {}
402 public void onStyleChange() {}
403 public void onIconTextChange() {}
404 public void onModifiedChange() {}
405 public void onMouseTrackingChange() {}
406 public void onWindowBlocked() {}
407 public void onWindowUnblocked() {}
408
409 public void onWindowStateChange(int oldstate, int state) {
410 if (_statusEvent != nilptr) {
411 _statusEvent.onWindowStateChange(this, oldstate, state);
412 }
413 }
414
415 public void onReadOnlyChange() {}
416 public void onToolTip(int x,int y) {}
417 public void onWhatsThis(int x,int y) {}
418 public void onStatusTip(String tips) {}
419 public void onActionChanged() {}
420 public void onActionAdded() {}
421 public void onActionRemoved() {}
422 public void onFileOpen() {}
423 public void onShortcut(int key, int shortcutId, bool ambig) {}
424 public void onShortcutOverride() {}
425 public void onWhatsThisClicked() {}
426 public void onToolBarChange() {}
427 public void onApplicationActivate() {}
428 public void onApplicationDeactivate() {}
429 public void onQueryWhatsThis() {}
430 public void onEnterWhatsThisMode() {}
431 public void onLeaveWhatsThisMode() {}
432 public void onZOrderChange() {}
433 public void onHoverEnter(int x,int y) {}
434 public void onHoverLeave(int x,int y) {}
435 public void onHoverMove(int x,int y) {}
436 public void onAcceptDropsChange() {}
437 public void onZeroTimerEvent() {}
446 public void onGraphicsSceneHelp() {}
448 public void onGraphicsSceneDragMove() {}
450 public void onGraphicsSceneDrop() {}
451 public void onGraphicsSceneWheel() {}
452 public void onKeyboardLayoutChange() {}
453 public void onDynamicPropertyChange() {}
454 public void onTabletEnterProximity() {}
455 public void onTabletLeaveProximity() {}
460 public void onMacSizeChange() {}
461 public void onContentsRectChange() {}
462 public void onMacGLWindowChange() {}
463 public void onFutureCallOut() {}
464 public void onGraphicsSceneResize() {}
465 public void onGraphicsSceneMove() {}
466 public void onCursorChange() {}
467 public void onToolTipChange() {}
468 public void onNetworkReplyUpdated() {}
469 public void onGrabMouse() {}
470 public void onUngrabMouse() {}
471 public void onGrabKeyboard() {}
472 public void onUngrabKeyboard() {}
473 public void onMacGLClearDrawable() {}
474 public void onStateMachineSignal() {}
475 public void onStateMachineWrapped() {}
476 public void onTouchBegin() {}
477 public void onTouchUpdate() {}
478 public void onTouchEnd() {}
479 public void onNativeGesture() {}
482 public void onWinIdChange() {}
483 public void onGesture() {}
484 public void onGestureOverride() {}
485 public void onScrollPrepare() {}
486 public void onScroll() {}
487 public void onExpose() {}
488 public void onInputMethodQuery() {}
489 public void onOrientationChange() {}
490 public void onTouchCancel() {}
491 public void onThemeChange() {}
492 public void onSockClose() {}
493 public void onPlatformPanel() {}
494 public void onStyleAnimationUpdate() {}
496 public void onWindowChangeInternal() {}
497 public void onScreenChangeInternal() {}
498 public void onPlatformSurface() {}
499 public void onPointer() {}
500 public void onTabletTrackingChange() {}
501 public void onUser() {}
502 public void onMaxUser() {}
503 public void setTag(Object obj) {
504 QtXnl.widget_set_object_value(nativehandle, Constant.SETTAG, obj);
505 }
506 public Object getTag() {
507 return QtXnl.widget_get_object(nativehandle, Constant.GETTAG);
508 }
509 // tree event
510 public void onItemPressed(long item, int column) {
511 if (_treeitemevent != nilptr) {
512 _treeitemevent.onItemPressed((QTreeWidget)this, item, column);
513 }
514 }
515 public void onItemClicked(long item, int column) {
516 if (_treeitemevent != nilptr) {
517 _treeitemevent.onItemClicked((QTreeWidget)this, item, column);
518 }
519 }
520 public void onItemDoubleClicked(long item, int column) {
521 if (_treeitemevent != nilptr) {
522 _treeitemevent.onItemDoubleClicked((QTreeWidget)this, item, column);
523 }
524 }
525 public void onItemActived(long item, int column) {
526 if (_treeitemevent != nilptr) {
527 _treeitemevent.onItemActived((QTreeWidget)this, item, column);
528 }
529 }
530 public void onItemEntered(long item, int column) {
531 if (_treeitemevent != nilptr) {
532 _treeitemevent.onItemEntered((QTreeWidget)this, item, column);
533 }
534 }
535 public void onItemChanged(long item, int column) {
536 if (_treeitemevent != nilptr) {
537 _treeitemevent.onItemChanged((QTreeWidget)this, item, column);
538 }
539 }
540 public void onItemExpanded(long item) {
541 if (_treeitemevent != nilptr) {
542 _treeitemevent.onItemExpanded((QTreeWidget)this, item);
543 }
544 }
545 public void onItemCollapsed(long item) {
546 if (_treeitemevent != nilptr) {
547 _treeitemevent.onItemCollapsed((QTreeWidget)this, item);
548 }
549 }
550 public void onCurrentItemChanged(long cur, long previous) {
551 if (_treeitemevent != nilptr) {
552 _treeitemevent.onCurrentItemChanged((QTreeWidget)this, cur, previous);
553 }
554 }
556 if (_treeitemevent != nilptr) {
557 _treeitemevent.onItemSelectionChanged((QTreeWidget)this);
558 }
559 }
560
561 public void onClick(bool checked) {
562 if (_clicklistener != nilptr) {
563 _clicklistener.onClick(this, checked);
564 }
565 }
566 public void onToggle(bool checked) {
567 if (_clicklistener != nilptr) {
568 _clicklistener.onToggle(this, checked);
569 }
570 }
571 public void onPress() {
572 if (_clicklistener != nilptr) {
573 _clicklistener.onPress(this);
574 }
575 }
576 public void onRelease() {
577 if (_clicklistener != nilptr) {
578 _clicklistener.onRelease(this);
579 }
580 }
581 public void nativeFinalize() {
582 nativehandle = 0;
583 }
584
585 public void finalize() {
586 if (nativehandle != 0) {
587 QtXnl.widget_slot(nativehandle, Constant.NATIVEFINALIZE);
588 }
589 }
590 public void onFinish(int res) {
591 }
592 public void onAccept() {
593 }
594 public void onReject() {
595 }
596 public void QON_SELCHANGED(bool yes) {
597 if (_sciEventListener != nilptr) {
598 _sciEventListener.QON_SELCHANGED((QScintilla)this, yes);
599 }
600 }
601 public void ON_AUTOCCANCELLED() {
602 if (_sciEventListener != nilptr) {
603 _sciEventListener.ON_AUTOCCANCELLED((QScintilla)this);
604 }
605 }
606 public void ON_AUTOCCHARDELETED() {
607 if (_sciEventListener != nilptr) {
608 _sciEventListener.ON_AUTOCCHARDELETED((QScintilla)this);
609 }
610 }
611 public void ON_AUTOCCOMPLETED(String selection, int position, int ch, int method) {
612 if (_sciEventListener != nilptr) {
613 _sciEventListener.ON_AUTOCCOMPLETED((QScintilla)this, selection, position, ch, method);
614 }
615 }
616 public void ON_AUTOCSELECTION(String selection, int position, int ch, int method) {
617 if (_sciEventListener != nilptr) {
618 _sciEventListener.ON_AUTOCSELECTION((QScintilla)this, selection, position, ch, method);
619 }
620 }
621 public void ON_AUTOCSELECTION(String selection, int position) {
622 if (_sciEventListener != nilptr) {
623 _sciEventListener.ON_AUTOCSELECTION((QScintilla)this, selection, position);
624 }
625 }
626 public void SCEN_CHANGE() {
627 if (_sciEventListener != nilptr) {
628 _sciEventListener.SCEN_CHANGE((QScintilla)this);
629 }
630 }
631 public void ON_CALLTIPCLICK(int direction) {
632 if (_sciEventListener != nilptr) {
633 _sciEventListener.ON_CALLTIPCLICK((QScintilla)this, direction);
634 }
635 }
636 public void ON_CHARADDED(int charadded) {
637 if (_sciEventListener != nilptr) {
638 _sciEventListener.ON_CHARADDED((QScintilla)this, charadded);
639 }
640 }
641 public void ON_DOUBLECLICK(int position, int line, int modifiers) {
642 if (_sciEventListener != nilptr) {
643 _sciEventListener.ON_DOUBLECLICK((QScintilla)this, position, line, modifiers);
644 }
645 }
646 public void ON_DWELLEND(int position, int x, int y) {
647 if (_sciEventListener != nilptr) {
648 _sciEventListener.ON_DWELLEND((QScintilla)this, position, x, y);
649 }
650 }
651 public void ON_DWELLSTART(int position, int x, int y) {
652 if (_sciEventListener != nilptr) {
653 _sciEventListener.ON_DWELLSTART((QScintilla)this, position, x, y);
654 }
655 }
656 public void ON_FOCUSIN() {
657 if (_sciEventListener != nilptr) {
658 _sciEventListener.ON_FOCUSIN((QScintilla)this);
659 }
660 }
661 public void ON_FOCUSOUT() {
662 if (_sciEventListener != nilptr) {
663 _sciEventListener.ON_FOCUSOUT((QScintilla)this);
664 }
665 }
666 public void ON_HOTSPOTCLICK(int position, int modifiers) {
667 if (_sciEventListener != nilptr) {
668 _sciEventListener.ON_HOTSPOTCLICK((QScintilla)this, position, modifiers);
669 }
670 }
671 public void ON_HOTSPOTDOUBLECLICK(int position, int modifiers) {
672 if (_sciEventListener != nilptr) {
673 _sciEventListener.ON_HOTSPOTDOUBLECLICK((QScintilla)this, position, modifiers);
674 }
675 }
676 public void ON_HOTSPOTRELEASECLICK(int position, int modifiers) {
677 if (_sciEventListener != nilptr) {
678 _sciEventListener.ON_HOTSPOTRELEASECLICK((QScintilla)this, position, modifiers);
679 }
680 }
681 public void ON_INDICATORCLICK(int position, int modifiers) {
682 if (_sciEventListener != nilptr) {
683 _sciEventListener.ON_INDICATORCLICK((QScintilla)this, position, modifiers);
684 }
685 }
686 public void ON_INDICATORRELEASE(int position, int modifiers) {
687 if (_sciEventListener != nilptr) {
688 _sciEventListener.ON_INDICATORRELEASE((QScintilla)this, position, modifiers);
689 }
690 }
691 public void ON_MACRORECORD(int msg, long wparam, long lparam) {
692 if (_sciEventListener != nilptr) {
693 _sciEventListener.ON_MACRORECORD((QScintilla)this, msg, wparam, lparam);
694 }
695 }
696 public void ON_MARGINCLICK(int position, int modifiers, int margin) {
697 if (_sciEventListener != nilptr) {
698 _sciEventListener.ON_MARGINCLICK((QScintilla)this, position, modifiers, margin);
699 }
700 }
701 public void ON_MARGINRIGHTCLICK(int position, int modifiers, int margin) {
702 if (_sciEventListener != nilptr) {
703 _sciEventListener.ON_MARGINRIGHTCLICK((QScintilla)this, position, modifiers, margin);
704 }
705 }
706 public void ON_MODIFIED(int position, int modType, String text, int length, int linesAdded, int line, int foldLevelNow, int foldLevelPrev, int token, int annotationLinesAdded) {
707 if (_sciEventListener != nilptr) {
708 _sciEventListener.ON_MODIFIED((QScintilla)this, position, modType, text, length, linesAdded, line, foldLevelNow, foldLevelPrev, token, annotationLinesAdded);
709 }
710 }
711 public void ON_MODIFYATTEMPTRO() {
712 if (_sciEventListener != nilptr) {
713 _sciEventListener.ON_MODIFYATTEMPTRO((QScintilla)this);
714 }
715 }
716 public void ON_NEEDSHOWN(int position, int length) {
717 if (_sciEventListener != nilptr) {
718 _sciEventListener.ON_NEEDSHOWN((QScintilla)this, position, length);
719 }
720 }
721 public void ON_PAINTED() {
722 if (_sciEventListener != nilptr) {
723 _sciEventListener.ON_PAINTED((QScintilla)this);
724 }
725 }
726 public void ON_SAVEPOINTLEFT() {
727 if (_sciEventListener != nilptr) {
728 _sciEventListener.ON_SAVEPOINTLEFT((QScintilla)this);
729 }
730 }
731 public void ON_SAVEPOINTREACHED() {
732 if (_sciEventListener != nilptr) {
733 _sciEventListener.ON_SAVEPOINTREACHED((QScintilla)this);
734 }
735 }
736 public void ON_STYLENEEDED(int position) {
737 if (_sciEventListener != nilptr) {
738 _sciEventListener.ON_STYLENEEDED((QScintilla)this, position);
739 }
740 }
741 public void ON_UPDATEUI(int updated) {
742 if (_sciEventListener != nilptr) {
743 _sciEventListener.ON_UPDATEUI((QScintilla)this, updated);
744 }
745 }
746 public void ON_USERLISTSELECTION(String text, int wparam, int ch, int listCompletionMethod) {
747 if (_sciEventListener != nilptr) {
748 _sciEventListener.ON_USERLISTSELECTION((QScintilla)this, text, wparam, ch, listCompletionMethod);
749 }
750 }
751 public void ON_USERLISTSELECTION(String text, int wparam) {
752 if (_sciEventListener != nilptr) {
753 _sciEventListener.ON_USERLISTSELECTION((QScintilla)this, text, wparam);
754 }
755 }
756 public void ON_ZOOM() {
757 if (_sciEventListener != nilptr) {
758 _sciEventListener.ON_ZOOM((QScintilla)this);
759 }
760 }
761
762 public void onTextChanged(String text) {
763 if (_editEventListener != nilptr) {
764 _editEventListener.onTextChanged(this, text);
765 }
766 }
767
768 public void onTextEdited(String text) {
769 if (_editEventListener != nilptr) {
770 _editEventListener.onTextEdited(this, text);
771 }
772 }
773
774 public void onCursorPositionChanged(int n,int o) {
775 if (_editEventListener != nilptr) {
776 _editEventListener.onCursorPositionChanged(this, n, o);
777 }
778 }
779
780 public void onReturnPressed() {
781 if (_editEventListener != nilptr) {
782 _editEventListener.onReturnPressed(this);
783 }
784 }
785
786 public void onEditingFinished() {
787 if (_editEventListener != nilptr) {
788 _editEventListener.onEditingFinished(this);
789 }
790 }
791
792 public void onSelectionChanged() {
793 if (_editEventListener != nilptr) {
794 _editEventListener.onSelectionChanged(this);
795 }
796 }
797
798 public void onCurrentTextChange(String text) {
799 if (_comboboxListener != nilptr) {
800 _comboboxListener.onCurrentTextChange(this, text);
801 }
802 }
803
804 public void onActivated(int id) {
805 if (_comboboxListener != nilptr) {
806 _comboboxListener.onActivated(this, id);
807 }
808 }
809
810 public void onItemSelected(int id) {
811 if (_comboboxListener != nilptr) {
812 _comboboxListener.onItemSelected(this, id);
813 }
814 }
815
816
817 public void onFileChanged(String path) {
818 if (_fsweListener != nilptr) {
819 _fsweListener.onFileChanged(this, path);
820 }
821 }
822
823 public void onDirChange(String path) {
824 if (_fsweListener != nilptr) {
825 _fsweListener.onDirChange(this, path);
826 }
827 }
828 public void onCellChange(int row,int column) {
829 if (_tableenvlis != nilptr) {
830 _tableenvlis.onCellChange((QTableWidget)this, row, column);
831 }
832 }
833 public void onItemChange(long item) {
834 if (_tableenvlis != nilptr) {
835 _tableenvlis.onItemChange((QTableWidget)this, item);
836 }
837 }
838 public void onCellPress(int row,int column) {
839 if (_tableenvlis != nilptr) {
840 _tableenvlis.onCellPress((QTableWidget)this, row, column);
841 }
842 }
843 public void onItemPress(long item) {
844 if (_tableenvlis != nilptr) {
845 _tableenvlis.onItemPress((QTableWidget)this, item);
846 }
847 }
848 public void onCellClick(int row,int column) {
849 if (_tableenvlis != nilptr) {
850 _tableenvlis.onCellClick((QTableWidget)this, row, column);
851 }
852 }
853 public void onItemClick(long item) {
854 if (_tableenvlis != nilptr) {
855 _tableenvlis.onItemClick((QTableWidget)this, item);
856 }
857 }
858 public void onCellDBClick(int row,int column) {
859 if (_tableenvlis != nilptr) {
860 _tableenvlis.onCellDBClick((QTableWidget)this, row, column);
861 }
862 }
863 public void onItemDBClick(long item) {
864 if (_tableenvlis != nilptr) {
865 _tableenvlis.onItemDBClick((QTableWidget)this, item);
866 }
867 }
868 public void onCellEnter(int row,int column) {
869 if (_tableenvlis != nilptr) {
870 _tableenvlis.onCellEnter((QTableWidget)this, row, column);
871 }
872 }
873 public void onItemEnter(long item) {
874 if (_tableenvlis != nilptr) {
875 _tableenvlis.onItemEnter((QTableWidget)this, item);
876 }
877 }
878 public void onCellActived(int row,int column) {
879 if (_tableenvlis != nilptr) {
880 _tableenvlis.onCellActived((QTableWidget)this, row, column);
881 }
882 }
883 public void onItemActived(long item) {
884 if (_tableenvlis != nilptr) {
885 _tableenvlis.onItemActived((QTableWidget)this, item);
886 }
887 }
888
889 public void onEnumPropertyValueChanged(long prop, int item) {
890
891 }
892
893 public void onVariantPropertyValueChanged(long prop, int dataType, String stringValue) {
894
895 }
896
897 public void onVariantPropertyAttributeChanged(long prop,String strAttributr, int dataType, String stringValue) {
898
899 }
900
901
902 public static bool associateExt(String strName, String strExt, String strAppName, String args, String strAppKey, String strDefaultIcon, String strDescribe){
903 String [] params = {strName, strExt, strAppName, args, strAppKey, strDefaultIcon, strDescribe};
904 return QtXnl.array_int2(0, Constant.ASSOCIATEEXT, params, 0, 0);
905 }
906
907 public static bool checkAssociate(String strName, String strExt, String strAppKey){
908 String [] params = {strName, strExt, strAppKey};
909 return QtXnl.array_int2(0, Constant.CHECKASSOCIATED, params, 0, 0);
910 }
911 };
912};
T pollHead()
int size()
void add(T)
void ON_HOTSPOTCLICK(int position, int modifiers)
Definition QObject.xcsm:666
void onInputMethodQuery()
Definition QObject.xcsm:488
void onRelease()
Definition QObject.xcsm:576
void setOnFileSystemChangeListener(onFileSystemChangeListener l)
Definition QObject.xcsm:70
void onDeactivateControl()
Definition QObject.xcsm:382
void onToolBarChange()
Definition QObject.xcsm:426
void onHelpRequest(int x,int y)
Definition QObject.xcsm:397
void onNonClientAreaMouseButtonPress()
Definition QObject.xcsm:457
void onGraphicsSceneDragMove()
Definition QObject.xcsm:448
void setOnStatusListener(onStatusListener l)
Definition QObject.xcsm:149
void onAcceptDropsChange()
Definition QObject.xcsm:436
void ON_MACRORECORD(int msg, long wparam, long lparam)
Definition QObject.xcsm:691
void onToggle(bool checked)
Definition QObject.xcsm:566
void onPaint(int l,int t, int r,int b, long hpaint)
Definition QObject.xcsm:274
void onHoverMove(int x,int y)
Definition QObject.xcsm:435
void setOnSciEventListener(SciEventListener l)
Definition QObject.xcsm:108
void onActivateControl()
Definition QObject.xcsm:381
void onApplicationStateChange()
Definition QObject.xcsm:495
QObject attachByName(@NotNilptr QObject newObj, String name)
Definition QObject.xcsm:168
void onLeaveWhatsThisMode()
Definition QObject.xcsm:431
void onFocusIn(bool focus, int reson)
Definition QObject.xcsm:249
void onUser()
Definition QObject.xcsm:501
bool onDragEnter(int l,int t,int r,int b)
Definition QObject.xcsm:349
void onPlatformPanel()
Definition QObject.xcsm:493
void ON_AUTOCCOMPLETED(String selection, int position, int ch, int method)
Definition QObject.xcsm:611
void setOnFocusEventListener(onFocusEventListener l)
Definition QObject.xcsm:137
void onItemCollapsed(long item)
Definition QObject.xcsm:545
void ON_AUTOCSELECTION(String selection, int position)
Definition QObject.xcsm:621
void onMacSizeChange()
Definition QObject.xcsm:460
void setOnUpdateListener(onUpdateListener l)
Definition QObject.xcsm:125
void onCurrentTextChange(String text)
Definition QObject.xcsm:798
void onAttach()
Definition QObject.xcsm:153
void onPlatformSurface()
Definition QObject.xcsm:498
void SCEN_CHANGE()
Definition QObject.xcsm:626
void onReadOnlyChange()
Definition QObject.xcsm:415
void onGraphicsSceneDragLeave()
Definition QObject.xcsm:449
void onLanguageChange()
Definition QObject.xcsm:391
void onTabletTrackingChange()
Definition QObject.xcsm:500
void onThreadChange()
Definition QObject.xcsm:333
void ON_MARGINCLICK(int position, int modifiers, int margin)
Definition QObject.xcsm:696
void onScrollPrepare()
Definition QObject.xcsm:485
void onNativeGesture()
Definition QObject.xcsm:479
void onMouseButtonPress(int Button, int x, int y, int flags, int source)
Definition QObject.xcsm:208
void onGraphicsSceneMouseMove()
Definition QObject.xcsm:438
void onEnterWhatsThisMode()
Definition QObject.xcsm:430
void setOnTableWidgetEventListener(TableWidgetEventListener l)
Definition QObject.xcsm:96
void onFileChanged(String path)
Definition QObject.xcsm:817
void onItemPressed(long item, int column)
Definition QObject.xcsm:510
void onLayoutRequest()
Definition QObject.xcsm:373
void onGraphicsSceneHoverMove()
Definition QObject.xcsm:444
void onShortcutOverride()
Definition QObject.xcsm:424
void ON_USERLISTSELECTION(String text, int wparam, int ch, int listCompletionMethod)
Definition QObject.xcsm:746
void onActionChanged()
Definition QObject.xcsm:419
void onShowToParent()
Definition QObject.xcsm:344
void onTabletMove()
Definition QObject.xcsm:389
void onCellPress(int row,int column)
Definition QObject.xcsm:838
void onWinIdChange()
Definition QObject.xcsm:482
void ON_SAVEPOINTLEFT()
Definition QObject.xcsm:726
void onEnter(int x, int y)
Definition QObject.xcsm:264
void onOkRequest()
Definition QObject.xcsm:396
void onGraphicsSceneDragEnter()
Definition QObject.xcsm:447
void onWinEventAct()
Definition QObject.xcsm:347
void onMouseTrackingChange()
Definition QObject.xcsm:405
void onGraphicsSceneContextMenu()
Definition QObject.xcsm:442
void onGraphicsSceneDrop()
Definition QObject.xcsm:450
void ON_FOCUSOUT()
Definition QObject.xcsm:661
void onCellChange(int row,int column)
Definition QObject.xcsm:828
void ON_CALLTIPCLICK(int direction)
Definition QObject.xcsm:631
void onHideToParent()
Definition QObject.xcsm:345
void onCurrentItemChanged(long cur, long previous)
Definition QObject.xcsm:550
void onUpdateLater()
Definition QObject.xcsm:379
bool onDragMove(int l,int t,int r,int b)
Definition QObject.xcsm:355
void onDragResponse()
Definition QObject.xcsm:372
void onTouchBegin()
Definition QObject.xcsm:476
void onNotification(long eventid)
Definition QObject.xcsm:64
void onGraphicsSceneResize()
Definition QObject.xcsm:464
void onTouchUpdate()
Definition QObject.xcsm:477
void onGraphicsSceneMove()
Definition QObject.xcsm:465
void onWindowUnblocked()
Definition QObject.xcsm:407
bool onDragLeave(int l,int t,int r,int b)
Definition QObject.xcsm:361
void onContextMenu(int x,int y, int reson)
Definition QObject.xcsm:383
void onLayoutDirectionChange()
Definition QObject.xcsm:392
void ON_AUTOCCANCELLED()
Definition QObject.xcsm:601
void ON_HOTSPOTRELEASECLICK(int position, int modifiers)
Definition QObject.xcsm:676
void onZOrderChange()
Definition QObject.xcsm:432
final void delete()
Definition QObject.xcsm:190
void onHoverLeave(int x,int y)
Definition QObject.xcsm:434
void onLocaleChange()
Definition QObject.xcsm:390
void onStatusTip(String tips)
Definition QObject.xcsm:418
void onDynamicPropertyChange()
Definition QObject.xcsm:453
void onEmbeddingControl()
Definition QObject.xcsm:380
void onWindowDeactivate()
Definition QObject.xcsm:339
void onDestroy()
Definition QObject.xcsm:294
void onExpose()
Definition QObject.xcsm:487
void onItemEntered(long item, int column)
Definition QObject.xcsm:530
void setOnScopeEventListener(onScopeEventListener l)
Definition QObject.xcsm:140
void onHide()
Definition QObject.xcsm:304
void onMaxUser()
Definition QObject.xcsm:502
void onUngrabMouse()
Definition QObject.xcsm:470
void onNetworkReplyUpdated()
Definition QObject.xcsm:468
void setOnComboBoxEventListener(onComboBoxEventListener l)
Definition QObject.xcsm:99
String getName()
Definition QObject.xcsm:186
void onAccept()
Definition QObject.xcsm:592
void onItemEnter(long item)
Definition QObject.xcsm:873
bool onKeyRelease(int key, bool repeat, int count, String text, int scanCode, int virtualKey, int modifier)
Definition QObject.xcsm:243
void onMacGLWindowChange()
Definition QObject.xcsm:462
void setOnEventListener(onEventListener l)
Definition QObject.xcsm:122
void onFocusAboutToChange(bool focus, int reson)
Definition QObject.xcsm:259
void onGrabMouse()
Definition QObject.xcsm:469
static bool associateExt(String strName, String strExt, String strAppName, String args, String strAppKey, String strDefaultIcon, String strDescribe)
Definition QObject.xcsm:902
void onEnabledChange()
Definition QObject.xcsm:400
void QON_SELCHANGED(bool yes)
Definition QObject.xcsm:596
void onKeyboardLayoutChange()
Definition QObject.xcsm:452
void ON_HOTSPOTDOUBLECLICK(int position, int modifiers)
Definition QObject.xcsm:671
void setOnLayoutEventListener(onLayoutEventListener l)
Definition QObject.xcsm:146
void onQueryWhatsThis()
Definition QObject.xcsm:429
void onRequestSoftwareInputPanel()
Definition QObject.xcsm:480
void onToolTip(int x,int y)
Definition QObject.xcsm:416
void ON_PAINTED()
Definition QObject.xcsm:721
void setOnEditEventListener(onEditEventListener l)
Definition QObject.xcsm:128
void onGraphicsSceneMouseRelease()
Definition QObject.xcsm:440
void onQuit()
Definition QObject.xcsm:315
void onNonClientAreaMouseButtonRelease()
Definition QObject.xcsm:458
void onEditingFinished()
Definition QObject.xcsm:786
void onTextChanged(String text)
Definition QObject.xcsm:762
void setOnMouseEventListener(onMouseEventListener l)
Definition QObject.xcsm:131
void onActivationChange()
Definition QObject.xcsm:401
void onApplicationDeactivate()
Definition QObject.xcsm:428
void onGraphicsSceneWheel()
Definition QObject.xcsm:451
void runOnUi(Runnable task)
Definition QObject.xcsm:10
void onStateMachineSignal()
Definition QObject.xcsm:474
void onFileOpen()
Definition QObject.xcsm:422
void onPress()
Definition QObject.xcsm:571
void ON_MODIFIED(int position, int modType, String text, int length, int linesAdded, int line, int foldLevelNow, int foldLevelPrev, int token, int annotationLinesAdded)
Definition QObject.xcsm:706
void onFinish(int res)
Definition QObject.xcsm:590
void onEnumPropertyValueChanged(long prop, int item)
Definition QObject.xcsm:889
void ON_DOUBLECLICK(int position, int line, int modifiers)
Definition QObject.xcsm:641
void onItemPress(long item)
Definition QObject.xcsm:843
void onCellActived(int row,int column)
Definition QObject.xcsm:878
void onShortcut(int key, int shortcutId, bool ambig)
Definition QObject.xcsm:423
void onThemeChange()
Definition QObject.xcsm:491
void onActionRemoved()
Definition QObject.xcsm:421
void onCellClick(int row,int column)
Definition QObject.xcsm:848
void finalize()
Definition QObject.xcsm:585
void onTabletEnterProximity()
Definition QObject.xcsm:454
void ON_SAVEPOINTREACHED()
Definition QObject.xcsm:731
void onItemChanged(long item, int column)
Definition QObject.xcsm:535
void setTag(Object obj)
Definition QObject.xcsm:503
void onWindowBlocked()
Definition QObject.xcsm:406
void onFontChange()
Definition QObject.xcsm:399
void onClipboard()
Definition QObject.xcsm:346
void onWindowActivate()
Definition QObject.xcsm:334
bool onKeyPress(int key, bool repeat, int count, String text, int scanCode, int virtualKey, int modifier)
Definition QObject.xcsm:237
void onMouseButtonRelease(int Button, int x, int y, int flags, int source)
Definition QObject.xcsm:214
void onWheel(int button, int x,int y,int Orientation,int delta, bool inverted)
Definition QObject.xcsm:231
void setOnActivateListener(onActivateListener l)
Definition QObject.xcsm:102
void onOrientationChange()
Definition QObject.xcsm:489
void onResize(int w, int h, int oldw, int oldh)
Definition QObject.xcsm:284
void onLeave()
Definition QObject.xcsm:269
void setOnDragListener(onDragListener l)
Definition QObject.xcsm:93
Object getTag()
Definition QObject.xcsm:506
void ON_UPDATEUI(int updated)
Definition QObject.xcsm:741
void onGesture()
Definition QObject.xcsm:483
void onTrigger()
Definition QObject.xcsm:326
void onHoverEnter(int x,int y)
Definition QObject.xcsm:433
bool attach(@NotNilptr QObject obj)
Definition QObject.xcsm:177
void onItemChange(long item)
Definition QObject.xcsm:833
void onShow()
Definition QObject.xcsm:299
void onSockClose()
Definition QObject.xcsm:492
void setOnContextMenuListener(onContextMenuListener l)
Definition QObject.xcsm:105
void onWindowChangeInternal()
Definition QObject.xcsm:496
void onTouchCancel()
Definition QObject.xcsm:490
QObject findByName(String name)
Definition QObject.xcsm:164
void onCloseSoftwareInputPanel()
Definition QObject.xcsm:481
void onIconDrag()
Definition QObject.xcsm:398
void onCellDBClick(int row,int column)
Definition QObject.xcsm:858
void onWindowStateChange(int oldstate, int state)
Definition QObject.xcsm:409
void ON_STYLENEEDED(int position)
Definition QObject.xcsm:736
void onItemSelected(int id)
Definition QObject.xcsm:810
void onReturnPressed()
Definition QObject.xcsm:780
void onSelectionChanged()
Definition QObject.xcsm:792
void onTextEdited(String text)
Definition QObject.xcsm:768
void onItemDBClick(long item)
Definition QObject.xcsm:863
void onGraphicsSceneMouseDoubleClick()
Definition QObject.xcsm:441
QObject(long handle)
Definition QObject.xcsm:160
void onGraphicsSceneHoverEnter()
Definition QObject.xcsm:443
void onVariantPropertyValueChanged(long prop, int dataType, String stringValue)
Definition QObject.xcsm:893
void nativeFinalize()
Definition QObject.xcsm:581
void onStateMachineWrapped()
Definition QObject.xcsm:475
void onItemExpanded(long item)
Definition QObject.xcsm:540
static void runOnThread(Runnable task)
Definition QObject.xcsm:25
void onItemClick(long item)
Definition QObject.xcsm:853
void onZeroTimerEvent()
Definition QObject.xcsm:437
void onCursorPositionChanged(int n,int o)
Definition QObject.xcsm:774
void onFutureCallOut()
Definition QObject.xcsm:463
static bool checkAssociate(String strName, String strExt, String strAppKey)
Definition QObject.xcsm:907
void onToolTipChange()
Definition QObject.xcsm:467
QObject getParent()
Definition QObject.xcsm:202
void onDeferredDelete()
Definition QObject.xcsm:348
void ON_DWELLSTART(int position, int x, int y)
Definition QObject.xcsm:651
void setName(String name)
Definition QObject.xcsm:194
void onCreate()
Definition QObject.xcsm:289
void ON_INDICATORCLICK(int position, int modifiers)
Definition QObject.xcsm:681
void ON_DWELLEND(int position, int x, int y)
Definition QObject.xcsm:646
void onItemActived(long item, int column)
Definition QObject.xcsm:525
void onGraphicsSceneHoverLeave()
Definition QObject.xcsm:445
void onCursorChange()
Definition QObject.xcsm:466
void onMacGLClearDrawable()
Definition QObject.xcsm:473
void onApplicationActivate()
Definition QObject.xcsm:427
void onNonClientAreaMouseButtonDblClick()
Definition QObject.xcsm:459
void ON_ZOOM()
Definition QObject.xcsm:756
void onActionAdded()
Definition QObject.xcsm:420
void onFocusOut(bool focus, int reson)
Definition QObject.xcsm:254
void onContentsRectChange()
Definition QObject.xcsm:461
void onUngrabKeyboard()
Definition QObject.xcsm:472
void onStyleChange()
Definition QObject.xcsm:402
void setOnPaintListener(onPaintListener l)
Definition QObject.xcsm:143
void setOnTreeViewItemEvent(onTreeViewItemEvent l)
Definition QObject.xcsm:119
void onTabletRelease()
Definition QObject.xcsm:395
void onMouseMove(int Button, int x, int y, int flags, int source)
Definition QObject.xcsm:226
void onActivated(int id)
Definition QObject.xcsm:804
void onGraphicsSceneMousePress()
Definition QObject.xcsm:439
void onInputMethod()
Definition QObject.xcsm:388
void onItemClicked(long item, int column)
Definition QObject.xcsm:515
void onTimer(int timeId)
Definition QObject.xcsm:206
void onDrop(Object object)
Definition QObject.xcsm:367
void onGestureOverride()
Definition QObject.xcsm:484
void ON_MARGINRIGHTCLICK(int position, int modifiers, int margin)
Definition QObject.xcsm:701
void onTabletLeaveProximity()
Definition QObject.xcsm:455
void ON_FOCUSIN()
Definition QObject.xcsm:656
void onModifiedChange()
Definition QObject.xcsm:404
void ON_NEEDSHOWN(int position, int length)
Definition QObject.xcsm:716
void onDirChange(String path)
Definition QObject.xcsm:823
void setOnNotifyListener(onNotifyListener l)
Definition QObject.xcsm:115
void onScreenChangeInternal()
Definition QObject.xcsm:497
void onVariantPropertyAttributeChanged(long prop,String strAttributr, int dataType, String stringValue)
Definition QObject.xcsm:897
void onGraphicsSceneHelp()
Definition QObject.xcsm:446
void onStyleAnimationUpdate()
Definition QObject.xcsm:494
void onGrabKeyboard()
Definition QObject.xcsm:471
final void onNotify(long eventid)
Definition QObject.xcsm:34
void ON_MODIFYATTEMPTRO()
Definition QObject.xcsm:711
void setOnKeyEventListener(onKeyEventListener l)
Definition QObject.xcsm:134
String getClassName()
Definition QObject.xcsm:198
void ON_AUTOCSELECTION(String selection, int position, int ch, int method)
Definition QObject.xcsm:616
void onNonClientAreaMouseMove()
Definition QObject.xcsm:456
void onPointer()
Definition QObject.xcsm:499
void ON_CHARADDED(int charadded)
Definition QObject.xcsm:636
void onStyle()
Definition QObject.xcsm:393
void onUpdateRequest()
Definition QObject.xcsm:374
void onWhatsThis(int x,int y)
Definition QObject.xcsm:417
void onParentAboutToChange()
Definition QObject.xcsm:332
void onItemActived(long item)
Definition QObject.xcsm:883
void onWhatsThisClicked()
Definition QObject.xcsm:425
void onTabletPress()
Definition QObject.xcsm:394
void onTouchEnd()
Definition QObject.xcsm:478
void ON_USERLISTSELECTION(String text, int wparam)
Definition QObject.xcsm:751
void onReject()
Definition QObject.xcsm:594
void onIconTextChange()
Definition QObject.xcsm:403
void onCellEnter(int row,int column)
Definition QObject.xcsm:868
void onItemSelectionChanged()
Definition QObject.xcsm:555
void onMove(int x,int y,int oldx,int oldy)
Definition QObject.xcsm:279
bool onClose()
Definition QObject.xcsm:309
void ON_INDICATORRELEASE(int position, int modifiers)
Definition QObject.xcsm:686
void onMouseButtonDblClick(int Button, int x, int y, int flags, int source)
Definition QObject.xcsm:220
void ON_AUTOCCHARDELETED()
Definition QObject.xcsm:606
void setOnClickListener(onClickListener l)
Definition QObject.xcsm:111
void onParentChange()
Definition QObject.xcsm:320
void onScroll()
Definition QObject.xcsm:486
void onItemDoubleClicked(long item, int column)
Definition QObject.xcsm:520
void onClick(bool checked)
Definition QObject.xcsm:561
字符串类