mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
Start fleshing out the localdocs ui.
This commit is contained in:
parent
af33be7b3e
commit
120fbbf67d
@ -76,6 +76,7 @@ qt_add_qml_module(chat
|
|||||||
QML_FILES
|
QML_FILES
|
||||||
main.qml
|
main.qml
|
||||||
qml/ChatDrawer.qml
|
qml/ChatDrawer.qml
|
||||||
|
qml/LocalDocs.qml
|
||||||
qml/ModelDownloaderDialog.qml
|
qml/ModelDownloaderDialog.qml
|
||||||
qml/NetworkDialog.qml
|
qml/NetworkDialog.qml
|
||||||
qml/NewVersionDialog.qml
|
qml/NewVersionDialog.qml
|
||||||
|
36
gpt4all-chat/qml/LocalDocs.qml
Normal file
36
gpt4all-chat/qml/LocalDocs.qml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Controls
|
||||||
|
import QtQuick.Controls.Basic
|
||||||
|
import QtQuick.Layouts
|
||||||
|
|
||||||
|
GridLayout {
|
||||||
|
columns: 2
|
||||||
|
rowSpacing: 10
|
||||||
|
columnSpacing: 10
|
||||||
|
|
||||||
|
Label {
|
||||||
|
text: qsTr("Collections:")
|
||||||
|
color: theme.textColor
|
||||||
|
Layout.row: 1
|
||||||
|
Layout.column: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
spacing: 10
|
||||||
|
Layout.row: 1
|
||||||
|
Layout.column: 1
|
||||||
|
MyComboBox {
|
||||||
|
id: comboBox
|
||||||
|
Layout.minimumWidth: 350
|
||||||
|
}
|
||||||
|
MyButton {
|
||||||
|
text: "Add"
|
||||||
|
}
|
||||||
|
MyButton {
|
||||||
|
text: "Remove"
|
||||||
|
}
|
||||||
|
MyButton {
|
||||||
|
text: "Rename"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -803,11 +803,8 @@ Dialog {
|
|||||||
contentWidth: availableWidth - 20
|
contentWidth: availableWidth - 20
|
||||||
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
||||||
|
|
||||||
GridLayout {
|
LocalDocs {
|
||||||
anchors.margins: 10
|
anchors.margins: 10
|
||||||
columns: 3
|
|
||||||
rowSpacing: 10
|
|
||||||
columnSpacing: 10
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user