first push

This commit is contained in:
marcin
2014-07-07 19:08:30 +02:00
commit 62df25ce8e
62 changed files with 2410 additions and 0 deletions

26
components/TipItem.qml Normal file
View File

@@ -0,0 +1,26 @@
import QtQuick 2.0
Rectangle {
property alias text: content.text
width: content.width + 12
height: content.height + 17
color: "#FF6C3C"
radius: 3
Image {
anchors.top: parent.bottom
anchors.left: parent.left
anchors.leftMargin: 8
source: "../images/tip.png"
}
Text {
id: content
anchors.horizontalCenter: parent.horizontalCenter
y: 6
lineHeight: 0.7
font.family: "Arial"
font.pixelSize: 12
color: "#FFFFFF"
}
}