◆ QGridLayout() [1/2]
◆ QGridLayout() [2/2]
◆ addItem()
void addItem |
( |
QLayoutItem |
w, |
|
|
int |
row, |
|
|
int |
column, |
|
|
int |
rowSpan, |
|
|
int |
columnSpan, |
|
|
int |
Alignment |
|
) |
| |
在文件 QGridLayout.x 第 89 行定义.
89 {
90 QtXnl.long_long_int9(nativehandle, Constant.QGridLayout_addItem, w.nativehandle, row, column, rowSpan, columnSpan, Alignment, 0, 0, 0, 0);
91 }
◆ addLayout() [1/2]
void addLayout |
( |
QLayout |
w, |
|
|
int |
row, |
|
|
int |
column, |
|
|
int |
Alignment |
|
) |
| |
在文件 QGridLayout.x 第 83 行定义.
83 {
84 QtXnl.long_long_int9(nativehandle, Constant.QGridLayout_addLayout, w.nativehandle, row, column, Alignment, 0, 0, 0, 0, 0, 0);
85 }
◆ addLayout() [2/2]
void addLayout |
( |
QLayout |
w, |
|
|
int |
row, |
|
|
int |
column, |
|
|
int |
rowSpan, |
|
|
int |
columnSpan, |
|
|
int |
Alignment |
|
) |
| |
在文件 QGridLayout.x 第 86 行定义.
86 {
87 QtXnl.long_long_int9(nativehandle, Constant.QGridLayout_addLayout2, w.nativehandle, row, column, rowSpan, columnSpan, Alignment, 0, 0, 0, 0);
88 }
◆ addWidget() [1/2]
void addWidget |
( |
QWidget |
w, |
|
|
int |
row, |
|
|
int |
column, |
|
|
int |
Alignment |
|
) |
| |
在文件 QGridLayout.x 第 77 行定义.
77 {
78 QtXnl.long_long_int9(nativehandle, Constant.QGridLayout_Addwidget, w.nativehandle, row, column, Alignment, 0, 0, 0, 0, 0, 0);
79 }
◆ addWidget() [2/2]
void addWidget |
( |
QWidget |
w, |
|
|
int |
row, |
|
|
int |
column, |
|
|
int |
rowSpan, |
|
|
int |
columnSpan, |
|
|
int |
Alignment |
|
) |
| |
在文件 QGridLayout.x 第 80 行定义.
80 {
81 QtXnl.long_long_int9(nativehandle, Constant.QGridLayout_Addwidget_2, w.nativehandle, row, column, rowSpan, columnSpan, Alignment, 0, 0, 0, 0);
82 }
◆ columnCount()
在文件 QGridLayout.x 第 62 行定义.
62 {
63 return QtXnl.widget_get_int_value(nativehandle, Constant.QGL_columnCount);
64 }
◆ columnMinimumWidth()
int columnMinimumWidth |
( |
int |
column | ) |
|
在文件 QGridLayout.x 第 50 行定义.
50 {
51 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_columnMinimumWidth, column, 0);
52 }
◆ columnStretch()
int columnStretch |
( |
int |
column | ) |
|
在文件 QGridLayout.x 第 38 行定义.
38 {
39 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_columnStretch, column, 0);
40 }
◆ create()
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
在文件 QGridLayout.x 第 11 行定义.
11 {
12 nativehandle = QtXnl.createQObject(QType.qtGLayout,
this, parent.nativehandle);
13
14 if (nativehandle == 0) {
15 return false;
16 }
17
18 return true;
19 }
◆ horizontalSpacing()
int horizontalSpacing |
( |
| ) |
|
在文件 QGridLayout.x 第 53 行定义.
53 {
54 return QtXnl.widget_get_int_value(nativehandle, Constant.QGL_horizontalSpacing);
55 }
◆ originCorner()
在文件 QGridLayout.x 第 74 行定义.
74 {
75 return (Corner)QtXnl.widget_get_int_value(nativehandle, Constant.QGL_originCorner);
76 }
◆ rowCount()
在文件 QGridLayout.x 第 65 行定义.
65 {
66 return QtXnl.widget_get_int_value(nativehandle, Constant.QGL_rowCount);
67 }
◆ rowMinimumHeight()
int rowMinimumHeight |
( |
int |
row | ) |
|
在文件 QGridLayout.x 第 47 行定义.
47 {
48 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_rowMinimumHeight, row, 0);
49 }
◆ rowStretch()
int rowStretch |
( |
int |
row | ) |
|
在文件 QGridLayout.x 第 35 行定义.
35 {
36 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_rowStretch, row, 0);
37 }
◆ setColumnMinimumWidth()
void setColumnMinimumWidth |
( |
int |
column, |
|
|
int |
minSize |
|
) |
| |
在文件 QGridLayout.x 第 44 行定义.
44 {
45 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setColumnMinimumWidth, column, minSize);
46 }
◆ setColumnStretch()
void setColumnStretch |
( |
int |
column, |
|
|
int |
stretch |
|
) |
| |
在文件 QGridLayout.x 第 32 行定义.
32 {
33 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setColumnStretch, column, stretch);
34 }
◆ setDefaultPositioning()
void setDefaultPositioning |
( |
int |
id, |
|
|
Orientation |
cor |
|
) |
| |
在文件 QGridLayout.x 第 71 行定义.
71 {
72 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setDefaultPositioning, id, cor);
73 }
◆ setHorizontalSpacing()
void setHorizontalSpacing |
( |
int |
spacing | ) |
|
在文件 QGridLayout.x 第 20 行定义.
20 {
21 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setHorizontalSpacing, spacing, 0);
22 }
◆ setOriginCorner()
void setOriginCorner |
( |
Corner |
cor | ) |
|
在文件 QGridLayout.x 第 68 行定义.
68 {
69 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setOriginCorner, cor, 0);
70 }
◆ setRowMinimumHeight()
void setRowMinimumHeight |
( |
int |
row, |
|
|
int |
minSize |
|
) |
| |
在文件 QGridLayout.x 第 41 行定义.
41 {
42 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setRowMinimumHeight, row, minSize);
43 }
◆ setRowStretch()
void setRowStretch |
( |
int |
row, |
|
|
int |
stretch |
|
) |
| |
在文件 QGridLayout.x 第 29 行定义.
29 {
30 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setRowStretch, row, stretch);
31 }
◆ setSpacing()
void setSpacing |
( |
int |
spacing | ) |
|
在文件 QGridLayout.x 第 26 行定义.
26 {
27 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setSpacing, spacing, 0);
28 }
◆ setVerticalSpacing()
void setVerticalSpacing |
( |
int |
spacing | ) |
|
在文件 QGridLayout.x 第 23 行定义.
23 {
24 QtXnl.widget_set_v2int_value(nativehandle, Constant.QGL_setVerticalSpacing, spacing, 0);
25 }
◆ spacing()
在文件 QGridLayout.x 第 59 行定义.
59 {
60 return QtXnl.widget_get_int_value(nativehandle, Constant.QGL_spacing);
61 }
◆ verticalSpacing()
在文件 QGridLayout.x 第 56 行定义.
56 {
57 return QtXnl.widget_get_int_value(nativehandle, Constant.QGL_verticalSpacing);
58 }