◆ QToolBar() [1/2]
◆ QToolBar() [2/2]
◆ addAction()
void addAction |
( |
@NotNilptr QAction |
action | ) |
|
|
override |
重载 QWidget .
在文件 QToolBar.xcsm 第 37 行定义.
37 {
38 QtXnl.widget_set_intlongint_value(nativehandle, Constant.TOOLBARADDACTION, action.nativehandle, 0, 0);
39 }
◆ addSeparator()
在文件 QToolBar.xcsm 第 45 行定义.
45 {
46 return (QAction) QtXnl.widget_get_object(nativehandle, Constant.TOOLBARADDSEPAR);
47 }
◆ addWidget()
void addWidget |
( |
@NotNilptr QWidget |
widget | ) |
|
在文件 QToolBar.xcsm 第 29 行定义.
29 {
30 QtXnl.widget_set_intlongint_value(nativehandle, Constant.TOOLBARADDWIDGET, widget.nativehandle, 0, 0);
31 }
◆ create() [1/2]
重载 QWidget .
在文件 QToolBar.xcsm 第 13 行定义.
13 {
14 nativehandle = QtXnl.createQObject(QType.qtToolbar,
this, 0);
15 if (nativehandle == 0){
16 return false;
17 }
18 return true;
19 }
◆ create() [2/2]
bool create |
( |
@NotNilptr QWidget |
parent | ) |
|
|
override |
重载 QWidget .
在文件 QToolBar.xcsm 第 21 行定义.
21 {
22 nativehandle = QtXnl.createQObject(QType.qtToolbar,
this, parent.nativehandle);
23 if (nativehandle == 0){
24 return false;
25 }
26 return true;
27 }
◆ insertWidget()
void insertWidget |
( |
@NotNilptr QAction |
action, |
|
|
@NotNilptr QWidget |
widget |
|
) |
| |
在文件 QToolBar.xcsm 第 33 行定义.
33 {
34 QtXnl.void_long2(nativehandle, Constant.TOOLBARINSWIDGET, action.nativehandle, widget.nativehandle);
35 }
◆ removeAction()
void removeAction |
( |
@NotNilptr QAction |
action | ) |
|
在文件 QToolBar.xcsm 第 41 行定义.
41 {
42 QtXnl.widget_set_intlongint_value(nativehandle, Constant.TOOLBARREMACTION, action.nativehandle, 0, 0);
43 }
◆ setIconSize()
void setIconSize |
( |
int |
cx, |
|
|
int |
cy |
|
) |
| |
在文件 QToolBar.xcsm 第 49 行定义.
49 {
50 QtXnl.widget_set_v2int_value(nativehandle, Constant.SETICONSIZE, cx, cy);
51 }