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