mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-06 09:20:33 +00:00
34de19ebf6
Signed-off-by: Adam Treat <treat.adam@gmail.com>
51 lines
1.4 KiB
QML
51 lines
1.4 KiB
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
Button {
|
|
id: myButton
|
|
padding: 10
|
|
property color backgroundColor: theme.iconBackgroundDark
|
|
property color backgroundColorHovered: theme.iconBackgroundHovered
|
|
property bool toggled: false
|
|
property alias source: image.source
|
|
property alias fillMode: image.fillMode
|
|
contentItem: Text {
|
|
text: myButton.text
|
|
horizontalAlignment: Text.AlignHCenter
|
|
color: myButton.enabled ? theme.textColor : theme.mutedTextColor
|
|
font.pixelSize: theme.fontSizeLarge
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: text
|
|
}
|
|
|
|
background: Item {
|
|
anchors.fill: parent
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: "transparent"
|
|
visible: myButton.toggled
|
|
border.color: theme.accentColor
|
|
border.width: 1
|
|
radius: 10
|
|
}
|
|
Image {
|
|
id: image
|
|
anchors.centerIn: parent
|
|
mipmap: true
|
|
width: 30
|
|
height: 30
|
|
}
|
|
ColorOverlay {
|
|
anchors.fill: image
|
|
source: image
|
|
color: myButton.hovered ? backgroundColorHovered : backgroundColor
|
|
}
|
|
}
|
|
Accessible.role: Accessible.Button
|
|
Accessible.name: text
|
|
ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval
|
|
}
|