import QtQuick 2.6
import QtQuick.Controls 2.0
ApplicationWindow {
visible: true
width: grid.width
height: grid.height
Grid {
id: grid
columns: 4
spacing: 20
padding: 100
anchors.centerIn: parent
Button { text: "Normal" }
Button { text: "Disabled"; enabled: false }
Button { text: "Down"; down: true }
Button { text: "Disabled"; down: true; enabled: false }
Button { text: "Checked"; checked: true }
Button { text: "Disabled"; checked: true; enabled: false }
Button { text: "Down"; checked: true; down: true }
Button { text: "Disabled"; checked: true; down: true; enabled: false }
Button { text: "Highlighted"; highlighted: true }
Button { text: "Disabled"; highlighted: true; enabled: false }
Button { text: "Down"; highlighted: true; down: true }
Button { text: "Disabled"; highlighted: true; down: true; enabled: false }
Button { text: "Hi-checked"; highlighted: true; checked: true }
Button { text: "Disabled"; highlighted: true; checked: true; enabled: false }
Button { text: "Down"; highlighted: true; checked: true; down: true }
Button { text: "Disabled"; highlighted: true; checked: true; down: true; enabled: false }
}
}