~rpadovani/ubuntu-calculator-app/cleanUp

« back to all changes in this revision

Viewing changes to app/ubuntu-calculator-app.qml

  • Committer: Bartosz Kosiorek
  • Date: 2014-11-19 22:34:53 UTC
  • Revision ID: gang65@poczta.onet.pl-20141119223453-gpcjrqbss4vtbiuh
Initial GUI design according to new design

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import "ui"
21
21
 
22
22
MainView {
23
 
    objectName: "mainView"
 
23
    id: mainView
 
24
    // objectName for functional testing purposes (autopilot-qt5)
 
25
    objectName: "calculator"
24
26
    applicationName: "com.ubuntu.calculator"
25
27
 
26
28
    // Removes the old toolbar and enables new features of the new header.
29
31
    width: units.gu(40)
30
32
    height: units.gu(70)
31
33
 
32
 
    // Screen {}
 
34
    Storage{
 
35
        id: storage
 
36
    }
33
37
 
34
 
    // Keyboard {}
 
38
    SimplePage {
 
39
        title: i18n.tr("Calculator")
 
40
    }
35
41
}
36
42