~josharenson/unity8/fix-greeter-password-focus

« back to all changes in this revision

Viewing changes to qml/Stages/AbstractStage.qml

  • Committer: Josh Arenson
  • Date: 2016-03-25 19:54:02 UTC
  • mfrom: (1979.1.9 session-chooser-gui)
  • Revision ID: joshua.arenson@canonical.com-20160325195402-867v3w2zvmjj0kq3
merge prereq

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    property url background
29
29
    property bool beingResized
30
30
    property int dragAreaWidth
 
31
    property real dragProgress // How far left the stage has been dragged, used externally by tutorial code
31
32
    property bool interactive
32
33
    property real inverseProgress // This is the progress for left edge drags, in pixels.
33
34
    property bool keepDashRunning: true
44
45
 
45
46
    // To be read from outside
46
47
    property var mainApp: null
47
 
    property int mainAppWindowOrientationAngle
 
48
    property var mainAppWindow: null
 
49
    property int mainAppWindowOrientationAngle: 0
48
50
    property bool orientationChangesEnabled
49
51
    property int supportedOrientations: Qt.PortraitOrientation
50
52
                                      | Qt.LandscapeOrientation
51
53
                                      | Qt.InvertedPortraitOrientation
52
54
                                      | Qt.InvertedLandscapeOrientation
53
55
 
 
56
    signal stageAboutToBeUnloaded
 
57
 
54
58
    // Shared code for use in stage implementations
55
59
    GSettings {
56
60
        id: lifecycleExceptions