~townsend/ubuntu-app-launch/remove-xmir-helpers

« back to all changes in this revision

Viewing changes to ubuntu-app-test/data/ubuntu-app-test.qml

  • Committer: Ted Gould
  • Date: 2015-02-23 17:16:54 UTC
  • mto: (184.3.1 app-test-no-mir)
  • mto: This revision was merged to the branch mainline in revision 186.
  • Revision ID: ted@gould.cx-20150223171654-pbq01o9rq937xdg8
Merging in ubuntu-app-test project

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Ubuntu.Components 0.1
 
3
 
 
4
MainView {
 
5
        automaticOrientation: true
 
6
        width: parent.width
 
7
        height: parent.height
 
8
 
 
9
        Page {
 
10
                title: i18n.tr("Ubuntu Application Test")
 
11
                TextArea {
 
12
                        text: i18n.tr("An application that exists as a dummy so that the application you're wishing to run can be overlayed on top of it. If you're seeing this the application is probably starting, or somehow failed to run.")
 
13
                        width: parent.width - units.gu(4)
 
14
                        height: parent.height - units.gu(4)
 
15
                        x: units.gu(2)
 
16
                        y: units.gu(2)
 
17
                        readOnly: true
 
18
                }
 
19
        }
 
20
}