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

Public 成员函数

额外继承的成员函数

详细描述

在文件 QStatusBar.xcs4 行定义.

构造及析构函数说明

◆ QStatusBar() [1/2]

QStatusBar ( )

在文件 QStatusBar.xcs5 行定义.

5 {
6
7 }

◆ QStatusBar() [2/2]

QStatusBar ( long  handle)

在文件 QStatusBar.xcs9 行定义.

9 {
10 super(handle);
11 }

成员函数说明

◆ addPermanentWidget()

void addPermanentWidget ( @NotNilptr QWidget  widget,
int  stretch 
)

在文件 QStatusBar.xcs34 行定义.

34 {
35 QtXnl.widget_set_intlongint_value(nativehandle, Constant.ADDPERWIDGET, widget.nativehandle, stretch, 0);
36 }

◆ addWidget()

void addWidget ( @NotNilptr QWidget  widget,
int  stretch 
)

在文件 QStatusBar.xcs28 行定义.

28 {
29 QtXnl.widget_set_intlongint_value(nativehandle, Constant.ADDWIDGET, widget.nativehandle, stretch, 0);
30 }

◆ create() [1/2]

bool create ( )
override

重载 QWidget .

在文件 QStatusBar.xcs13 行定义.

13 {
14 nativehandle = QtXnl.createQObject(QType.qtStatusBar, this, 0);
15 if (nativehandle == 0){
16 return false;
17 }
18 return true;
19 }
long nativehandle
Definition QNative.xcsm:91

◆ create() [2/2]

bool create ( @NotNilptr QWidget  parent)
override

重载 QWidget .

在文件 QStatusBar.xcs21 行定义.

21 {
22 nativehandle = QtXnl.createQObject(QType.qtStatusBar, this, parent.nativehandle);
23 if (nativehandle == 0){
24 return false;
25 }
26 return true;
27 }

◆ currentMessage()

String currentMessage ( )

在文件 QStatusBar.xcs49 行定义.

49 {
50 return (String)QtXnl.core_getString(nativehandle, Constant.CURRENTMESSAGE);
51 }
字符串类

◆ insertPermanentWidget()

int insertPermanentWidget ( int  index,
@NotNilptr QWidget  widget,
int  stretch 
)

在文件 QStatusBar.xcs37 行定义.

37 {
38 return QtXnl.int_long_int_long_int_int(nativehandle, Constant.INSERTPERWIDGET, widget.nativehandle, stretch, index);
39 }

◆ insertWidget()

int insertWidget ( int  index,
@NotNilptr QWidget  widget,
int  stretch 
)

在文件 QStatusBar.xcs31 行定义.

31 {
32 return QtXnl.int_long_int_long_int_int(nativehandle, Constant.INSERTWIDGET, widget.nativehandle, stretch, index);
33 }

◆ isSizeGripEnabled()

bool isSizeGripEnabled ( )

在文件 QStatusBar.xcs46 行定义.

46 {
47 return QtXnl.widget_get_bool_value(nativehandle, Constant.SIZEGRIPENABLED);
48 }

◆ removeWidget()

void removeWidget ( @NotNilptr QWidget  widget)

重载 QWidget .

在文件 QStatusBar.xcs40 行定义.

40 {
41 QtXnl.widget_set_native_value(nativehandle, Constant.REMOVEWIDGET, widget.nativehandle);
42 }

◆ setSizeGripEnabled()

void setSizeGripEnabled ( bool  b)

在文件 QStatusBar.xcs43 行定义.

43 {
44 QtXnl.widget_set_bool_value(nativehandle, Constant.SIZEGRIPENABLED, b);
45 }

◆ showMessage()

void showMessage ( String  text)

在文件 QStatusBar.xcs52 行定义.

52 {
53 QtXnl.widget_slot_string(nativehandle,Constant. SHOWMESSAGE, text);
54 }