xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QwtPlotCanvas.x
浏览该文件的文档.
1//xlang Source, Name:QwtPlotCanvas.x
2//Date: Wed Nov 04:45:46 2023
3package Qt{
4 @SuppressWarnings public class QwtPlotCanvas : QFrame{
5 public QwtPlotCanvas(){
6
7 }
8
9 public QwtPlotCanvas(long handle){
10 super(handle);
11 }
12
13 public bool create()override {
14 nativehandle = QtXnl.createQObject(QType.qtQwtPlotCanvas, this, 0);
15 if (nativehandle == 0){
16 return false;
17 }
18 return true;
19 }
20
21 public void setBorderRadius(double b){
22 QtXnl.widget_set_double_value(nativehandle,Constant.QwtPlotCanvas_setBorderRadius, b);
23 }
24
25 public bool create(@NotNilptr QWidget parent)override {
26 nativehandle = QtXnl.createQObject(QType.qtQwtPlotCanvas, this, parent.nativehandle);
27 if (nativehandle == 0){
28 return false;
29 }
30 return true;
31 }
32 };
33};
void setBorderRadius(double b)
bool create() override
bool create(@NotNilptr QWidget parent) override