mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-11-09 16:55:32 +03:00
9273b49b62
Signed-off-by: Adam Treat <treat.adam@gmail.com> Signed-off-by: Jared Van Bortel <jared@nomic.ai> Co-authored-by: Jared Van Bortel <jared@nomic.ai>
39 lines
1.2 KiB
QML
39 lines
1.2 KiB
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
import mysettings
|
|
|
|
Button {
|
|
id: myButton
|
|
padding: 10
|
|
rightPadding: 18
|
|
leftPadding: 18
|
|
property color textColor: theme.lightButtonText
|
|
property color mutedTextColor: theme.lightButtonMutedText
|
|
property color backgroundColor: theme.lightButtonBackground
|
|
property color backgroundColorHovered: enabled ? theme.lightButtonBackgroundHovered : backgroundColor
|
|
property real borderWidth: 0
|
|
property color borderColor: "transparent"
|
|
property real fontPixelSize: theme.fontSizeLarge
|
|
|
|
contentItem: Text {
|
|
text: myButton.text
|
|
horizontalAlignment: Text.AlignHCenter
|
|
color: myButton.enabled ? textColor : mutedTextColor
|
|
font.pixelSize: fontPixelSize
|
|
font.bold: true
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: text
|
|
}
|
|
background: Rectangle {
|
|
radius: 10
|
|
border.width: borderWidth
|
|
border.color: borderColor
|
|
color: myButton.hovered ? backgroundColorHovered : backgroundColor
|
|
}
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: text
|
|
ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval
|
|
}
|