~mihirsoni/ubuntu-calendar-app/dateSelectNewEventTest

« back to all changes in this revision

Viewing changes to EventDetailsInfo.qml

  • Committer: Andrea Cerisara
  • Date: 2013-10-22 17:32:19 UTC
  • mfrom: (158 ubuntu-calendar-app)
  • mto: This revision was merged to the branch mainline in revision 162.
  • Revision ID: andreacerisara@gmail.com-20131022173219-5iyw2hqialxuam35
Merged master, fixed autopilot tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Ubuntu.Components 0.1
 
3
import Ubuntu.Components.Themes.Ambiance 0.1
 
4
Item
 
5
{
 
6
   property alias header: header.text
 
7
   property alias value: value.text
 
8
   property string headerColor :"black"
 
9
   property string detailColor :"grey"
 
10
   property int xMargin
 
11
   property int headerWidth: header.width
 
12
   width: parent.width
 
13
   height: header.height
 
14
   Label{
 
15
      id: header
 
16
      color: headerColor
 
17
      font.bold: true
 
18
      fontSize: "medium"
 
19
      anchors.left: parent.left
 
20
   }
 
21
   Label{
 
22
        id:value
 
23
        x: xMargin + units.gu(1)
 
24
        color: detailColor
 
25
        fontSize: "medium"
 
26
   }
 
27
}