xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
Public 成员函数
QCheckBox类 参考
类 QCheckBox 继承关系图:
QAbstractButton

Public 成员函数

额外继承的成员函数

详细描述

在文件 QCheckBox.xcsm2 行定义.

构造及析构函数说明

◆ QCheckBox() [1/2]

QCheckBox ( )

在文件 QCheckBox.xcsm3 行定义.

3 {
4 }

◆ QCheckBox() [2/2]

QCheckBox ( long  handle)

在文件 QCheckBox.xcsm6 行定义.

6 {
7 super(handle);
8 }

成员函数说明

◆ create() [1/2]

bool create ( )
override

重载 QWidget .

在文件 QCheckBox.xcsm10 行定义.

10 {
11 nativehandle = QtXnl.createQObject(QType.qtCheckBox, this, 0);
12 if (nativehandle == 0){
13 return false;
14 }
15 return true;
16 }
long nativehandle
Definition QNative.xcsm:91

◆ create() [2/2]

bool create ( @NotNilptr QWidget  parent)
override

重载 QWidget .

在文件 QCheckBox.xcsm18 行定义.

18 {
19 nativehandle = QtXnl.createQObject(QType.qtCheckBox, this, parent.nativehandle);
20 if (nativehandle == 0){
21 return false;
22 }
23 return true;
24 }