aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/tableview/tableview.pro
diff options
context:
space:
mode:
authorMichael Winkelmann <michael.winkelmann@qt.io>2018-06-28 18:38:03 +0200
committerMitch Curtis <mitch.curtis@qt.io>2018-07-10 11:34:02 +0000
commit04e7882fc2044020f98c9f6507429a47981f222b (patch)
tree49b8c4c27f27e9673cc8dab84329e7f7e0e155c8 /examples/quick/tableview/tableview.pro
parent67f0da5f285b0400bfa5aeda2d335da0668d1b27 (diff)
TableView pixelator example
Example of a QML TableView with custom table model. Inspired from the original pixelator example from the widget world. Change-Id: Ic33e6d2e9320fe135d56dde92326dd8a606fe109 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'examples/quick/tableview/tableview.pro')
-rw-r--r--examples/quick/tableview/tableview.pro11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/quick/tableview/tableview.pro b/examples/quick/tableview/tableview.pro
new file mode 100644
index 0000000000..ea8e3bd12b
--- /dev/null
+++ b/examples/quick/tableview/tableview.pro
@@ -0,0 +1,11 @@
+TEMPLATE = app
+
+QT += quick qml
+HEADERS += imagemodel.h
+SOURCES += main.cpp \
+ imagemodel.cpp
+
+RESOURCES += qt.png main.qml
+
+target.path = $$[QT_INSTALL_EXAMPLES]/quick/tableview
+INSTALLS += target