xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QPropertyBrowser.xcsm
浏览该文件的文档.
1
2package Qt{
3@SuppressWarnings public class QPropertyBrowser : QWidget{
4
5 public static class PropertyManager : QObject{
6
7 Map<long, onPropertyEventListener> eventListener
8 = new Map<long, onPropertyEventListener>();
9
10 public static class onPropertyEventListener{
11 public void onEnumPropertyValueChanged(long prop, int item){
12
13 }
14 public void onVariantPropertyValueChanged(long prop, int dataType, String stringValue){
15
16 }
17 public void onVariantPropertyAttributeChanged(long prop,String strAttributr, int dataType, String stringValue){
18
19 }
20 };
21
23
24 }
25
26 public PropertyManager(long handle){
27 super(handle);
28 }
29
30 public void onEnumPropertyValueChanged(long prop, int item)override{
31 Map.Iterator<long, onPropertyEventListener> _listener = eventListener.find(prop);
32 if (_listener != nilptr){
33 try{
34 onPropertyEventListener lis = _listener.getValue();
35 if (lis != nilptr){
36 lis.onEnumPropertyValueChanged(prop, item);
37 }
38 }catch(Exception e){
39
40 }
41
42 }
43 }
44
45 public void onVariantPropertyValueChanged(long prop, int dataType, String stringValue)override{
46 Map.Iterator<long, onPropertyEventListener> _listener = eventListener.find(prop);
47 if (_listener != nilptr){
48 try{
49 onPropertyEventListener lis = _listener.getValue();
50 if (lis != nilptr){
51 lis.onVariantPropertyValueChanged(prop, dataType, stringValue);
52 }
53 }catch(Exception e){
54
55 }
56 }
57 }
58
59 public void onVariantPropertyAttributeChanged(long prop,String strAttributr, int dataType, String stringValue)override{
60 Map.Iterator<long, onPropertyEventListener> _listener = eventListener.find(prop);
61 if (_listener != nilptr){
62 try{
63 onPropertyEventListener lis = _listener.getValue();
64 if (lis != nilptr){
65 lis.onVariantPropertyAttributeChanged(prop, strAttributr, dataType, stringValue);
66 }
67 }catch(Exception e){
68
69 }
70 }
71 }
72
73 public void setPropertyEventListener(@NotNilptr QtProperty prop, onPropertyEventListener l){
74 if (l == nilptr){
75 eventListener.remove(prop.nativehandle);
76 }else{
77 eventListener.put(prop.nativehandle, l);
78 }
79 }
80
81 public void clear(){
82 eventListener.clear();
83 QtXnl.widget_get_bool_value(nativehandle, Constant.TREEPROPMGRCLEAR);
84 }
85 };
86
87 static class QtBoolPropertyManager : PropertyManager{
88 public QtBoolPropertyManager(long handle){
89 super(handle);
90 }
92 nativehandle = QtXnl.createQObject(QType.qtBoolPropertyManager, this, 0);
93 if (nativehandle == 0){
94 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
95 }
96 }
97 public QtBoolPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
98 nativehandle = QtXnl.createQObject(QType.qtBoolPropertyManager, this, parent.nativehandle);
99 if (nativehandle == 0){
100 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
101 }
102 }
103 };
104
105
106 public static class QtColorPropertyManager : PropertyManager{
107 public QtColorPropertyManager(long handle){
108 super(handle);
109 }
111 nativehandle = QtXnl.createQObject(QType.qtColorPropertyManager, this, 0);
112 if (nativehandle == 0){
113 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
114 }
115 }
116 public QtColorPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
117 nativehandle = QtXnl.createQObject(QType.qtColorPropertyManager, this, parent.nativehandle);
118 if (nativehandle == 0){
119 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
120 }
121 }
122 };
123
124
125 public static class QtDatePropertyManager : PropertyManager{
126 public QtDatePropertyManager(long handle){
127 super(handle);
128 }
130 nativehandle = QtXnl.createQObject(QType.qtDatePropertyManager, this, 0);
131 if (nativehandle == 0){
132 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
133 }
134 }
135 public QtDatePropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
136 nativehandle = QtXnl.createQObject(QType.qtDatePropertyManager, this, parent.nativehandle);
137 if (nativehandle == 0){
138 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
139 }
140 }
141 };
142
143
144 public static class QtDateTimePropertyManager : PropertyManager {
145 public QtDateTimePropertyManager(long handle){
146 super(handle);
147 }
149 nativehandle = QtXnl.createQObject(QType.qtDateTimePropertyManager, this, 0);
150 if (nativehandle == 0){
151 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
152 }
153 }
154 public QtDateTimePropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
155 nativehandle = QtXnl.createQObject(QType.qtDateTimePropertyManager, this, parent.nativehandle);
156 if (nativehandle == 0){
157 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
158 }
159 }
160 };
161
162
163 public static class QtDoublePropertyManager : PropertyManager{
164 public QtDoublePropertyManager(long handle){
165 super(handle);
166 }
168 nativehandle = QtXnl.createQObject(QType.qtDoublePropertyManager, this, 0);
169 if (nativehandle == 0){
170 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
171 }
172 }
173 public QtDoublePropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
174 nativehandle = QtXnl.createQObject(QType.qtDoublePropertyManager, this, parent.nativehandle);
175 if (nativehandle == 0){
176 throw new IllegalArgumentException("can't create Object QtBoolPropertyManager");
177 }
178 }
179 };
180
181
182 public static class QtEnumPropertyManager : PropertyManager {
183 public QtEnumPropertyManager(long handle){
184 super(handle);
185 }
187 nativehandle = QtXnl.createQObject(QType.qtEnumPropertyManager, this, 0);
188 if (nativehandle == 0){
189 throw new IllegalArgumentException("can't create Object QtEnumPropertyManager");
190 }
191 }
192 public QtEnumPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
193 nativehandle = QtXnl.createQObject(QType.qtEnumPropertyManager, this, parent.nativehandle);
194 if (nativehandle == 0){
195 throw new IllegalArgumentException("can't create Object QtEnumPropertyManager");
196 }
197 }
198
199 public void setValues(@NotNilptr QtProperty item, String [] values){
200 QtXnl.widget_set_long_object_value(nativehandle, Constant.PROPSETENUM, item.nativehandle, values);
201 }
202
203 public int getValue(@NotNilptr QtProperty item){
204 return QtXnl.core_getintlong(nativehandle, Constant.PEORENUMVALUE, item.nativehandle);
205 }
206 };
207
208
209 public static class QtFlagPropertyManager : PropertyManager {
210 public QtFlagPropertyManager(long handle){
211 super(handle);
212 }
214 nativehandle = QtXnl.createQObject(QType.qtFlagPropertyManager, this, 0);
215 if (nativehandle == 0){
216 throw new IllegalArgumentException("can't create Object QtFlagPropertyManager");
217 }
218 }
219 public QtFlagPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
220 nativehandle = QtXnl.createQObject(QType.qtFlagPropertyManager, this, parent.nativehandle);
221 if (nativehandle == 0){
222 throw new IllegalArgumentException("can't create Object QtFlagPropertyManager");
223 }
224 }
225 };
226
227
228 public static class QtFontPropertyManager : PropertyManager {
229 public QtFontPropertyManager(long handle){
230 super(handle);
231 }
233 nativehandle = QtXnl.createQObject(QType.qtFontPropertyManager, this, 0);
234 if (nativehandle == 0){
235 throw new IllegalArgumentException("can't create Object QtFontPropertyManager");
236 }
237 }
238 public QtFontPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
239 nativehandle = QtXnl.createQObject(QType.qtFontPropertyManager, this, parent.nativehandle);
240 if (nativehandle == 0){
241 throw new IllegalArgumentException("can't create Object QtFontPropertyManager");
242 }
243 }
244 };
245
246
247 public static class QtGroupPropertyManager : PropertyManager{
248 public QtGroupPropertyManager(long handle){
249 super(handle);
250 }
252 nativehandle = QtXnl.createQObject(QType.qtGroupPropertyManager, this, 0);
253 if (nativehandle == 0){
254 throw new IllegalArgumentException("can't create Object QtGroupPropertyManager");
255 }
256 }
257 public QtGroupPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
258 nativehandle = QtXnl.createQObject(QType.qtGroupPropertyManager, this, parent.nativehandle);
259 if (nativehandle == 0){
260 throw new IllegalArgumentException("can't create Object QtGroupPropertyManager");
261 }
262 }
263 };
264
265
266 public static class QtIntPropertyManager : PropertyManager{
267 public QtIntPropertyManager(long handle){
268 super(handle);
269 }
271 nativehandle = QtXnl.createQObject(QType.qtIntPropertyManager, this, 0);
272 if (nativehandle == 0){
273 throw new IllegalArgumentException("can't create Object QtIntPropertyManager");
274 }
275 }
276 public QtIntPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
277 nativehandle = QtXnl.createQObject(QType.qtIntPropertyManager, this, parent.nativehandle);
278 if (nativehandle == 0){
279 throw new IllegalArgumentException("can't create Object QtIntPropertyManager");
280 }
281 }
282 };
283
284
285 public static class QtPointPropertyManager : PropertyManager{
286 public QtPointPropertyManager(long handle){
287 super(handle);
288 }
290 nativehandle = QtXnl.createQObject(QType.qtPointPropertyManager, this, 0);
291 if (nativehandle == 0){
292 throw new IllegalArgumentException("can't create Object QtPointPropertyManager");
293 }
294 }
295 public QtPointPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
296 nativehandle = QtXnl.createQObject(QType.qtPointPropertyManager, this, parent.nativehandle);
297 if (nativehandle == 0){
298 throw new IllegalArgumentException("can't create Object QtPointPropertyManager");
299 }
300 }
301 };
302
303
304 public static class QtRectPropertyManager : PropertyManager {
305 public QtRectPropertyManager(long handle){
306 super(handle);
307 }
309 nativehandle = QtXnl.createQObject(QType.qtRectPropertyManager, this, 0);
310 if (nativehandle == 0){
311 throw new IllegalArgumentException("can't create Object QtRectPropertyManager");
312 }
313 }
314 public QtRectPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
315 nativehandle = QtXnl.createQObject(QType.qtRectPropertyManager, this, parent.nativehandle);
316 if (nativehandle == 0){
317 throw new IllegalArgumentException("can't create Object QtRectPropertyManager");
318 }
319 }
320 };
321
322
323 public static class QtSizePropertyManager : PropertyManager {
324 public QtSizePropertyManager(long handle){
325 super(handle);
326 }
328 nativehandle = QtXnl.createQObject(QType.qtSizePropertyManager, this, 0);
329 if (nativehandle == 0){
330 throw new IllegalArgumentException("can't create Object QtSizePropertyManager");
331 }
332 }
333 public QtSizePropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
334 nativehandle = QtXnl.createQObject(QType.qtSizePropertyManager, this, parent.nativehandle);
335 if (nativehandle == 0){
336 throw new IllegalArgumentException("can't create Object QtSizePropertyManager");
337 }
338 }
339 };
340
341
342 public static class QtSizePolicyPropertyManager : PropertyManager {
343 public QtSizePolicyPropertyManager(long handle){
344 super(handle);
345 }
347 nativehandle = QtXnl.createQObject(QType.qtSizePolicyPropertyManager, this, 0);
348 if (nativehandle == 0){
349 throw new IllegalArgumentException("can't create Object QtSizePolicyPropertyManager");
350 }
351 }
352 public QtSizePolicyPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
353 nativehandle = QtXnl.createQObject(QType.qtSizePolicyPropertyManager, this, parent.nativehandle);
354 if (nativehandle == 0){
355 throw new IllegalArgumentException("can't create Object QtSizePolicyPropertyManager");
356 }
357 }
358 };
359
360
361 public static class QtStringPropertyManager : PropertyManager {
362 public QtStringPropertyManager(long handle){
363 super(handle);
364 }
366 nativehandle = QtXnl.createQObject(QType.qtStringPropertyManager, this, 0);
367 if (nativehandle == 0){
368 throw new IllegalArgumentException("can't create Object QtStringPropertyManager");
369 }
370 }
371 public QtStringPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
372 nativehandle = QtXnl.createQObject(QType.qtStringPropertyManager, this, parent.nativehandle);
373 if (nativehandle == 0){
374 throw new IllegalArgumentException("can't create Object QtStringPropertyManager");
375 }
376 }
377 };
378
379
380 public static class QtTimePropertyManager : PropertyManager {
381 public QtTimePropertyManager(long handle){
382 super(handle);
383 }
385 nativehandle = QtXnl.createQObject(QType.qtTimePropertyManager, this, 0);
386 if (nativehandle == 0){
387 throw new IllegalArgumentException("can't create Object QtTimePropertyManager");
388 }
389 }
390 public QtTimePropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
391 nativehandle = QtXnl.createQObject(QType.qtTimePropertyManager, this, parent.nativehandle);
392 if (nativehandle == 0){
393 throw new IllegalArgumentException("can't create Object QtTimePropertyManager");
394 }
395 }
396 };
397
398
399 public static class QtVariantPropertyManager : PropertyManager{
400 public QtVariantPropertyManager(long handle){
401 super(handle);
402 }
404 nativehandle = QtXnl.createQObject(QType.qtVariantPropertyManager, this, 0);
405 if (nativehandle == 0){
406 throw new IllegalArgumentException("can't create Object QtVariantPropertyManager");
407 }
408 }
409 public QtVariantPropertyManager(@NotNilptr QObject parent) throws IllegalArgumentException{
410 nativehandle = QtXnl.createQObject(QType.qtVariantPropertyManager, this, parent.nativehandle);
411 if (nativehandle == 0){
412 throw new IllegalArgumentException("can't create Object QtVariantPropertyManager");
413 }
414 }
415 @NotNilptr public QtProperty addProperty(@NotNilptr QtProperty obj,int type, String text){
416 obj.nativehandle = QtXnl.long_intstring(nativehandle, Constant.PROPADDPROPERTY, type, text);
417 return obj;
418 }
419 @NotNilptr public QtProperty addPropertyGroup(@NotNilptr QtProperty obj, String text){
420 obj.nativehandle = QtXnl.long_intstring(nativehandle, Constant.PROPADDPROPERTYGROUP, 0, text);
421 return obj;
422 }
423 @NotNilptr public QtProperty addEnumProperty(@NotNilptr QtProperty obj,String text){
424 obj.nativehandle = QtXnl.long_intstring(nativehandle, Constant.PROPADDPROPERTYENUM, 0, text);
425 return obj;
426 }
427 @NotNilptr public QtProperty addFlagProperty(@NotNilptr QtProperty obj,String text){
428 obj.nativehandle = QtXnl.long_intstring(nativehandle, Constant.PROPADDPROPERTYFLAG, 0, text);
429 return obj;
430 }
431 };
432
433 public static class QtProperty: QCore{
435
436 public void setTagObject(Object f){ _tag = f;}
437 public Object getTagObject(){return _tag;}
438
439 public QtProperty(){
440 }
441 public QtProperty(long handle){
442 nativehandle = handle;
443 }
444 public void addSubProperty(@NotNilptr QtProperty prop){
445 QtXnl.widget_set_native_value(nativehandle, Constant.ADDSUBPROPERTY, prop.nativehandle);
446 }
447 };
448
449 public static class QtVariantProperty : QtProperty{
450 int flags = 0;
451 public void setFlags(int f){ flags = f;}
452 public int getFlags(){return flags;}
454 }
455 public QtVariantProperty(long handle){
456 nativehandle = handle;
457 }
458 public void setAttributeEchoMode(int Value){
459 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRECHOM, Value);
460 }
461 public void setAttributeRegex(String Value){
462 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRREGEX, Value);
463 }
464 public void setAttributeMax(int Value){
465 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRMAXIM, Value);
466 }
467 public void setAttributeMax(double Value){
468 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRMAXIM, Value);
469 }
470 public void setAttributeMin(int Value){
471 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRMINIM, Value);
472 }
473 public void setAttributeMin(double Value){
474 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRMINIM, Value);
475 }
476 public void setAttributeEnumNames(String[] Value){
477 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRENUMN, Value);
478 }
479 public void setAttributeFlagNames(String[] Value){
480 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRFLAGN, Value);
481 }
482 public void setAttributeSingleStep(int Value){
483 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRSSTEP, Value);
484 }
485 public void setAttributeSingleStep(double Value){
486 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRSSTEP, Value);
487 }
488 public void setAttributeDecimals(int Value){
489 QtXnl.widget_set_object_value(nativehandle, Constant.PROPATTRSSTEP, Value);
490 }
491 public void setValue(int Value){
492 QtXnl.widget_set_object_value(nativehandle, Constant.PROPSETVALUE, Value);
493 }
494 public void setValue(String Value){
495 QtXnl.widget_set_object_value(nativehandle, Constant.PROPSETVALUE, Value);
496 }
497 public void setValueFormat(String format){
498 QtXnl.widget_set_object_value(nativehandle, Constant.PROPSETVALUEFORMAT, format);
499 }
500 public void setValue(bool Value){
501 QtXnl.widget_set_object_value(nativehandle, Constant.PROPSETVALUE, Value);
502 }
503 public void setValue(double Value){
504 QtXnl.widget_set_object_value(nativehandle, Constant.PROPSETVALUE, Value);
505 }
506 public void setAttributePointMax(double x, double y){
507 QtXnl.native_double2(nativehandle, Constant.PROPSETARRTPTMAX, x, y);
508 }
509 public void setAttributePointMin(double x, double y){
510 QtXnl.native_double2(nativehandle, Constant.PROPSETARRTPTMIN, x, y);
511 }
512 public void setValuePoint(double x, double y){
513 QtXnl.native_double2(nativehandle, Constant.PROPSETVALUEPT, x, y);
514 }
515 public String getValue(){
516 return (String)QtXnl.core_getString(nativehandle, Constant.PROPGETVALUE);
517 }
518 public void setAttributeSizeMax(double cx, double cy){
519 QtXnl.native_double2(nativehandle, Constant.PROPSETARRTSZMAX, cx, cy);
520 }
521 public void setAttributeSizeMin(double cx, double cy){
522 QtXnl.native_double2(nativehandle, Constant.PROPSETARRTSZMIN, cx, cy);
523 }
524 public void setValueSize(double cx, double cy){
525 QtXnl.native_double2(nativehandle, Constant.PROPSETVALUESZ, cx, cy);
526 }
527 public void setAttributeRect(double l, double t, double r, double b){
528 QtXnl.native_double4(l, t, r, b, nativehandle, Constant.PROPSETARRTRC);
529 }
530 public void setValueRect(double l, double t, double r, double b){
531 QtXnl.native_double4(l, t, r, b, nativehandle, Constant.PROPSETVALUERC);
532 }
533 };
534
535 public static class QtBrowserItem: QCore{
537 }
538 public QtBrowserItem(long handle){
539 nativehandle = handle;
540 }
541 };
542
543 public static class QtVariantEditorFactory : QObject{
544 public QtVariantEditorFactory(long handle){
545 super(handle);
546 }
548 nativehandle = QtXnl.createQObject(QType.qtVariantEditorFactory, this, 0);
549 if (nativehandle == 0){
550 throw new IllegalArgumentException("can't create Object qtVariantEditorFactory");
551 }
552 }
553 public QtVariantEditorFactory(@NotNilptr QObject parent) throws IllegalArgumentException{
554 nativehandle = QtXnl.createQObject(QType.qtVariantEditorFactory, this, parent.nativehandle);
555 if (nativehandle == 0){
556 throw new IllegalArgumentException("can't create Object qtVariantEditorFactory");
557 }
558 }
559 };
560
562
563 }
564
565 public QPropertyBrowser(long h){
566 super(h);
567 }
568
569 public bool create()override {
570 nativehandle = QtXnl.createQObject(QType.qtPropertyBrowser, this, 0);
571 if (nativehandle == 0){
572 return false;
573 }
574 return true;
575 }
576
577 public bool create(@NotNilptr QWidget parent)override {
578 nativehandle = QtXnl.createQObject(QType.qtPropertyBrowser, this, parent.nativehandle);
579 if (nativehandle == 0){
580 return false;
581 }
582 return true;
583 }
584
585 @NotNilptr public QtBrowserItem addProperty(@NotNilptr QtProperty pitem){
586 return new QtBrowserItem(QtXnl.long_intlong(nativehandle, Constant.ADDPROPERTY, pitem.nativehandle));
587 }
588 public void setFactoryForManager(@NotNilptr PropertyManager mgr,@NotNilptr QtVariantEditorFactory factory){
589 QtXnl.void_long2(nativehandle, Constant.SETMGRFACTORY, mgr.nativehandle, factory.nativehandle);
590 }
591
593 QtXnl.widget_set_bool_value(nativehandle, Constant.SPWVM, b);
594 }
595
596 public void setLables(String left, String right){
597 QtXnl.long_string2(nativehandle, Constant.QPBSETLABELS, left, right);
598 }
599 public void setHeaderWidths(int left, int right){
600 QtXnl.widget_set_v2int_value(nativehandle, Constant.SETPROPWIDTHS, left, right);
601 }
602 public void enableAdjust(bool ba){
603 QtXnl.widget_set_bool_value(nativehandle, Constant.QPBADJUST, ba);
604 }
605 public void setRootIsDecorated(bool b){
606 QtXnl.widget_set_bool_value(nativehandle, Constant.SRID, b);
607 }
608 public void setItemExpand(@NotNilptr QtBrowserItem item, bool bp){
609 QtXnl.object_get_long_int(nativehandle, Constant.QPB_SETEXPAND, item.nativehandle, bp ? 1 : 0);
610 }
611 public void setItemSelected(@NotNilptr QtBrowserItem item, bool bp){
612 QtXnl.object_get_long_int(nativehandle, Constant.QPB_SETSELECT, item.nativehandle, bp ? 1 : 0);
613 }
614 public void setItemVisible(@NotNilptr QtBrowserItem item, bool bp){
615 QtXnl.object_get_long_int(nativehandle, Constant.QPB_SETVISIBLE, item.nativehandle, bp ? 1 : 0);
616 }
617 public void setItemBackColor(@NotNilptr QtBrowserItem item, int color){
618 QtXnl.object_get_long_int(nativehandle, Constant.QPB_SETBACKCOLOR, item.nativehandle, color);
619 }
620 public void clear(){
621 QtXnl.widget_get_bool_value(nativehandle, Constant.TREEPROPCLEAR);
622 }
623};
624};
异常类
map的迭代器对象
Definition Map.xcs:11
_V getValue()
获取当前的值对象
map容器
Definition Map.xcs:6
void onVariantPropertyValueChanged(long prop, int dataType, String stringValue)
void onVariantPropertyAttributeChanged(long prop,String strAttributr, int dataType, String stringValue)
void onVariantPropertyAttributeChanged(long prop,String strAttributr, int dataType, String stringValue) override
void onEnumPropertyValueChanged(long prop, int item) override
void setPropertyEventListener(@NotNilptr QtProperty prop, onPropertyEventListener l)
void onVariantPropertyValueChanged(long prop, int dataType, String stringValue) override
QtBoolPropertyManager(@NotNilptr QObject parent)
QtColorPropertyManager(@NotNilptr QObject parent)
QtDatePropertyManager(@NotNilptr QObject parent)
QtEnumPropertyManager(@NotNilptr QObject parent)
int getValue(@NotNilptr QtProperty item)
void setValues(@NotNilptr QtProperty item, String [] values)
QtFlagPropertyManager(@NotNilptr QObject parent)
QtFontPropertyManager(@NotNilptr QObject parent)
QtGroupPropertyManager(@NotNilptr QObject parent)
QtIntPropertyManager(@NotNilptr QObject parent)
QtPointPropertyManager(@NotNilptr QObject parent)
void addSubProperty(@NotNilptr QtProperty prop)
QtRectPropertyManager(@NotNilptr QObject parent)
QtSizePropertyManager(@NotNilptr QObject parent)
QtTimePropertyManager(@NotNilptr QObject parent)
QtVariantEditorFactory(@NotNilptr QObject parent)
void setAttributeSizeMax(double cx, double cy)
void setAttributePointMax(double x, double y)
void setAttributeRect(double l, double t, double r, double b)
void setAttributePointMin(double x, double y)
void setValueSize(double cx, double cy)
void setValueRect(double l, double t, double r, double b)
void setAttributeSizeMin(double cx, double cy)
QtProperty addFlagProperty(@NotNilptr QtProperty obj,String text)
QtProperty addEnumProperty(@NotNilptr QtProperty obj,String text)
QtProperty addPropertyGroup(@NotNilptr QtProperty obj, String text)
QtProperty addProperty(@NotNilptr QtProperty obj,int type, String text)
void setItemBackColor(@NotNilptr QtBrowserItem item, int color)
void setItemSelected(@NotNilptr QtBrowserItem item, bool bp)
bool create() override
void setItemVisible(@NotNilptr QtBrowserItem item, bool bp)
QtBrowserItem addProperty(@NotNilptr QtProperty pitem)
void setFactoryForManager(@NotNilptr PropertyManager mgr,@NotNilptr QtVariantEditorFactory factory)
void setLables(String left, String right)
bool create(@NotNilptr QWidget parent) override
void setHeaderWidths(int left, int right)
void setPropertiesWithoutValueMarked(bool b)
void setRootIsDecorated(bool b)
void setItemExpand(@NotNilptr QtBrowserItem item, bool bp)
字符串类