xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
DockToolBar.x
浏览该文件的文档.
1//xlang Source, Name:DockToolBar.x
2//Date: Mon Feb 19:24:29 2021
3
4package Qtitan{
5 @SuppressWarnings public class DockToolBar : Qt.QWidget{
6 public DockToolBar(){
7
8 }
9
10 public DockToolBar(long handle){
11 super(handle);
12 }
13
14 public bool create(@NotNilptr Qt.QWidget parent)override {
15 nativehandle = Qt.QtXnl.createQObject(Qt.QType.qtDockToolBar, this, parent.nativehandle);
16 if (nativehandle == 0){
17 return false;
18 }
19 return true;
20 }
21
22 public bool create(@NotNilptr String titleText, @NotNilptr DockPanelManager parent) {
23 nativehandle = Qt.QtXnl.createQSObject(Qt.QType.qtDockToolBar, this, parent.nativehandle, titleText);
24 if (nativehandle == 0){
25 return false;
26 }
27 return true;
28 }
29 };
30};
static const int qtDockToolBar
Definition QTypes.xcsm:77
long cdecl createQSObject(int type, Object xobj, long parent, String param)
long cdecl createQObject(int type, Object xobj, long parent)
bool create(@NotNilptr Qt.QWidget parent) override
Definition DockToolBar.x:14
bool create(@NotNilptr String titleText, @NotNilptr DockPanelManager parent)
Definition DockToolBar.x:22
字符串类
Definition QCefQuery.x:3