xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
DockStyle.x
浏览该文件的文档.
1//xlang Source, Name:qt5/titan/DockStyleConfig.x
2//Date: Tue Feb 21:52:49 2021
3@SuppressWarnings
4package Qtitan{
5 @SuppressWarnings public class DockStyle : Qt.QStyle{
6 public DockStyle(){
7
8 }
9 public DockStyle(long h){
10 super(h);
11 }
12 public bool create(String path, Qt.QByteArray qb){
13 nativehandle = Qt.QtXnl.createQSObject(Qt.QType.qtDockStyle, this, qb.nativehandle, path);
14 if (nativehandle == 0){
15 return false;
16 }
17 return true;
18 }
19
20 public Theme theme(){
21 return (Theme)Qt.QtXnl.widget_get_int_value(nativehandle, Qt.Constant.QTNDS_THEME);
22 }
23
24 public void setTheme(Theme theme){
25 Qt.QtXnl.widget_set_vint_value(nativehandle, Qt.Constant.QTNDS_SETTHEME, theme);
26 }
27 };
28};
static const int QTNDS_THEME
Definition Constant.x:861
static const int QTNDS_SETTHEME
Definition Constant.x:862
static const int qtDockStyle
Definition QTypes.xcsm:82
int cdecl widget_get_int_value(long h, int proid)
long cdecl createQSObject(int type, Object xobj, long parent, String param)
bool create(String path, Qt.QByteArray qb)
Definition DockStyle.x:12
void setTheme(Theme theme)
Definition DockStyle.x:24
Theme theme()
Definition DockStyle.x:20
字符串类
Definition QCefQuery.x:3