summaryrefslogtreecommitdiff
path: root/src/watchviewitem.cpp
diff options
context:
space:
mode:
authorJavier S. Pedro <dev.git@javispedro.com>2014-09-06 03:25:38 +0200
committerJavier S. Pedro <dev.git@javispedro.com>2014-09-06 03:25:38 +0200
commited40a7f1cbc1da5ae21c58882df241fc0071c2f7 (patch)
treea3e34febb658c4cc5b631577d685361ab489678a /src/watchviewitem.cpp
parent643db0927177037646b61cc4af21b9af1428b0e4 (diff)
downloadsalmeta-ed40a7f1cbc1da5ae21c58882df241fc0071c2f7.tar.gz
salmeta-ed40a7f1cbc1da5ae21c58882df241fc0071c2f7.zip
adding initial UI to select device
Diffstat (limited to 'src/watchviewitem.cpp')
-rw-r--r--src/watchviewitem.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/watchviewitem.cpp b/src/watchviewitem.cpp
new file mode 100644
index 0000000..dbd4e8a
--- /dev/null
+++ b/src/watchviewitem.cpp
@@ -0,0 +1,15 @@
+#include <QtCore/QDebug>
+#include <QtGui/QPainter>
+
+#include "watchviewitem.h"
+
+WatchViewItem::WatchViewItem(QQuickItem *parent) :
+ QQuickPaintedItem(parent)
+{
+ setFillColor(Qt::white);
+}
+
+void WatchViewItem::paint(QPainter *painter)
+{
+
+}