mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04: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>
42 lines
1.2 KiB
QML
42 lines
1.2 KiB
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
property alias text: mainTextLabel.text
|
|
property alias helpText: helpTextLabel.text
|
|
|
|
property alias textFormat: mainTextLabel.textFormat
|
|
property alias wrapMode: mainTextLabel.wrapMode
|
|
property alias font: mainTextLabel.font
|
|
property alias horizontalAlignment: mainTextLabel.horizontalAlignment
|
|
signal linkActivated(link : url);
|
|
property alias color: mainTextLabel.color
|
|
property alias linkColor: mainTextLabel.linkColor
|
|
|
|
Label {
|
|
id: mainTextLabel
|
|
color: theme.settingsTitleTextColor
|
|
font.pixelSize: theme.fontSizeSmall
|
|
font.bold: true
|
|
onLinkActivated: function(link) {
|
|
root.linkActivated(link);
|
|
}
|
|
}
|
|
Label {
|
|
id: helpTextLabel
|
|
Layout.fillWidth: true
|
|
wrapMode: Text.Wrap
|
|
color: theme.settingsTitleTextColor
|
|
text: mainTextLabel.text
|
|
font.pixelSize: theme.fontSizeSmaller
|
|
font.bold: false
|
|
onLinkActivated: function(link) {
|
|
root.linkActivated(link);
|
|
}
|
|
}
|
|
}
|