2022-06-03 11:26:02 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2013-04-19 13:38:08 +00:00
|
|
|
|
2020-12-01 13:13:32 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Window
|
|
|
|
import QtQuick.Controls.Styles
|
2013-04-19 13:38:08 +00:00
|
|
|
|
2014-10-25 22:36:24 +00:00
|
|
|
ApplicationWindow {
|
2013-04-19 13:38:08 +00:00
|
|
|
|
2014-10-25 22:36:24 +00:00
|
|
|
//![0]
|
|
|
|
Button {
|
|
|
|
text: qsTr("Hello World")
|
|
|
|
style: ButtonStyle {
|
|
|
|
background: Rectangle {
|
|
|
|
implicitWidth: 100
|
|
|
|
implicitHeight: 25
|
|
|
|
border.width: control.activeFocus ? 2 : 1
|
|
|
|
border.color: "#FFF"
|
|
|
|
radius: 4
|
|
|
|
gradient: Gradient {
|
|
|
|
GradientStop { position: 0 ; color: control.pressed ? "#ccc" : "#fff" }
|
|
|
|
GradientStop { position: 1 ; color: control.pressed ? "#000" : "#fff" }
|
|
|
|
}
|
|
|
|
}
|
2014-12-23 13:43:55 +00:00
|
|
|
}
|
2014-10-25 22:36:24 +00:00
|
|
|
//![0]
|
2014-12-23 13:43:55 +00:00
|
|
|
}
|
2013-04-19 13:38:08 +00:00
|
|
|
}
|