From 0f7299a74a6e2e0b23bb3a4a4ad1ab01c1e56eb7 Mon Sep 17 00:00:00 2001 From: "DIASPORA\\chris" Date: Sun, 17 Aug 2025 22:54:50 +0200 Subject: [PATCH] added missing widgets --- src/widgets/xqquickwidget.cpp | 22 ++++++++++++++++++++++ src/widgets/xqquickwidget.h | 27 +++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 src/widgets/xqquickwidget.cpp create mode 100644 src/widgets/xqquickwidget.h diff --git a/src/widgets/xqquickwidget.cpp b/src/widgets/xqquickwidget.cpp new file mode 100644 index 0000000..cb10b1c --- /dev/null +++ b/src/widgets/xqquickwidget.cpp @@ -0,0 +1,22 @@ +/*************************************************************************** + + source::worx xtree + Copyright © 2024-2025 c.holzheuer + christoph.holzheuer@gmail.com + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + +***************************************************************************/ + + +#include + +XQQuickWidget::XQQuickWidget() +{ + +} + + diff --git a/src/widgets/xqquickwidget.h b/src/widgets/xqquickwidget.h new file mode 100644 index 0000000..d5ed88f --- /dev/null +++ b/src/widgets/xqquickwidget.h @@ -0,0 +1,27 @@ +/*************************************************************************** + + source::worx xtree + Copyright © 2024-2025 c.holzheuer + christoph.holzheuer@gmail.com + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + +***************************************************************************/ + + +#ifndef XQQUICKWIDGET_H +#define XQQUICKWIDGET_H + +#include + +class XQQuickWidget : public QQuickWidget +{ + Q_OBJECT +public: + XQQuickWidget(); +}; + +#endif // XQQUICKWIDGET_H