~renatofilho/telephony-service/fix-phone-number-field-cursor

« back to all changes in this revision

Viewing changes to StopWatch.qml

  • Committer: Ugo Riboni
  • Date: 2012-05-02 19:38:34 UTC
  • Revision ID: ugo.riboni@canonical.com-20120502193834-0i8h6ky5sxh14wn8
First batch of components added to Live Call view

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 1.0
 
2
import "fontUtils.js" as Font
 
3
 
 
4
Rectangle {
 
5
    property string time: ""
 
6
    radius: 4
 
7
    color: "#3a3a3a"
 
8
    height: count.paintedHeight + 8 * 2
 
9
    width: count.paintedWidth + 22 * 2
 
10
 
 
11
    Text {
 
12
        id: count
 
13
        anchors.centerIn: parent
 
14
        color: "white"
 
15
        text: time
 
16
        font.pixelSize: Font.sizeToPixels("x-large")
 
17
    }
 
18
}