aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/tabbutton.qml
blob: c5fe646ff4c78b432f9d4e0c95ebb3b3f701bafc (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 QtQuick.Controls 2.1

Window {
    visible: true

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