82 lines
1.3 KiB
QML
82 lines
1.3 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
|
|
// Item
|
|
// {
|
|
// id: topBar
|
|
// anchors
|
|
// {
|
|
// top: parent.top
|
|
// left: parent.left
|
|
// right: parent.right
|
|
|
|
// }
|
|
// height: 30
|
|
RowLayout
|
|
{
|
|
id: topBar
|
|
height: 35
|
|
width: parent.width / 8
|
|
|
|
|
|
|
|
anchors
|
|
{
|
|
top: parent.top
|
|
left: parent.left
|
|
}
|
|
|
|
Button
|
|
{
|
|
id: dashBoard
|
|
Text
|
|
{
|
|
text: "Dashboard"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: kunden
|
|
Text
|
|
{
|
|
text: "Kunden"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: objekt
|
|
Text
|
|
{
|
|
text: "Objekt"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: mitarbeiter
|
|
Text
|
|
{
|
|
text: "Mitarbeiter"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: abrechnung
|
|
Text
|
|
{
|
|
text: "Abrechnung"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|