aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickwindow/data/focus.qml
blob: fa8ae9dc69244524dee535ee2169d0fa4f2d3d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0
import QtQuick.Window 2.0 as Window

Window.Window {

    width: 400
    height: 300

     Item {
          objectName: "item1"
     }
     Item {
          objectName: "item2"
     }

     FocusScope {
         Item { objectName: "item3" }
     }
}