◆ QBoxLayout() [1/2]
◆ QBoxLayout() [2/2]
◆ addLayout()
void addLayout |
( |
@NotNilptr QLayout |
w, |
|
|
int |
stretch |
|
) |
| |
在文件 QBoxLayout.x 第 15 行定义.
15 {
16 QtXnl.widget_set_intlongint_value(nativehandle, Constant.LAYTOUADDLAYOUT, w.nativehandle, stretch, 0);
17 }
◆ addSpacing()
在文件 QBoxLayout.x 第 27 行定义.
27 {
28 QtXnl.widget_set_vint_value(nativehandle, Constant.BOXADDSPACING, n);
29 }
◆ addStretch()
在文件 QBoxLayout.x 第 24 行定义.
24 {
25 QtXnl.widget_set_vint_value(nativehandle, Constant.BOXADDSTRETCH, n);
26 }
◆ addWidget()
void addWidget |
( |
@NotNilptr QWidget |
w, |
|
|
int |
stretch |
|
) |
| |
在文件 QBoxLayout.x 第 12 行定义.
12 {
13 QtXnl.widget_set_intlongint_value(nativehandle, Constant.LAYTOUADDWIDGET, w.nativehandle, stretch, 0);
14 }
◆ direction()
在文件 QBoxLayout.x 第 36 行定义.
36 {
37 return (Direction)QtXnl.widget_get_int_value(nativehandle, Constant.LAYOUTGETDIRECTION);
38 }
◆ insertLayout()
void insertLayout |
( |
int |
index, |
|
|
@NotNilptr QLayout |
w, |
|
|
int |
stretch |
|
) |
| |
在文件 QBoxLayout.x 第 21 行定义.
21 {
22 QtXnl.widget_set_intlongint_value(nativehandle, Constant.LAYTOUINSERTLAYOUT, w.nativehandle, index, stretch);
23 }
◆ insertWidget()
void insertWidget |
( |
int |
index, |
|
|
@NotNilptr QWidget |
w, |
|
|
int |
stretch |
|
) |
| |
在文件 QBoxLayout.x 第 18 行定义.
18 {
19 QtXnl.widget_set_intlongint_value(nativehandle, Constant.LAYTOUINSERTWIDGET, w.nativehandle, index, stretch);
20 }
◆ setDirection()
void setDirection |
( |
Direction |
d | ) |
|
在文件 QBoxLayout.x 第 39 行定义.
39 {
40 QtXnl.widget_set_vint_value(nativehandle, Constant.LAYOUTSETDIRECTION, d);
41 }
◆ setSpacing()
在文件 QBoxLayout.x 第 30 行定义.
30 {
31 QtXnl.widget_set_vint_value(nativehandle, Constant.BOXSETSPACING, n);
32 }
◆ setStretch()
void setStretch |
( |
int |
id, |
|
|
int |
n |
|
) |
| |
在文件 QBoxLayout.x 第 33 行定义.
33 {
34 QtXnl.widget_set_v2int_value(nativehandle, Constant.BOXSETSTRETCH, id, n);
35 }