2023-04-14 18:44:28 +00:00
|
|
|
import QtCore
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2023-04-24 03:56:33 +00:00
|
|
|
import QtQuick.Controls.Basic
|
2023-04-14 18:44:28 +00:00
|
|
|
import QtQuick.Layouts
|
|
|
|
import download
|
|
|
|
import network
|
|
|
|
import llm
|
|
|
|
|
|
|
|
Dialog {
|
|
|
|
id: thumbsDownDialog
|
|
|
|
modal: true
|
|
|
|
opacity: 0.9
|
|
|
|
padding: 20
|
2023-04-23 13:42:35 +00:00
|
|
|
|
|
|
|
Theme {
|
|
|
|
id: theme
|
|
|
|
}
|
|
|
|
|
2023-04-14 18:44:28 +00:00
|
|
|
property alias response: thumbsDownNewResponse.text
|
2023-04-27 20:27:53 +00:00
|
|
|
|
2023-04-14 18:44:28 +00:00
|
|
|
Column {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 20
|
|
|
|
Item {
|
|
|
|
width: childrenRect.width
|
|
|
|
height: childrenRect.height
|
|
|
|
Image {
|
|
|
|
id: img
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
width: 60
|
|
|
|
height: 60
|
2023-04-23 13:42:35 +00:00
|
|
|
source: "qrc:/gpt4all/icons/thumbs_down.svg"
|
2023-04-14 18:44:28 +00:00
|
|
|
}
|
|
|
|
Text {
|
|
|
|
anchors.left: img.right
|
|
|
|
anchors.leftMargin: 30
|
|
|
|
anchors.verticalCenter: img.verticalCenter
|
2023-04-24 17:39:45 +00:00
|
|
|
text: qsTr("Please edit the text below to provide a better response. (optional)")
|
2023-04-23 13:42:35 +00:00
|
|
|
color: theme.textColor
|
2023-04-14 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollView {
|
|
|
|
clip: true
|
|
|
|
height: 300
|
|
|
|
width: parent.width
|
|
|
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
|
|
|
|
TextArea {
|
|
|
|
id: thumbsDownNewResponse
|
2023-04-23 13:42:35 +00:00
|
|
|
color: theme.textColor
|
2023-04-14 18:44:28 +00:00
|
|
|
padding: 20
|
|
|
|
wrapMode: Text.Wrap
|
2023-04-23 15:23:02 +00:00
|
|
|
font.pixelSize: theme.fontSizeLarge
|
2023-04-14 18:44:28 +00:00
|
|
|
placeholderText: qsTr("Please provide a better response...")
|
2023-04-23 13:42:35 +00:00
|
|
|
placeholderTextColor: theme.backgroundLightest
|
2023-04-14 18:44:28 +00:00
|
|
|
background: Rectangle {
|
2023-04-23 13:42:35 +00:00
|
|
|
color: theme.backgroundLighter
|
2023-04-14 18:44:28 +00:00
|
|
|
radius: 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
anchors.fill: parent
|
2023-04-23 13:42:35 +00:00
|
|
|
color: theme.backgroundDarkest
|
2023-04-14 18:44:28 +00:00
|
|
|
border.width: 1
|
2023-04-23 13:42:35 +00:00
|
|
|
border.color: theme.dialogBorder
|
2023-04-14 18:44:28 +00:00
|
|
|
radius: 10
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: DialogButtonBox {
|
|
|
|
padding: 20
|
|
|
|
alignment: Qt.AlignRight
|
|
|
|
spacing: 10
|
2023-05-23 13:53:32 +00:00
|
|
|
MyButton {
|
|
|
|
text: qsTr("Submit")
|
|
|
|
Accessible.description: qsTr("Submits the user's response")
|
2023-04-14 18:44:28 +00:00
|
|
|
DialogButtonBox.buttonRole: DialogButtonBox.AcceptRole
|
|
|
|
}
|
2023-05-23 13:53:32 +00:00
|
|
|
MyButton {
|
|
|
|
text: qsTr("Cancel")
|
|
|
|
Accessible.description: qsTr("Closes the response dialog")
|
2023-04-14 18:44:28 +00:00
|
|
|
DialogButtonBox.buttonRole: DialogButtonBox.RejectRole
|
|
|
|
}
|
|
|
|
background: Rectangle {
|
|
|
|
color: "transparent"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|