aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/tabbutton.qml
blob: cdae7a4930da55521f7190b1bf52113b644449fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.5
import QtQuick.Window 2.2
import Qt.labs.controls 1.0

Window {
    visible: true

    TabBar {
        id: tabbar
        objectName: "TabBar"
        TabButton {
            id: tabbutton
            objectName: "tabbutton"
            text: "TabButton"
        }
    }
}