gpt4all/gpt4all-chat/qml/NewVersionDialog.qml
Adam Treat 697a5f5d2a New lightmode and darkmode themes with UI revamp.
Signed-off-by: Adam Treat <treat.adam@gmail.com>
2024-01-29 12:02:51 -06:00

56 lines
1.3 KiB
QML

import QtCore
import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Basic
import QtQuick.Layouts
import download
import network
import llm
MyDialog {
id: newVerionDialog
anchors.centerIn: parent
modal: true
width: contentItem.width
height: contentItem.height
padding: 20
closeButtonVisible: false
Theme {
id: theme
}
Item {
id: contentItem
width: childrenRect.width + 40
height: childrenRect.height + 40
Label {
id: label
anchors.top: parent.top
anchors.left: parent.left
topPadding: 20
bottomPadding: 20
text: qsTr("New version is available")
color: theme.titleTextColor
font.pixelSize: theme.fontSizeLarge
font.bold: true
}
MySettingsButton {
id: button
anchors.left: label.right
anchors.leftMargin: 10
anchors.verticalCenter: label.verticalCenter
padding: 20
text: qsTr("Update")
font.pixelSize: theme.fontSizeLarge
Accessible.description: qsTr("Update to new version")
onClicked: {
if (!LLM.checkForUpdates())
checkForUpdatesError.open()
}
}
}
}