◆ QProgressBar() [1/2]
◆ QProgressBar() [2/2]
QProgressBar |
( |
long |
handle | ) |
|
◆ alignment()
在文件 QProgressBar.xcs 第 46 行定义.
46 {
47 return QtXnl.widget_get_int_value(nativehandle, Constant.QPALIGN);
48 }
◆ create() [1/2]
重载 QWidget .
在文件 QProgressBar.xcs 第 13 行定义.
13 {
14 nativehandle = QtXnl.createQObject(QType.qtProgressBar,
this, 0);
15 if (nativehandle == 0){
16 return false;
17 }
18 return true;
19 }
◆ create() [2/2]
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
|
override |
重载 QWidget .
在文件 QProgressBar.xcs 第 21 行定义.
21 {
22 nativehandle = QtXnl.createQObject(QType.qtProgressBar,
this, parent.nativehandle);
23 if (nativehandle == 0){
24 return false;
25 }
26 return true;
27 }
◆ format()
◆ getText()
◆ invertedAppearance()
bool invertedAppearance |
( |
| ) |
|
在文件 QProgressBar.xcs 第 58 行定义.
58 {
59 return QtXnl.widget_get_bool_value(nativehandle, Constant.QPINVERTAPPEAR);
60 }
◆ isTextVisible()
在文件 QProgressBar.xcs 第 43 行定义.
43 {
44 return QtXnl.widget_get_bool_value(nativehandle, Constant.QPVISIBLE);
45 }
◆ maximum()
在文件 QProgressBar.xcs 第 31 行定义.
31 {
32 return QtXnl.widget_get_int_value(nativehandle, Constant.QPMAXINUM);
33 }
◆ minimum()
在文件 QProgressBar.xcs 第 28 行定义.
28 {
29 return QtXnl.widget_get_int_value(nativehandle, Constant.QPMININUM);
30 }
◆ orientation()
在文件 QProgressBar.xcs 第 52 行定义.
52 {
53 return QtXnl.widget_get_int_value(nativehandle, Constant.QPORIENTATION);
54 }
◆ reset()
在文件 QProgressBar.xcs 第 76 行定义.
76 {
77 QtXnl.widget_slot(nativehandle, Constant.QPRESET);
78 }
◆ resetFormat()
在文件 QProgressBar.xcs 第 70 行定义.
70 {
71 QtXnl.widget_slot(nativehandle, Constant.QPFORMAT);
72 }
◆ setAlignment()
void setAlignment |
( |
int |
alignment | ) |
|
在文件 QProgressBar.xcs 第 49 行定义.
49 {
50 QtXnl.widget_set_vint_value(nativehandle, Constant.QPALIGN, alignment);
51 }
◆ setFormat()
void setFormat |
( |
String |
format | ) |
|
在文件 QProgressBar.xcs 第 67 行定义.
67 {
68 QtXnl.widget_slot_string(nativehandle, Constant.QPFORMAT, format);
69 }
◆ setInvertedAppearance()
void setInvertedAppearance |
( |
bool |
invert | ) |
|
在文件 QProgressBar.xcs 第 55 行定义.
55 {
56 QtXnl.widget_set_bool_value(nativehandle, Constant.QPINVERTAPPEAR, invert);
57 }
◆ setMaximum()
void setMaximum |
( |
int |
maximum | ) |
|
在文件 QProgressBar.xcs 第 85 行定义.
85 {
86 QtXnl.widget_set_vint_value(nativehandle, Constant.QPMAXINUM, maximum);
87 }
◆ setMinimum()
void setMinimum |
( |
int |
minimum | ) |
|
在文件 QProgressBar.xcs 第 82 行定义.
82 {
83 QtXnl.widget_set_vint_value(nativehandle, Constant.QPMININUM, minimum);
84 }
◆ setOrientation()
void setOrientation |
( |
int |
Orientation | ) |
|
在文件 QProgressBar.xcs 第 91 行定义.
91 {
92 QtXnl.widget_set_vint_value(nativehandle, Constant.QPORIENTATION, Orientation);
93 }
◆ setRange()
void setRange |
( |
int |
minimum, |
|
|
int |
maximum |
|
) |
| |
在文件 QProgressBar.xcs 第 79 行定义.
79 {
80 QtXnl.widget_set_v2int_value(nativehandle, Constant.QPRANGE, minimum, maximum);
81 }
◆ setTextDirection()
void setTextDirection |
( |
int |
textDirection | ) |
|
在文件 QProgressBar.xcs 第 61 行定义.
61 {
62 QtXnl.widget_set_vint_value(nativehandle, Constant.QPTEXTDIR, textDirection);
63 }
◆ setTextVisible()
void setTextVisible |
( |
bool |
visible | ) |
|
在文件 QProgressBar.xcs 第 40 行定义.
40 {
41 QtXnl.widget_set_bool_value(nativehandle, Constant.QPVISIBLE, visible);
42 }
◆ setValue()
void setValue |
( |
int |
value | ) |
|
在文件 QProgressBar.xcs 第 88 行定义.
88 {
89 QtXnl.widget_set_vint_value(nativehandle, Constant.QPVALUE, value);
90 }
◆ textDirection()
在文件 QProgressBar.xcs 第 64 行定义.
64 {
65 return QtXnl.widget_get_int_value(nativehandle, Constant.QPTEXTDIR);
66 }
◆ value()
在文件 QProgressBar.xcs 第 34 行定义.
34 {
35 return QtXnl.widget_get_int_value(nativehandle, Constant.QPVALUE);
36 }