mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-04 12:00:10 +00:00
24 lines
686 B
QML
24 lines
686 B
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
|
|
Button {
|
|
id: myButton
|
|
padding: 10
|
|
contentItem: Text {
|
|
text: myButton.text
|
|
horizontalAlignment: Text.AlignHCenter
|
|
color: myButton.enabled ? theme.textColor : theme.mutedTextColor
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: text
|
|
}
|
|
background: Rectangle {
|
|
border.color: myButton.down ? theme.backgroundLightest : theme.buttonBorder
|
|
border.width: 2
|
|
radius: 10
|
|
color: myButton.hovered ? theme.backgroundLighter : theme.backgroundLight
|
|
}
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: text
|
|
} |