~jocave/checkbox/hybrid-amd-gpu-mods

« back to all changes in this revision

Viewing changes to plainbox-gui/gui-ihv/qml/outline/TestSelectionView.qml

  • Committer: Julia Segal
  • Date: 2013-07-17 14:23:54 UTC
  • mto: (2229.2.4 trunk)
  • mto: This revision was merged to the branch mainline in revision 2553.
  • Revision ID: julia.segal@cellsoftware.co.uk-20130717142354-o2iwvizq15zag1p0
Added skeleton for Run Manager

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
Page {
32
32
    title: i18n.tr("Choose tests to run on your system:")
33
33
 
34
 
    Label { // puts a space at the top
 
34
    Item { // puts a space at the top
35
35
        id: filler
36
 
        width: parent.width
37
 
        height: units.gu(4)
 
36
        height: units.gu(0)
38
37
        anchors {
39
38
            left: parent.left
40
39
            top: parent.top
119
118
        id: testbuttons
120
119
        anchors{
121
120
             horizontalCenter: parent.horizontalCenter
122
 
             //top: testdetails.bottom
123
 
             //topMargin: units.gu(2)
124
121
             bottom: parent.bottom
125
122
             bottomMargin: units.gu(2)
126
123
        }
135
132
 
136
133
        onStartTesting: {
137
134
            // CHANGE THIS TO NEXT PAGE TO BRING UP
138
 
            mainView.state = "DEMOWARNINGS"
 
135
            mainView.state = "RUNMANAGER"
139
136
            console.log("Start Testing")
140
137
        }
141
138
    }