xlang
v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
xlibrarys
Qt5
Qt5
qt5
widgets
QAbstractButton.x
浏览该文件的文档.
1
//xlang Source, Name:qt5/widgets/QAbstractButton.x
2
//Date: Wed Oct 17:49:38 2022
3
package
Qt{
4
@SuppressWarnings public class QAbstractButton : QWidget{
5
public QAbstractButton() {}
6
public QAbstractButton(long handle){
7
super(handle);
8
}
9
public
void
setText
(
String
text){
10
QtXnl.widget_slot_string(nativehandle, Constant.BUTTONSETTEXT, text);
11
}
12
public
bool
getCheck
(){
13
return
QtXnl.widget_get_bool_value(nativehandle, Constant.CHKGETCHECK);
14
}
15
public
void
setCheck
(
bool
bc){
16
QtXnl.widget_set_bool_value(nativehandle, Constant.CHKSETCHECK, bc);
17
}
18
@NotNilptr
public
String
getText
(){
19
return
(
String
)QtXnl.core_getString(nativehandle, Constant.BUTTONGETTEXT);
20
}
21
public
void
setIcon
(QIcon icon){
22
QtXnl.widget_set_native_value(nativehandle, Constant.QBUTTON_SETICON, icon.nativehandle);
23
}
24
public
void
setIconSize
(
int
cx,
int
cy){
25
QtXnl.widget_set_v2int_value(nativehandle, Constant.QBUTTON_SETICONSIZE, cx, cy);
26
}
27
};
28
};
Qt.QAbstractButton.setIcon
void setIcon(QIcon icon)
Definition
QAbstractButton.x:21
Qt.QAbstractButton.setText
void setText(String text)
Definition
QAbstractButton.x:9
Qt.QAbstractButton.setIconSize
void setIconSize(int cx, int cy)
Definition
QAbstractButton.x:24
Qt.QAbstractButton.setCheck
void setCheck(bool bc)
Definition
QAbstractButton.x:15
Qt.QAbstractButton.getCheck
bool getCheck()
Definition
QAbstractButton.x:12
Qt.QAbstractButton.getText
String getText()
Definition
QAbstractButton.x:18
String
字符串类
Definition
BuiltinObjects.x:65
制作者
1.9.8