2023-04-23 10:58:07 +00:00
|
|
|
import QtCore
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2023-04-24 03:56:33 +00:00
|
|
|
import QtQuick.Controls.Basic
|
2023-04-25 14:57:40 +00:00
|
|
|
import QtQuick.Dialogs
|
2023-04-23 10:58:07 +00:00
|
|
|
import QtQuick.Layouts
|
2023-06-05 13:23:43 +00:00
|
|
|
import Qt.labs.folderlistmodel
|
2023-04-23 10:58:07 +00:00
|
|
|
import download
|
2023-06-22 19:44:49 +00:00
|
|
|
import modellist
|
2023-04-23 10:58:07 +00:00
|
|
|
import network
|
|
|
|
import llm
|
2023-06-27 15:54:34 +00:00
|
|
|
import mysettings
|
2023-04-23 10:58:07 +00:00
|
|
|
|
2023-07-06 14:53:43 +00:00
|
|
|
MyDialog {
|
2023-04-23 10:58:07 +00:00
|
|
|
id: settingsDialog
|
|
|
|
modal: true
|
2023-05-23 02:13:42 +00:00
|
|
|
padding: 20
|
2023-05-03 00:31:17 +00:00
|
|
|
onOpened: {
|
|
|
|
Network.sendSettingsDialog();
|
|
|
|
}
|
|
|
|
|
2023-04-23 10:58:07 +00:00
|
|
|
Item {
|
|
|
|
Accessible.role: Accessible.Dialog
|
|
|
|
Accessible.name: qsTr("Settings dialog")
|
2023-04-25 14:57:40 +00:00
|
|
|
Accessible.description: qsTr("Dialog containing various application settings")
|
2023-04-23 10:58:07 +00:00
|
|
|
}
|
2023-04-25 17:00:28 +00:00
|
|
|
|
2023-06-30 13:50:09 +00:00
|
|
|
ListModel {
|
|
|
|
id: stacksModel
|
|
|
|
ListElement {
|
2023-07-01 15:34:21 +00:00
|
|
|
title: "Models"
|
2023-06-30 13:50:09 +00:00
|
|
|
}
|
|
|
|
ListElement {
|
|
|
|
title: "Application"
|
|
|
|
}
|
|
|
|
ListElement {
|
|
|
|
title: "Plugins"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollView {
|
|
|
|
id: stackList
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.left: parent.left
|
|
|
|
width: 200
|
|
|
|
ScrollBar.vertical.policy: ScrollBar.AsNeeded
|
|
|
|
clip: true
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: listView
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.rightMargin: 10
|
|
|
|
model: stacksModel
|
|
|
|
|
|
|
|
delegate: Rectangle {
|
|
|
|
id: item
|
|
|
|
width: listView.width
|
|
|
|
height: titleLabel.height + 25
|
|
|
|
color: "transparent"
|
|
|
|
border.color: theme.backgroundLighter
|
|
|
|
border.width: index == listView.currentIndex ? 1 : 0
|
|
|
|
radius: 10
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: titleLabel
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.margins: 20
|
2023-07-01 15:34:21 +00:00
|
|
|
font.bold: index == listView.currentIndex
|
2023-06-30 13:50:09 +00:00
|
|
|
text: title
|
|
|
|
elide: Text.ElideRight
|
|
|
|
color: theme.textColor
|
|
|
|
width: 200
|
2023-07-11 18:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TapHandler {
|
|
|
|
onTapped: {
|
|
|
|
listView.currentIndex = index
|
2023-06-30 13:50:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StackLayout {
|
|
|
|
id: stackLayout
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.left: stackList.right
|
|
|
|
anchors.right: parent.right
|
|
|
|
currentIndex: listView.currentIndex
|
|
|
|
|
|
|
|
MySettingsStack {
|
2023-07-01 15:34:21 +00:00
|
|
|
title: qsTr("Model/Character Settings")
|
2023-06-30 13:50:09 +00:00
|
|
|
tabs: [
|
2023-07-01 15:34:21 +00:00
|
|
|
Component { ModelSettings { } }
|
2023-06-30 13:50:09 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
MySettingsStack {
|
2023-07-01 15:34:21 +00:00
|
|
|
title: qsTr("Application General Settings")
|
2023-06-30 13:50:09 +00:00
|
|
|
tabs: [
|
|
|
|
Component { ApplicationSettings { } }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
MySettingsStack {
|
2023-07-01 15:34:21 +00:00
|
|
|
title: qsTr("LocalDocs Plugin (BETA) Settings")
|
2023-06-30 13:50:09 +00:00
|
|
|
tabs: [
|
|
|
|
Component { LocalDocsSettings { } }
|
|
|
|
]
|
|
|
|
}
|
2023-04-23 10:58:07 +00:00
|
|
|
}
|
|
|
|
}
|