◆ QTableWidget() [1/2]
◆ QTableWidget() [2/2]
QTableWidget |
( |
long |
handle | ) |
|
◆ clear()
在文件 QTableWidget.xcsm 第 125 行定义.
125 {
126 QtXnl.widget_slot(nativehandle, Constant.TABLECLEAR);
127 }
◆ clearContent()
在文件 QTableWidget.xcsm 第 128 行定义.
128 {
129 QtXnl.widget_slot(nativehandle,Constant. TABLECLEARCONTENT);
130 }
◆ clearSpans()
在文件 QTableWidget.xcsm 第 266 行定义.
266 {
267 QtXnl.widget_slot(nativehandle, Constant.QTV_CLEARSPANS);
268 }
◆ columnAt()
在文件 QTableWidget.xcsm 第 209 行定义.
209 {
210 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_COLUMNAT, x, 0);
211 }
◆ columnCount()
在文件 QTableWidget.xcsm 第 38 行定义.
38 {
39 return QtXnl.widget_get_int_value(nativehandle, Constant.QTABLEWIDGET_COLCOUNT);
40 }
◆ columnSpan()
int columnSpan |
( |
int |
row, |
|
|
int |
column |
|
) |
| |
在文件 QTableWidget.xcsm 第 263 行定义.
263 {
264 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_COLUMNSPAN, row, column);
265 }
◆ columnViewportPosition()
int columnViewportPosition |
( |
int |
column | ) |
|
在文件 QTableWidget.xcsm 第 206 行定义.
206 {
207 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_COLUMNVIEWPORTPOSITION, column, 0);
208 }
◆ columnWidth()
int columnWidth |
( |
int |
column | ) |
|
在文件 QTableWidget.xcsm 第 215 行定义.
215 {
216 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_COLUMNWIDTH, column, 0);
217 }
◆ create() [1/2]
◆ create() [2/2]
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
|
override |
重载 QWidget .
在文件 QTableWidget.xcsm 第 22 行定义.
22 {
23 nativehandle = QtXnl.createQObject(QType.qtTableWidget,
this, parent.nativehandle);
24 if (nativehandle == 0){
25 return false;
26 }
27 return true;
28 }
◆ currentColumn()
在文件 QTableWidget.xcsm 第 55 行定义.
55 {
56 return QtXnl.widget_get_int_value(nativehandle, Constant.QTABLEWIDGET_CURCOL);
57 }
◆ currentRow()
在文件 QTableWidget.xcsm 第 51 行定义.
51 {
52 return QtXnl.widget_get_int_value(nativehandle, Constant.QTABLEWIDGET_CURROW);
53 }
◆ getCellWidget()
QWidget getCellWidget |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
在文件 QTableWidget.xcsm 第 179 行定义.
179 {
180 return (QWidget)QtXnl.object_get_handle2(nativehandle, Constant.TABLEGETCELLWIDGET, x, y);
181 }
◆ getItem()
long getItem |
( |
int |
row, |
|
|
int |
column |
|
) |
| |
在文件 QTableWidget.xcsm 第 134 行定义.
134 {
135 return QtXnl.object_get_long_int(nativehandle,Constant. TABLEGETITEM, row, column);
136 }
◆ getItemFlags()
int getItemFlags |
( |
long |
item | ) |
|
在文件 QTableWidget.xcsm 第 171 行定义.
171 {
172 return QtXnl.widget_get_int_value(item, Constant.TABITEMGETFLAG);
173 }
◆ getItemText()
String getItemText |
( |
long |
item | ) |
|
在文件 QTableWidget.xcsm 第 122 行定义.
122 {
123 return (
String)QtXnl.core_getStringlongint(item, Constant.TABLEGETTEXTBYITEM, 0, 0);
124 }
◆ getSelectedItems()
long [] getSelectedItems |
( |
| ) |
|
在文件 QTableWidget.xcsm 第 131 行定义.
131 {
132 return (long[])QtXnl.widget_get_object(nativehandle, Constant.TABLEGETSELITEM);
133 }
◆ getSelectedRanges()
QRect [] getSelectedRanges |
( |
| ) |
|
在文件 QTableWidget.xcsm 第 137 行定义.
137 {
138 long [] rs = (long[])QtXnl.widget_get_object(nativehandle, Constant.TABLEGETSELRANGE);
139 if (rs != nilptr){
140 QRect []rgs = new QRect[rs.length / 2];
141
142 for (long i =0, c = rgs.length; i < c; i++){
143 QRect r = new QRect((int)(rs[i * 2] >> 32) & 0xffffffff, (int)(rs[i * 2 + 1] >> 32) & 0xffffffff, (int)rs[i * 2] & 0xffffffff, (int)rs[i * 2 + 1] & 0xffffffff);
144 rgs[i] = r;
145 }
146
147 return rgs;
148 }
149 return nilptr;
150 }
◆ getTag()
在文件 QTableWidget.xcsm 第 79 行定义.
79 {
80 return QtXnl.object_get_long_int(0,Constant. TABLEGETTAG, item, 0);
81 }
◆ getText()
String getText |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
在文件 QTableWidget.xcsm 第 119 行定义.
119 {
120 return (
String)QtXnl.core_getStringlongint(nativehandle, Constant.TABLEGETTEXTBYRC, x, y);
121 }
◆ gridStyle()
在文件 QTableWidget.xcsm 第 239 行定义.
239 {
240 return (PenStyle)QtXnl.widget_get_int_value(nativehandle, Constant.QTV_GRIDSTYLE);
241 }
◆ horizontalHeader()
QHeaderView horizontalHeader |
( |
| ) |
|
在文件 QTableWidget.xcsm 第 187 行定义.
187 {
188 return (QHeaderView)QtXnl.widget_get_object(nativehandle, Constant.QTW_HORIZONTALHEADER);
189 }
◆ isColumnHidden()
bool isColumnHidden |
( |
int |
column | ) |
|
在文件 QTableWidget.xcsm 第 224 行定义.
224 {
225 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_ISCOLUMNHIDDEN, column, 0) != 0;
226 }
◆ isCornerButtonEnabled()
bool isCornerButtonEnabled |
( |
| ) |
|
在文件 QTableWidget.xcsm 第 254 行定义.
254 {
255 return QtXnl.widget_get_bool_value(nativehandle, Constant.QTV_ISCORNERBUTTONENABLED);
256 }
◆ isItemCheck()
bool isItemCheck |
( |
long |
item | ) |
|
在文件 QTableWidget.xcsm 第 167 行定义.
167 {
168 return QtXnl.widget_get_int_bool(item, Constant.TABITEMGETCHECK, 0);
169 }
◆ isRowHidden()
bool isRowHidden |
( |
int |
row | ) |
|
在文件 QTableWidget.xcsm 第 218 行定义.
218 {
219 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_ISROWHIDDEN, row, 0) != 0;
220 }
◆ isSortingEnabled()
bool isSortingEnabled |
( |
| ) |
|
在文件 QTableWidget.xcsm 第 233 行定义.
233 {
234 return QtXnl.widget_get_bool_value(nativehandle, Constant.QTV_ISSORTINGENABLED);
235 }
◆ modifyItemFlags()
void modifyItemFlags |
( |
long |
item, |
|
|
int |
add, |
|
|
int |
remove |
|
) |
| |
在文件 QTableWidget.xcsm 第 71 行定义.
71 {
72 QtXnl.widget_set_v2int_value(item, Constant.TABLEITEMFLAG, add, remove);
73 }
◆ removeColumn()
void removeColumn |
( |
int |
n | ) |
|
在文件 QTableWidget.xcsm 第 63 行定义.
63 {
64 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLEREMOVECOLUMN, n);
65 }
◆ removeRow()
在文件 QTableWidget.xcsm 第 59 行定义.
59 {
60 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLEREMOVEROW, n);
61 }
◆ resizeHHSection()
void resizeHHSection |
( |
int |
row, |
|
|
int |
size |
|
) |
| |
在文件 QTableWidget.xcsm 第 107 行定义.
107 {
108 QtXnl.widget_set_v2int_value(nativehandle, Constant.TABLESETHHRS, row, size);
109 }
◆ rowAt()
在文件 QTableWidget.xcsm 第 197 行定义.
197 {
198 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_ROWAT, y, 0);
199 }
◆ rowCount()
在文件 QTableWidget.xcsm 第 47 行定义.
47 {
48 return QtXnl.widget_get_int_value(nativehandle, Constant.QTABLEWIDGET_ROWCOUNT);
49 }
◆ rowHeight()
在文件 QTableWidget.xcsm 第 203 行定义.
203 {
204 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_ROWHEIGHT, row, 0);
205 }
◆ rowSpan()
int rowSpan |
( |
int |
row, |
|
|
int |
column |
|
) |
| |
在文件 QTableWidget.xcsm 第 260 行定义.
260 {
261 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_ROWSPAN, row, column);
262 }
◆ rowViewportPosition()
int rowViewportPosition |
( |
int |
row | ) |
|
override
在文件 QTableWidget.xcsm 第 194 行定义.
194 {
195 return QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_ROWVIEWPORTPOSITION, row, 0);
196 }
◆ selectRow()
在文件 QTableWidget.xcsm 第 67 行定义.
67 {
68 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESELECTROW, n);
69 }
◆ setCellWidget()
void setCellWidget |
( |
int |
x, |
|
|
int |
y, |
|
|
@NotNilptr QWidget |
w |
|
) |
| |
在文件 QTableWidget.xcsm 第 175 行定义.
175 {
176 QtXnl.widget_set_intlongint_value(nativehandle, Constant.TABLESETCELLWIDGET, w.nativehandle, x, y);
177 }
◆ setColumnCount()
void setColumnCount |
( |
int |
c | ) |
|
在文件 QTableWidget.xcsm 第 34 行定义.
34 {
35 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETCOLUMNCNT, c);
36 }
◆ setColumnHidden()
void setColumnHidden |
( |
int |
column, |
|
|
bool |
hide |
|
) |
| |
在文件 QTableWidget.xcsm 第 227 行定义.
227 {
228 QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_SETCOLUMNHIDDEN, column, hide ? 1 : 0);
229 }
◆ setColumnWidth()
void setColumnWidth |
( |
int |
column, |
|
|
int |
width |
|
) |
| |
在文件 QTableWidget.xcsm 第 212 行定义.
212 {
213 QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_SETCOLUMNWIDTH, column, width);
214 }
◆ setCornerButtonEnabled()
void setCornerButtonEnabled |
( |
bool |
enable | ) |
|
在文件 QTableWidget.xcsm 第 251 行定义.
251 {
252 QtXnl.widget_set_bool_value(nativehandle, Constant.QTV_SETCORNERBUTTONENABLED, enable);
253 }
◆ setEditTriggers()
void setEditTriggers |
( |
int |
et | ) |
|
在文件 QTableWidget.xcsm 第 104 行定义.
104 {
105 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETET, et);
106 }
◆ setGridStyle()
void setGridStyle |
( |
PenStyle |
style | ) |
|
在文件 QTableWidget.xcsm 第 242 行定义.
242 {
243 QtXnl.widget_set_vint_value(nativehandle, Constant.QTV_SETGRIDSTYLE, style);
244 }
◆ setHHColumns()
void setHHColumns |
( |
String [] |
columns | ) |
|
在文件 QTableWidget.xcsm 第 113 行定义.
113 {
114 QtXnl.widget_set_object_value(nativehandle, Constant.SETTABHHCOLUMNS, columns);
115 }
◆ setHHFixedHeight()
void setHHFixedHeight |
( |
int |
h | ) |
|
在文件 QTableWidget.xcsm 第 110 行定义.
110 {
111 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETHHFH, h);
112 }
◆ setHHStretchLastSection()
void setHHStretchLastSection |
( |
bool |
b | ) |
|
在文件 QTableWidget.xcsm 第 83 行定义.
83 {
84 QtXnl.widget_set_bool_value(nativehandle, Constant.TABLESETHHLS, b);
85 }
◆ setItem()
long setItem |
( |
int |
row, |
|
|
int |
column, |
|
|
String |
icon, |
|
|
String |
text |
|
) |
| |
在文件 QTableWidget.xcsm 第 30 行定义.
30 {
31 return QtXnl.long_long_string2(nativehandle, Constant.TABLESETITEM, ((long)row) << 32 | column, icon, text);
32 }
◆ setItemBackColor()
void setItemBackColor |
( |
long |
item, |
|
|
int |
color |
|
) |
| |
在文件 QTableWidget.xcsm 第 160 行定义.
160 {
161 QtXnl.widget_set_intlongint_value(nativehandle, Constant.SETTABLEITEMBACKCOLOR, item, 0, color);
162 }
◆ setItemCheck()
void setItemCheck |
( |
long |
item, |
|
|
bool |
checked |
|
) |
| |
在文件 QTableWidget.xcsm 第 163 行定义.
163 {
164 QtXnl.widget_set_int_bool_value(item, Constant.TABITEMSETCHECK, 0, checked);
165 }
◆ setItemColor()
void setItemColor |
( |
long |
item, |
|
|
int |
color |
|
) |
| |
在文件 QTableWidget.xcsm 第 157 行定义.
157 {
158 QtXnl.widget_set_intlongint_value(nativehandle, Constant.SETTABLEITEMCOLOR, item, 0, color);
159 }
◆ setItemIcon()
void setItemIcon |
( |
long |
item, |
|
|
String |
iconFile |
|
) |
| |
在文件 QTableWidget.xcsm 第 154 行定义.
154 {
155 QtXnl.widget_set_intlongstring_value(0, Constant.SETTABLEITEMICON, item, 0, iconFile);
156 }
◆ setItemTag()
void setItemTag |
( |
long |
item, |
|
|
long |
tag |
|
) |
| |
在文件 QTableWidget.xcsm 第 75 行定义.
75 {
76 QtXnl.object_set_long_int_long(nativehandle, Constant.TABLESETTAG, item, 0, tag);
77 }
◆ setItemText()
void setItemText |
( |
long |
item, |
|
|
String |
text |
|
) |
| |
在文件 QTableWidget.xcsm 第 151 行定义.
151 {
152 QtXnl.widget_set_intlongstring_value(0, Constant.SETTABLEITEMTEXT, item, 0, text);
153 }
◆ setRowCount()
void setRowCount |
( |
int |
c | ) |
|
在文件 QTableWidget.xcsm 第 43 行定义.
43 {
44 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETROWCNT, c);
45 }
◆ setRowHeight()
void setRowHeight |
( |
int |
row, |
|
|
int |
height |
|
) |
| |
在文件 QTableWidget.xcsm 第 200 行定义.
200 {
201 QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_SETROWHEIGHT, row, height);
202 }
◆ setRowHidden()
void setRowHidden |
( |
int |
row, |
|
|
bool |
hide |
|
) |
| |
在文件 QTableWidget.xcsm 第 221 行定义.
221 {
222 QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_SETROWHIDDEN, row, hide ? 1 : 0);
223 }
◆ setSelectionBehavior()
void setSelectionBehavior |
( |
int |
sb | ) |
|
在文件 QTableWidget.xcsm 第 101 行定义.
101 {
102 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETSB, sb);
103 }
◆ setSelectionMode()
void setSelectionMode |
( |
int |
sm | ) |
|
在文件 QTableWidget.xcsm 第 98 行定义.
98 {
99 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETSM, sm);
100 }
◆ setShowGrid()
void setShowGrid |
( |
bool |
s | ) |
|
在文件 QTableWidget.xcsm 第 92 行定义.
92 {
93 QtXnl.widget_set_bool_value(nativehandle, Constant.TABLESETSG, s);
94 }
◆ setSortingEnabled()
void setSortingEnabled |
( |
bool |
enable | ) |
|
在文件 QTableWidget.xcsm 第 230 行定义.
230 {
231 QtXnl.widget_set_bool_value(nativehandle, Constant.QTV_SETSORTINGENABLED, enable);
232 }
◆ setSpan()
void setSpan |
( |
int |
row, |
|
|
int |
column, |
|
|
int |
rowSpan, |
|
|
int |
columnSpan |
|
) |
| |
在文件 QTableWidget.xcsm 第 257 行定义.
257 {
258 QtXnl.native_int4(nativehandle, Constant.QTV_SETSPAN, row, column, rowSpan, columnSpan);
259 }
◆ setVHColumns()
void setVHColumns |
( |
String [] |
columns | ) |
|
在文件 QTableWidget.xcsm 第 116 行定义.
116 {
117 QtXnl.widget_set_object_value(nativehandle, Constant.SETTABVHCOLUMNS, columns);
118 }
◆ setVHDefaultSectionSize()
void setVHDefaultSectionSize |
( |
int |
b | ) |
|
在文件 QTableWidget.xcsm 第 89 行定义.
89 {
90 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETVHDSS, b);
91 }
◆ setVHResizeMode()
void setVHResizeMode |
( |
int |
b | ) |
|
在文件 QTableWidget.xcsm 第 86 行定义.
86 {
87 QtXnl.widget_set_vint_value(nativehandle, Constant.TABLESETVHRM, b);
88 }
◆ setVHVisible()
void setVHVisible |
( |
bool |
bv | ) |
|
在文件 QTableWidget.xcsm 第 95 行定义.
95 {
96 QtXnl.widget_set_bool_value(nativehandle, Constant.TABLESETVHV, bv);
97 }
◆ setWordWrap()
void setWordWrap |
( |
bool |
on | ) |
|
在文件 QTableWidget.xcsm 第 245 行定义.
245 {
246 QtXnl.widget_set_bool_value(nativehandle, Constant.QTV_SETWORDWRAP, on);
247 }
◆ showGrid()
在文件 QTableWidget.xcsm 第 236 行定义.
236 {
237 return QtXnl.widget_get_bool_value(nativehandle, Constant.QTV_SHOWGRID);
238 }
◆ sortByColumn()
在文件 QTableWidget.xcsm 第 269 行定义.
269 {
270 QtXnl.widget_set_v2int_value(nativehandle, Constant.QTV_SORTBYCOLUMN, column, order);
271 }
◆ verticalHeader()
QHeaderView verticalHeader |
( |
| ) |
|
在文件 QTableWidget.xcsm 第 183 行定义.
183 {
184 return (QHeaderView)QtXnl.widget_get_object(nativehandle, Constant.QTW_VERTICALHEADER);
185 }
◆ wordWrap()
在文件 QTableWidget.xcsm 第 248 行定义.
248 {
249 return QtXnl.widget_get_bool_value(nativehandle, Constant.QTV_WORDWRAP);
250 }