~ubuntu-branches/debian/jessie/qtdeclarative-opensource-src/jessie

« back to all changes in this revision

Viewing changes to examples/quick/window/Splash.qml

  • Committer: Package Import Robot
  • Author(s): Lisandro Damián Nicanor Pérez Meyer, Lisandro Damián Nicanor Pérez Meyer
  • Date: 2013-08-30 22:09:43 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130830220943-en0u2dm8cfxpi53o
Tags: 5.1.1-1
[ Lisandro Damián Nicanor Pérez Meyer ]
* New upstream release.
* Update symbols file with buildds' logs.
* Remove fix_systemdialogs_path, applied upstream.
* Adjust examples install file.
* Update symbols files with current build.
* Tighten Qt 5 build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
//! [splash-properties]
45
45
Window {
46
46
    id: splash
47
 
    visible: true
48
 
    width: splashImage.width
49
 
    height: splashImage.height
50
47
    color: "transparent"
51
48
    title: "Splash Window"
52
49
    modality: Qt.ApplicationModal
58
55
    x: (Screen.width - splashImage.width) / 2
59
56
    y: (Screen.height - splashImage.height) / 2
60
57
//! [screen-properties]
 
58
    width: splashImage.width
 
59
    height: splashImage.height
61
60
 
62
61
    Image {
63
62
        id: splashImage
76
75
        }
77
76
    }
78
77
    //! [timer]
 
78
    Component.onCompleted: visible = true
79
79
}