GUI und config
This commit is contained in:
77
Programmeinstellungen.qml
Normal file
77
Programmeinstellungen.qml
Normal file
@@ -0,0 +1,77 @@
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import QtQuick.Controls
|
||||
|
||||
|
||||
|
||||
// Item {
|
||||
|
||||
// benutzername
|
||||
// passwort
|
||||
// server
|
||||
// port
|
||||
// benutzername(db)
|
||||
// passwort(db)
|
||||
// DbName
|
||||
// type
|
||||
|
||||
|
||||
// }
|
||||
|
||||
Window
|
||||
{
|
||||
width: 640
|
||||
height: 480
|
||||
visible: true
|
||||
GridLayout
|
||||
{
|
||||
id: settingsGrid
|
||||
columns: 2
|
||||
anchors.fill: parent
|
||||
Label
|
||||
{
|
||||
text: qsTr("Benutzername:")
|
||||
|
||||
}
|
||||
TextField
|
||||
{
|
||||
id: benutzerName
|
||||
placeholderText: qsTr("Hier Benutzername eingeben")
|
||||
}
|
||||
Label
|
||||
{
|
||||
text: qsTr("Passwort:")
|
||||
|
||||
}
|
||||
TextField
|
||||
{
|
||||
id: passWort
|
||||
placeholderText: qsTr("Hier Passwort eingeben")
|
||||
}
|
||||
Label
|
||||
{
|
||||
text: qsTr("DB-Host:")
|
||||
|
||||
}
|
||||
TextField
|
||||
{
|
||||
id: dbHost
|
||||
placeholderText: qsTr("Hier Host eingeben")
|
||||
}
|
||||
Label
|
||||
{
|
||||
text: qsTr("DB-Name:")
|
||||
|
||||
}
|
||||
TextField
|
||||
{
|
||||
id: dbName
|
||||
placeholderText: qsTr("Hier DB-Name eingeben")
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user