Adapt for sailfishos

This commit is contained in:
Renaud Casenave-Péré 2019-10-22 12:53:34 +02:00
parent 8c515cfc91
commit 928aab143a
13 changed files with 8 additions and 304 deletions

View file

@ -29,16 +29,12 @@ NumList LAudioOutput::overrideIds = NumList();
NumList LAudioRecorder::overrideIds = NumList();
NumList LCamera::overrideIds = NumList() << 179;
NumList LCameraImageCapture::overrideIds = NumList() << 162 << 184;
NumList LCameraViewfinder::overrideIds = NumList();
NumList LGraphicsVideoItem::overrideIds = NumList() << 261 << 232;
NumList LMediaControl::overrideIds = NumList();
NumList LMediaObject::overrideIds = NumList() << 179 << 180 << 181 << 182 << 183;
NumList LMediaPlayer::overrideIds = NumList() << 179;
NumList LMediaPlaylist::overrideIds = NumList() << 162;
NumList LMediaRecorder::overrideIds = NumList() << 162;
NumList LRadioTuner::overrideIds = NumList() << 179;
NumList LVideoWidget::overrideIds = NumList() << 25 << 35 << 39 << 20 << 40 << 41;
NumList LVideoWidgetControl::overrideIds = NumList() << 419 << 420 << 421 << 422 << 423 << 424 << 425 << 426 << 427 << 428 << 429 << 430 << 431;
NumList LAudioDeviceInfo::overrideIds = NumList();
NumList LAudioEncoderSettings::overrideIds = NumList();
NumList LAudioFormat::overrideIds = NumList();
@ -63,8 +59,6 @@ void* multimedia_ini() {
LObjects::Q[30] = new Q31;
LObjects::Q[31] = new Q32;
LObjects::Q[32] = new Q33;
LObjects::Q[33] = new Q34;
LObjects::Q[85] = new Q86;
LObjects::Q[125] = new Q126;
LObjects::Q[126] = new Q127;
LObjects::Q[127] = new Q128;
@ -72,8 +66,6 @@ void* multimedia_ini() {
LObjects::Q[129] = new Q130;
LObjects::Q[130] = new Q131;
LObjects::Q[186] = new Q187;
LObjects::Q[262] = new Q263;
LObjects::Q[263] = new Q264;
LObjects::N[17] = new N18;
LObjects::N[18] = new N19;
LObjects::N[19] = new N20;
@ -155,17 +147,13 @@ const QMetaObject* ModuleMultimedia::staticMetaObject(int n) {
case 31: m = &QCameraFocus::staticMetaObject; break;
case 32: m = &QCameraImageCapture::staticMetaObject; break;
case 33: m = &QCameraImageProcessing::staticMetaObject; break;
case 34: m = &QCameraViewfinder::staticMetaObject; break;
case 86: m = &QGraphicsVideoItem::staticMetaObject; break;
case 126: m = &QMediaControl::staticMetaObject; break;
case 127: m = &QMediaObject::staticMetaObject; break;
case 128: m = &QMediaPlayer::staticMetaObject; break;
case 129: m = &QMediaPlaylist::staticMetaObject; break;
case 130: m = &QMediaRecorder::staticMetaObject; break;
case 131: m = &QMediaService::staticMetaObject; break;
case 187: m = &QRadioTuner::staticMetaObject; break;
case 263: m = &QVideoWidget::staticMetaObject; break;
case 264: m = &QVideoWidgetControl::staticMetaObject; break; }
case 187: m = &QRadioTuner::staticMetaObject; break; }
return m; }
void ModuleMultimedia::deleteNObject(int n, void* p, int gc) {
@ -191,16 +179,12 @@ NumList* ModuleMultimedia::overrideIds(const QByteArray& name) {
case 24: ids = &LAudioRecorder::overrideIds; break;
case 29: ids = &LCamera::overrideIds; break;
case 32: ids = &LCameraImageCapture::overrideIds; break;
case 34: ids = &LCameraViewfinder::overrideIds; break;
case 86: ids = &LGraphicsVideoItem::overrideIds; break;
case 126: ids = &LMediaControl::overrideIds; break;
case 127: ids = &LMediaObject::overrideIds; break;
case 128: ids = &LMediaPlayer::overrideIds; break;
case 129: ids = &LMediaPlaylist::overrideIds; break;
case 130: ids = &LMediaRecorder::overrideIds; break;
case 187: ids = &LRadioTuner::overrideIds; break;
case 263: ids = &LVideoWidget::overrideIds; break;
case 264: ids = &LVideoWidgetControl::overrideIds; break; }}
case 187: ids = &LRadioTuner::overrideIds; break; }}
else {
n = LObjects::n_names.value(name);
switch(n) {

View file

@ -7,7 +7,6 @@
#include "../_main_n_methods.h"
#include <QtWidgets>
#include <QtPrintSupport>
#include <QtMultimediaWidgets>
QT_BEGIN_NAMESPACE

View file

@ -6,7 +6,6 @@
#include "_ini2.h"
#include "../../ecl_fun.h"
#include "../_lobjects.h"
#include <QtMultimediaWidgets>
#include <QtWidgets>
#include <QtPrintSupport>
@ -84,72 +83,6 @@ public:
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraImageCapture::timerEvent(x1); }}
};
class LCameraViewfinder : public QCameraViewfinder {
Q_OBJECT
friend class Q34;
public:
LCameraViewfinder(uint u, QWidget* x1 = 0) : QCameraViewfinder(x1), unique(u) {}
static NumList overrideIds;
uint unique;
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::sizeHint(); } return ret; }
void hideEvent(QHideEvent* x1) { quint64 id = LObjects::override_id(unique, 35); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 35, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::hideEvent(x1); }}
void moveEvent(QMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 39); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 39, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::moveEvent(x1); }}
void paintEvent(QPaintEvent* x1) { quint64 id = LObjects::override_id(unique, 20); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 20, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::paintEvent(x1); }}
void resizeEvent(QResizeEvent* x1) { quint64 id = LObjects::override_id(unique, 40); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 40, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::resizeEvent(x1); }}
void showEvent(QShowEvent* x1) { quint64 id = LObjects::override_id(unique, 41); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 41, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::showEvent(x1); }}
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::heightForWidth(x1); } return ret; }
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::inputMethodQuery(x1); } return ret; }
QSize minimumSizeHint() const { quint64 id = LObjects::override_id(unique, 24); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 24, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::minimumSizeHint(); } return ret; }
void actionEvent(QActionEvent* x1) { quint64 id = LObjects::override_id(unique, 26); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 26, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::actionEvent(x1); }}
void changeEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 12); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 12, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::changeEvent(x1); }}
void closeEvent(QCloseEvent* x1) { quint64 id = LObjects::override_id(unique, 27); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 27, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::closeEvent(x1); }}
void contextMenuEvent(QContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 28); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 28, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::contextMenuEvent(x1); }}
void dragEnterEvent(QDragEnterEvent* x1) { quint64 id = LObjects::override_id(unique, 29); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 29, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::dragEnterEvent(x1); }}
void dragLeaveEvent(QDragLeaveEvent* x1) { quint64 id = LObjects::override_id(unique, 30); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 30, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::dragLeaveEvent(x1); }}
void dragMoveEvent(QDragMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 31); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 31, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::dragMoveEvent(x1); }}
void dropEvent(QDropEvent* x1) { quint64 id = LObjects::override_id(unique, 32); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 32, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::dropEvent(x1); }}
void enterEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 33); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 33, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::enterEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::focusInEvent(x1); }}
bool focusNextPrevChild(bool x1) { quint64 id = LObjects::override_id(unique, 34); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 34, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::focusNextPrevChild(x1); } return ret; }
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::focusOutEvent(x1); }}
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::inputMethodEvent(x1); }}
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::keyReleaseEvent(x1); }}
void leaveEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 37); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 37, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::leaveEvent(x1); }}
void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::mouseDoubleClickEvent(x1); }}
void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::mouseMoveEvent(x1); }}
void mousePressEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 18); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 18, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::mousePressEvent(x1); }}
void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::mouseReleaseEvent(x1); }}
void tabletEvent(QTabletEvent* x1) { quint64 id = LObjects::override_id(unique, 42); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 42, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::tabletEvent(x1); }}
void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::wheelEvent(x1); }}
void initPainter(QPainter* x1) const { quint64 id = LObjects::override_id(unique, 44); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 44, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::initPainter(x1); }}
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::metric(x1); } return ret; }
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QCameraViewfinder::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::customEvent(x1); }}
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QCameraViewfinder::timerEvent(x1); }}
};
class LGraphicsVideoItem : public QGraphicsVideoItem {
Q_OBJECT
friend class Q86;
public:
LGraphicsVideoItem(uint u, QGraphicsItem* x1 = 0) : QGraphicsVideoItem(x1), unique(u) {}
static NumList overrideIds;
uint unique;
QRectF boundingRect() const { quint64 id = LObjects::override_id(unique, 261); void* fun = LObjects::overrideFun(id); QRectF ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 261, 0, id).value<QRectF>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsVideoItem::boundingRect(); } return ret; }
void paint(QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { quint64 id = LObjects::override_id(unique, 232); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2, &x3 }; callOverrideFun(fun, 232, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsVideoItem::paint(x1, x2, x3); }}
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QGraphicsVideoItem::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsVideoItem::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsVideoItem::customEvent(x1); }}
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QGraphicsVideoItem::timerEvent(x1); }}
};
class LMediaControl : public QMediaControl {
Q_OBJECT
friend class Q126;
@ -255,82 +188,6 @@ public:
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QRadioTuner::timerEvent(x1); }}
};
class LVideoWidget : public QVideoWidget {
Q_OBJECT
friend class Q263;
public:
LVideoWidget(uint u, QWidget* x1 = 0) : QVideoWidget(x1), unique(u) {}
static NumList overrideIds;
uint unique;
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::sizeHint(); } return ret; }
void hideEvent(QHideEvent* x1) { quint64 id = LObjects::override_id(unique, 35); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 35, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::hideEvent(x1); }}
void moveEvent(QMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 39); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 39, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::moveEvent(x1); }}
void paintEvent(QPaintEvent* x1) { quint64 id = LObjects::override_id(unique, 20); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 20, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::paintEvent(x1); }}
void resizeEvent(QResizeEvent* x1) { quint64 id = LObjects::override_id(unique, 40); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 40, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::resizeEvent(x1); }}
void showEvent(QShowEvent* x1) { quint64 id = LObjects::override_id(unique, 41); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 41, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::showEvent(x1); }}
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::heightForWidth(x1); } return ret; }
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::inputMethodQuery(x1); } return ret; }
QSize minimumSizeHint() const { quint64 id = LObjects::override_id(unique, 24); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 24, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::minimumSizeHint(); } return ret; }
void actionEvent(QActionEvent* x1) { quint64 id = LObjects::override_id(unique, 26); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 26, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::actionEvent(x1); }}
void changeEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 12); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 12, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::changeEvent(x1); }}
void closeEvent(QCloseEvent* x1) { quint64 id = LObjects::override_id(unique, 27); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 27, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::closeEvent(x1); }}
void contextMenuEvent(QContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 28); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 28, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::contextMenuEvent(x1); }}
void dragEnterEvent(QDragEnterEvent* x1) { quint64 id = LObjects::override_id(unique, 29); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 29, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::dragEnterEvent(x1); }}
void dragLeaveEvent(QDragLeaveEvent* x1) { quint64 id = LObjects::override_id(unique, 30); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 30, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::dragLeaveEvent(x1); }}
void dragMoveEvent(QDragMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 31); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 31, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::dragMoveEvent(x1); }}
void dropEvent(QDropEvent* x1) { quint64 id = LObjects::override_id(unique, 32); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 32, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::dropEvent(x1); }}
void enterEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 33); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 33, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::enterEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::focusInEvent(x1); }}
bool focusNextPrevChild(bool x1) { quint64 id = LObjects::override_id(unique, 34); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 34, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::focusNextPrevChild(x1); } return ret; }
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::focusOutEvent(x1); }}
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::inputMethodEvent(x1); }}
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::keyReleaseEvent(x1); }}
void leaveEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 37); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 37, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::leaveEvent(x1); }}
void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::mouseDoubleClickEvent(x1); }}
void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::mouseMoveEvent(x1); }}
void mousePressEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 18); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 18, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::mousePressEvent(x1); }}
void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::mouseReleaseEvent(x1); }}
void tabletEvent(QTabletEvent* x1) { quint64 id = LObjects::override_id(unique, 42); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 42, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::tabletEvent(x1); }}
void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::wheelEvent(x1); }}
void initPainter(QPainter* x1) const { quint64 id = LObjects::override_id(unique, 44); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 44, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::initPainter(x1); }}
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::metric(x1); } return ret; }
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidget::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::customEvent(x1); }}
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidget::timerEvent(x1); }}
};
class LVideoWidgetControl : public QVideoWidgetControl {
Q_OBJECT
friend class Q264;
public:
static NumList overrideIds;
uint unique;
Qt::AspectRatioMode aspectRatioMode() const { quint64 id = LObjects::override_id(unique, 419); void* fun = LObjects::overrideFun(id); Qt::AspectRatioMode ret = (Qt::AspectRatioMode)0; if(fun && (LObjects::calling != id)) { ret = (Qt::AspectRatioMode)callOverrideFun(fun, 419, 0, id).toInt(); } return ret; }
int brightness() const { quint64 id = LObjects::override_id(unique, 420); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 420, 0, id).toInt(); } return ret; }
int contrast() const { quint64 id = LObjects::override_id(unique, 421); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 421, 0, id).toInt(); } return ret; }
int hue() const { quint64 id = LObjects::override_id(unique, 422); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 422, 0, id).toInt(); } return ret; }
bool isFullScreen() const { quint64 id = LObjects::override_id(unique, 423); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 423, 0, id).toBool(); } return ret; }
int saturation() const { quint64 id = LObjects::override_id(unique, 424); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 424, 0, id).toInt(); } return ret; }
void setAspectRatioMode(Qt::AspectRatioMode x1) { quint64 id = LObjects::override_id(unique, 425); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 425, args, id); }}
void setBrightness(int x1) { quint64 id = LObjects::override_id(unique, 426); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 426, args, id); }}
void setContrast(int x1) { quint64 id = LObjects::override_id(unique, 427); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 427, args, id); }}
void setFullScreen(bool x1) { quint64 id = LObjects::override_id(unique, 428); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 428, args, id); }}
void setHue(int x1) { quint64 id = LObjects::override_id(unique, 429); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 429, args, id); }}
void setSaturation(int x1) { quint64 id = LObjects::override_id(unique, 430); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 430, args, id); }}
QWidget* videoWidget() { quint64 id = LObjects::override_id(unique, 431); void* fun = LObjects::overrideFun(id); QWidget* ret = 0; if(fun && (LObjects::calling != id)) { ret = (QWidget*)callOverrideFun(fun, 431, 0, id).value<void*>(); } return ret; }
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QVideoWidgetControl::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidgetControl::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidgetControl::customEvent(x1); }}
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QVideoWidgetControl::timerEvent(x1); }}
};
QT_END_NAMESPACE
#endif

View file

@ -7,7 +7,6 @@
#include "../_main_q_methods.h"
#include <QtWidgets>
#include <QtPrintSupport>
#include <QtMultimediaWidgets>
QT_BEGIN_NAMESPACE
@ -141,22 +140,6 @@ public:
Q_INVOKABLE int MwhiteBalanceMode(QCameraImageProcessing* o) const { return o->whiteBalanceMode(); }
};
class Q86 : public Q77 { // QGraphicsVideoItem
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QGraphicsItem* x1 = 0) { return new LGraphicsVideoItem(u, x1); }
Q_INVOKABLE int MaspectRatioMode(QGraphicsVideoItem* o) const { return o->aspectRatioMode(); }
Q_INVOKABLE QMediaObject* MmediaObject(QGraphicsVideoItem* o) const { return o->mediaObject(); }
Q_INVOKABLE QSizeF MnativeSize(QGraphicsVideoItem* o) const { return o->nativeSize(); }
Q_INVOKABLE QPointF Moffset(QGraphicsVideoItem* o) const { return o->offset(); }
Q_INVOKABLE void MsetAspectRatioMode(QGraphicsVideoItem* o, Qt::AspectRatioMode x1) { o->setAspectRatioMode(x1); }
Q_INVOKABLE void MsetOffset(QGraphicsVideoItem* o, const QPointF& x1) { o->setOffset(x1); }
Q_INVOKABLE void MsetSize(QGraphicsVideoItem* o, const QSizeF& x1) { o->setSize(x1); }
Q_INVOKABLE QSizeF Msize(QGraphicsVideoItem* o) const { return o->size(); }
Q_INVOKABLE QRectF MboundingRect(QGraphicsVideoItem* o) const { return o->boundingRect(); }
Q_INVOKABLE void Mpaint(QGraphicsVideoItem* o, QPainter* x1, const QStyleOptionGraphicsItem* x2, QWidget* x3 = 0) { o->paint(x1, x2, x3); }
};
class Q126 : public Q142 { // QMediaControl
Q_OBJECT
public:
@ -198,8 +181,6 @@ public:
Q_INVOKABLE qreal MplaybackRate(QMediaPlayer* o) const { return o->playbackRate(); }
Q_INVOKABLE QMediaPlaylist* Mplaylist(QMediaPlayer* o) const { return o->playlist(); }
Q_INVOKABLE qlonglong Mposition(QMediaPlayer* o) const { return o->position(); }
Q_INVOKABLE void MsetVideoOutput(QMediaPlayer* o, QVideoWidget* x1) { o->setVideoOutput(x1); }
Q_INVOKABLE void MsetVideoOutput(QMediaPlayer* o, QGraphicsVideoItem* x1) { o->setVideoOutput(x1); }
Q_INVOKABLE void MsetVideoOutput(QMediaPlayer* o, QAbstractVideoSurface* x1) { o->setVideoOutput(x1); }
Q_INVOKABLE int Mstate(QMediaPlayer* o) const { return o->state(); }
Q_INVOKABLE int Mvolume(QMediaPlayer* o) const { return o->volume(); }
@ -306,24 +287,6 @@ public:
Q_INVOKABLE int Mavailability(QRadioTuner* o) const { return o->availability(); }
};
class Q264 : public Q126 { // QVideoWidgetControl
Q_OBJECT
public:
Q_INVOKABLE int MaspectRatioMode(QVideoWidgetControl* o) const { return o->aspectRatioMode(); }
Q_INVOKABLE int Mbrightness(QVideoWidgetControl* o) const { return o->brightness(); }
Q_INVOKABLE int Mcontrast(QVideoWidgetControl* o) const { return o->contrast(); }
Q_INVOKABLE int Mhue(QVideoWidgetControl* o) const { return o->hue(); }
Q_INVOKABLE bool MisFullScreen(QVideoWidgetControl* o) const { return o->isFullScreen(); }
Q_INVOKABLE int Msaturation(QVideoWidgetControl* o) const { return o->saturation(); }
Q_INVOKABLE void MsetAspectRatioMode(QVideoWidgetControl* o, Qt::AspectRatioMode x1) { o->setAspectRatioMode(x1); }
Q_INVOKABLE void MsetBrightness(QVideoWidgetControl* o, int x1) { o->setBrightness(x1); }
Q_INVOKABLE void MsetContrast(QVideoWidgetControl* o, int x1) { o->setContrast(x1); }
Q_INVOKABLE void MsetFullScreen(QVideoWidgetControl* o, bool x1) { o->setFullScreen(x1); }
Q_INVOKABLE void MsetHue(QVideoWidgetControl* o, int x1) { o->setHue(x1); }
Q_INVOKABLE void MsetSaturation(QVideoWidgetControl* o, int x1) { o->setSaturation(x1); }
Q_INVOKABLE QWidget* MvideoWidget(QVideoWidgetControl* o) { return o->videoWidget(); }
};
class Q24 : public Q130 { // QAudioRecorder
Q_OBJECT
public:
@ -351,8 +314,6 @@ public:
Q_INVOKABLE int MlockStatus(QCamera* o) const { return o->lockStatus(); }
Q_INVOKABLE int MlockStatus(QCamera* o, QCamera::LockType x1) const { return o->lockStatus(x1); }
Q_INVOKABLE int MrequestedLocks(QCamera* o) const { return o->requestedLocks(); }
Q_INVOKABLE void MsetViewfinder(QCamera* o, QVideoWidget* x1) { o->setViewfinder(x1); }
Q_INVOKABLE void MsetViewfinder(QCamera* o, QGraphicsVideoItem* x1) { o->setViewfinder(x1); }
Q_INVOKABLE void MsetViewfinder(QCamera* o, QAbstractVideoSurface* x1) { o->setViewfinder(x1); }
Q_INVOKABLE void MsetViewfinderSettings(QCamera* o, const QCameraViewfinderSettings& x1) { o->setViewfinderSettings(x1); }
Q_INVOKABLE int Mstate(QCamera* o) const { return o->state(); }
@ -366,28 +327,6 @@ public:
Q_INVOKABLE int Mavailability(QCamera* o) const { return o->availability(); }
};
class Q263 : public Q279 { // QVideoWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LVideoWidget(u, x1); }
Q_INVOKABLE int MaspectRatioMode(QVideoWidget* o) const { return o->aspectRatioMode(); }
Q_INVOKABLE int Mbrightness(QVideoWidget* o) const { return o->brightness(); }
Q_INVOKABLE int Mcontrast(QVideoWidget* o) const { return o->contrast(); }
Q_INVOKABLE int Mhue(QVideoWidget* o) const { return o->hue(); }
Q_INVOKABLE bool MisFullScreen(QVideoWidget* o) const { return o->isFullScreen(); }
Q_INVOKABLE QMediaObject* MmediaObject(QVideoWidget* o) const { return o->mediaObject(); }
Q_INVOKABLE int Msaturation(QVideoWidget* o) const { return o->saturation(); }
Q_INVOKABLE QSize MsizeHint(QVideoWidget* o) const { return o->sizeHint(); }
};
class Q34 : public Q263 { // QCameraViewfinder
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LCameraViewfinder(u, x1); }
Q_INVOKABLE QMediaObject* MmediaObject(QCameraViewfinder* o) const { return o->mediaObject(); }
Q_INVOKABLE bool MsetMediaObject(QCameraViewfinder* o, QMediaObject* x1) { return ((LCameraViewfinder*)o)->setMediaObject(x1); }
};
QT_END_NAMESPACE
#endif

View file

@ -35,7 +35,6 @@ NumList LQuickRenderControl::overrideIds = NumList();
NumList LQuickTextDocument::overrideIds = NumList();
NumList LQuickTextureFactory::overrideIds = NumList() << 343 << 344 << 345 << 346;
NumList LQuickView::overrideIds = NumList();
NumList LQuickWidget::overrideIds = NumList() << 29 << 30 << 31 << 32 << 13 << 14 << 35 << 15 << 16 << 38 << 17 << 18 << 19 << 41 << 43;
NumList LQuickWindow::overrideIds = NumList();
NumList LSGAbstractRenderer::overrideIds = NumList() << 347;
NumList LSGDynamicTexture::overrideIds = NumList() << 348;
@ -92,7 +91,6 @@ void* quick_ini() {
LObjects::Q[180] = new Q181;
LObjects::Q[181] = new Q182;
LObjects::Q[182] = new Q183;
LObjects::Q[183] = new Q184;
LObjects::Q[184] = new Q185;
LObjects::Q[189] = new Q190;
LObjects::Q[190] = new Q191;
@ -185,7 +183,6 @@ const QMetaObject* ModuleQuick::staticMetaObject(int n) {
case 181: m = &QQuickTextDocument::staticMetaObject; break;
case 182: m = &QQuickTextureFactory::staticMetaObject; break;
case 183: m = &QQuickView::staticMetaObject; break;
case 184: m = &QQuickWidget::staticMetaObject; break;
case 185: m = &QQuickWindow::staticMetaObject; break;
case 190: m = &QSGAbstractRenderer::staticMetaObject; break;
case 191: m = &QSGDynamicTexture::staticMetaObject; break;
@ -246,7 +243,6 @@ NumList* ModuleQuick::overrideIds(const QByteArray& name) {
case 181: ids = &LQuickTextDocument::overrideIds; break;
case 182: ids = &LQuickTextureFactory::overrideIds; break;
case 183: ids = &LQuickView::overrideIds; break;
case 184: ids = &LQuickWidget::overrideIds; break;
case 185: ids = &LQuickWindow::overrideIds; break;
case 190: ids = &LSGAbstractRenderer::overrideIds; break;
case 191: ids = &LSGDynamicTexture::overrideIds; break;

View file

@ -7,7 +7,6 @@
#include "../../ecl_fun.h"
#include "../_lobjects.h"
#include <QtQuick>
#include <QtQuickWidgets>
#include <QtWidgets>
#include <QtPrintSupport>
@ -355,57 +354,6 @@ public:
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickView::timerEvent(x1); }}
};
class LQuickWidget : public QQuickWidget {
Q_OBJECT
friend class Q184;
public:
LQuickWidget(uint u, QWidget* x1 = 0) : QQuickWidget(x1), unique(u) {}
LQuickWidget(uint u, QQmlEngine* x1, QWidget* x2) : QQuickWidget(x1, x2), unique(u) {}
LQuickWidget(uint u, const QUrl& x1, QWidget* x2 = 0) : QQuickWidget(x1, x2), unique(u) {}
static NumList overrideIds;
uint unique;
void dragEnterEvent(QDragEnterEvent* x1) { quint64 id = LObjects::override_id(unique, 29); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 29, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::dragEnterEvent(x1); }}
void dragLeaveEvent(QDragLeaveEvent* x1) { quint64 id = LObjects::override_id(unique, 30); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 30, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::dragLeaveEvent(x1); }}
void dragMoveEvent(QDragMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 31); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 31, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::dragMoveEvent(x1); }}
void dropEvent(QDropEvent* x1) { quint64 id = LObjects::override_id(unique, 32); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 32, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::dropEvent(x1); }}
void focusInEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 13); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 13, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::focusInEvent(x1); }}
void focusOutEvent(QFocusEvent* x1) { quint64 id = LObjects::override_id(unique, 14); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 14, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::focusOutEvent(x1); }}
void hideEvent(QHideEvent* x1) { quint64 id = LObjects::override_id(unique, 35); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 35, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::hideEvent(x1); }}
void keyPressEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 15); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 15, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::keyPressEvent(x1); }}
void keyReleaseEvent(QKeyEvent* x1) { quint64 id = LObjects::override_id(unique, 16); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 16, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::keyReleaseEvent(x1); }}
void mouseDoubleClickEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 38); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 38, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::mouseDoubleClickEvent(x1); }}
void mouseMoveEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 17); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 17, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::mouseMoveEvent(x1); }}
void mousePressEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 18); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 18, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::mousePressEvent(x1); }}
void mouseReleaseEvent(QMouseEvent* x1) { quint64 id = LObjects::override_id(unique, 19); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 19, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::mouseReleaseEvent(x1); }}
void showEvent(QShowEvent* x1) { quint64 id = LObjects::override_id(unique, 41); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 41, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::showEvent(x1); }}
void wheelEvent(QWheelEvent* x1) { quint64 id = LObjects::override_id(unique, 43); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 43, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::wheelEvent(x1); }}
bool hasHeightForWidth() const { quint64 id = LObjects::override_id(unique, 21); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 21, 0, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::hasHeightForWidth(); } return ret; }
int heightForWidth(int x1) const { quint64 id = LObjects::override_id(unique, 22); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 22, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::heightForWidth(x1); } return ret; }
QVariant inputMethodQuery(Qt::InputMethodQuery x1) const { quint64 id = LObjects::override_id(unique, 23); void* fun = LObjects::overrideFun(id); QVariant ret; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 23, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::inputMethodQuery(x1); } return ret; }
QSize minimumSizeHint() const { quint64 id = LObjects::override_id(unique, 24); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 24, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::minimumSizeHint(); } return ret; }
QSize sizeHint() const { quint64 id = LObjects::override_id(unique, 25); void* fun = LObjects::overrideFun(id); QSize ret; if(fun && (LObjects::calling != id)) { ret = callOverrideFun(fun, 25, 0, id).value<QSize>(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::sizeHint(); } return ret; }
void actionEvent(QActionEvent* x1) { quint64 id = LObjects::override_id(unique, 26); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 26, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::actionEvent(x1); }}
void changeEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 12); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 12, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::changeEvent(x1); }}
void closeEvent(QCloseEvent* x1) { quint64 id = LObjects::override_id(unique, 27); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 27, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::closeEvent(x1); }}
void contextMenuEvent(QContextMenuEvent* x1) { quint64 id = LObjects::override_id(unique, 28); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 28, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::contextMenuEvent(x1); }}
void enterEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 33); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 33, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::enterEvent(x1); }}
bool focusNextPrevChild(bool x1) { quint64 id = LObjects::override_id(unique, 34); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 34, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::focusNextPrevChild(x1); } return ret; }
void inputMethodEvent(QInputMethodEvent* x1) { quint64 id = LObjects::override_id(unique, 36); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 36, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::inputMethodEvent(x1); }}
void leaveEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 37); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 37, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::leaveEvent(x1); }}
void moveEvent(QMoveEvent* x1) { quint64 id = LObjects::override_id(unique, 39); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 39, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::moveEvent(x1); }}
void paintEvent(QPaintEvent* x1) { quint64 id = LObjects::override_id(unique, 20); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 20, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::paintEvent(x1); }}
void resizeEvent(QResizeEvent* x1) { quint64 id = LObjects::override_id(unique, 40); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 40, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::resizeEvent(x1); }}
void tabletEvent(QTabletEvent* x1) { quint64 id = LObjects::override_id(unique, 42); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 42, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::tabletEvent(x1); }}
void initPainter(QPainter* x1) const { quint64 id = LObjects::override_id(unique, 44); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 44, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::initPainter(x1); }}
int metric(PaintDeviceMetric x1) const { quint64 id = LObjects::override_id(unique, 45); void* fun = LObjects::overrideFun(id); int ret = 0; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; ret = callOverrideFun(fun, 45, args, id).toInt(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::metric(x1); } return ret; }
bool eventFilter(QObject* x1, QEvent* x2) { quint64 id = LObjects::override_id(unique, 5); void* fun = LObjects::overrideFun(id); bool ret = false; if(fun && (LObjects::calling != id)) { const void* args[] = { &x1, &x2 }; ret = callOverrideFun(fun, 5, args, id).toBool(); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { ret = QQuickWidget::eventFilter(x1, x2); } return ret; }
void childEvent(QChildEvent* x1) { quint64 id = LObjects::override_id(unique, 6); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 6, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::childEvent(x1); }}
void customEvent(QEvent* x1) { quint64 id = LObjects::override_id(unique, 7); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 7, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::customEvent(x1); }}
void timerEvent(QTimerEvent* x1) { quint64 id = LObjects::override_id(unique, 8); void* fun = LObjects::overrideFun(id); if(fun && (LObjects::calling != id)) { const void* args[] = { &x1 }; callOverrideFun(fun, 8, args, id); } if(!fun || LObjects::call_default || (LObjects::calling == id)) { QQuickWidget::timerEvent(x1); }}
};
class LQuickWindow : public QQuickWindow {
Q_OBJECT
friend class Q185;

View file

@ -408,29 +408,6 @@ public:
Q_INVOKABLE QSGTextureProvider* MtextureProvider(QQuickFramebufferObject* o) const { return o->textureProvider(); }
};
class Q184 : public Q279 { // QQuickWidget
Q_OBJECT
public:
Q_INVOKABLE void* C(uint u, QWidget* x1 = 0) { return new LQuickWidget(u, x1); }
Q_INVOKABLE void* C(uint u, QQmlEngine* x1, QWidget* x2) { return new LQuickWidget(u, x1, x2); }
Q_INVOKABLE void* C(uint u, const QUrl& x1, QWidget* x2 = 0) { return new LQuickWidget(u, x1, x2); }
Q_INVOKABLE QQmlEngine* Mengine(QQuickWidget* o) const { return o->engine(); }
Q_INVOKABLE QList<QQmlError> Merrors(QQuickWidget* o) const { return o->errors(); }
Q_INVOKABLE QSurfaceFormat Mformat(QQuickWidget* o) const { return o->format(); }
Q_INVOKABLE QImage MgrabFramebuffer(QQuickWidget* o) const { return o->grabFramebuffer(); }
Q_INVOKABLE QSize MinitialSize(QQuickWidget* o) const { return o->initialSize(); }
Q_INVOKABLE QQuickWindow* MquickWindow(QQuickWidget* o) const { return o->quickWindow(); }
Q_INVOKABLE int MresizeMode(QQuickWidget* o) const { return o->resizeMode(); }
Q_INVOKABLE QQmlContext* MrootContext(QQuickWidget* o) const { return o->rootContext(); }
Q_INVOKABLE QQuickItem* MrootObject(QQuickWidget* o) const { return o->rootObject(); }
Q_INVOKABLE void MsetClearColor(QQuickWidget* o, const QColor& x1) { o->setClearColor(x1); }
Q_INVOKABLE void MsetFormat(QQuickWidget* o, const QSurfaceFormat& x1) { o->setFormat(x1); }
Q_INVOKABLE void MsetResizeMode(QQuickWidget* o, QQuickWidget::ResizeMode x1) { o->setResizeMode(x1); }
Q_INVOKABLE QUrl Msource(QQuickWidget* o) const { return o->source(); }
Q_INVOKABLE int Mstatus(QQuickWidget* o) const { return o->status(); }
Q_INVOKABLE bool Mevent(QQuickWidget* o, QEvent* x1) { return ((LQuickWidget*)o)->event(x1); }
};
class Q185 : public Q281 { // QQuickWindow
Q_OBJECT
public:

View file

@ -8,6 +8,7 @@
#include "../_lobjects.h"
#include <QtWebKit>
#include <QtWidgets>
#include <QtWebKitWidgets>
#include <QtPrintSupport>
QT_BEGIN_NAMESPACE

View file

@ -7,6 +7,7 @@
#include "../_main_n_methods.h"
#include <QtWidgets>
#include <QtPrintSupport>
#include <QtWebKit>
#include <QtWebKitWidgets>
QT_BEGIN_NAMESPACE

View file

@ -8,6 +8,7 @@
#include "../_lobjects.h"
#include <QtWebKit>
#include <QtWidgets>
#include <QtWebKitWidgets>
#include <QtPrintSupport>
QT_BEGIN_NAMESPACE

View file

@ -7,6 +7,7 @@
#include "../_main_q_methods.h"
#include <QtWidgets>
#include <QtPrintSupport>
#include <QtWebKit>
#include <QtWebKitWidgets>
QT_BEGIN_NAMESPACE

View file

@ -1,4 +1,4 @@
QT += multimedia multimediawidgets printsupport uitools
QT += multimedia printsupport uitools
TEMPLATE = lib
CONFIG += no_keywords release
CONFIG += plugin

View file

@ -1,4 +1,4 @@
QT += quick quickwidgets qml printsupport uitools
QT += quick qml printsupport uitools
TEMPLATE = lib
CONFIG += no_keywords release
CONFIG += plugin