xlang
v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
xlibrarys
Qt5
Qt5
qt5
widgets
QMdiSubWindow.xcsm
浏览该文件的文档.
1
package
Qt{
2
@SuppressWarnings public class QMdiSubWindow : QWidget{
3
public QMdiSubWindow(){
4
5
}
6
7
public QMdiSubWindow(long h){
8
super(h);
9
}
10
11
public
bool
create
()
override
{
12
nativehandle = QtXnl.createQObject(QType.qtMdiSubWnd,
this
, 0);
13
if
(nativehandle == 0){
14
return
false
;
15
}
16
return
true
;
17
}
18
19
public
bool
create
(@NotNilptr QWidget parent)
override
{
20
nativehandle = QtXnl.createQObject(QType.qtMdiSubWnd,
this
, parent == nilptr ? 0l : parent.nativehandle);
21
if
(nativehandle == 0){
22
return
false
;
23
}
24
return
true
;
25
}
26
27
public
void
setWidget
(@NotNilptr QWidget w){
28
QtXnl.widget_set_native_value(nativehandle, Constant.SUBSETWIDGET, w.nativehandle);
29
}
30
31
public
QWidget
getWidget
(QWidget w){
32
return
(QWidget)QtXnl.widget_get_object(nativehandle, Constant.SUBGETWIDGET);
33
}
34
};
35
};
Qt.QMdiSubWindow.getWidget
QWidget getWidget(QWidget w)
Definition
QMdiSubWindow.xcsm:31
Qt.QMdiSubWindow.create
bool create() override
Definition
QMdiSubWindow.xcsm:11
Qt.QMdiSubWindow.create
bool create(@NotNilptr QWidget parent) override
Definition
QMdiSubWindow.xcsm:19
Qt.QMdiSubWindow.setWidget
void setWidget(@NotNilptr QWidget w)
Definition
QMdiSubWindow.xcsm:27
制作者
1.9.8