aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickwidgets/quickwidgets.pro
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-12-18 12:24:56 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-17 14:37:33 +0100
commit742a7a0bd18d4ec23288b132a0e190235bff0547 (patch)
tree0935bcbedd0d07349b092706557767cfc473d350 /src/quickwidgets/quickwidgets.pro
parente6a5e693a5abeab1a1634b71da33c9c93e2e7b98 (diff)
Introducing QQuickWidget
Renders into an FBO, and provides a texture that is composed by the QPA/widget kernel compositor. Also introducing QQuickRenderControl, which is private API for now. Change-Id: I710c16e1506124a17f91e87344496471803a448b Reviewed-by: Gunnar Sletta <gunnar.sletta@jollamobile.com>
Diffstat (limited to 'src/quickwidgets/quickwidgets.pro')
-rw-r--r--src/quickwidgets/quickwidgets.pro19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/quickwidgets/quickwidgets.pro b/src/quickwidgets/quickwidgets.pro
new file mode 100644
index 0000000000..ab388ff9d3
--- /dev/null
+++ b/src/quickwidgets/quickwidgets.pro
@@ -0,0 +1,19 @@
+TARGET = QtQuickWidgets
+
+QT = core-private gui-private qml-private quick-private widgets-private
+
+DEFINES += QT_NO_URL_CAST_FROM_STRING QT_NO_INTEGER_EVENT_COORDINATES
+
+
+load(qt_module)
+
+HEADERS += \
+ qquickwidget.h \
+ qquickwidget_p.h \
+ qtquickwidgetsglobal.h
+
+SOURCES += \
+ qquickwidget.cpp
+
+
+