138 lines
2.8 KiB
QML
138 lines
2.8 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
|
|
|
|
|
|
|
|
anchors
|
|
{
|
|
top: parent.top
|
|
left: parent.left
|
|
}
|
|
|
|
Button
|
|
{
|
|
id: dashBoard
|
|
// implicitWidth: 65
|
|
// implicitHeight: 25
|
|
// background: Rectangle
|
|
// {
|
|
// border.color: "#f6f6f6"
|
|
// border.width: 1
|
|
// radius: 4
|
|
// }
|
|
Text
|
|
{
|
|
text: "Dashboard"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: kunden
|
|
// implicitWidth: 65
|
|
// implicitHeight: 25
|
|
// background: Rectangle
|
|
// {
|
|
// border.color: "#f6f6f6"
|
|
// border.width: 1
|
|
// radius: 4
|
|
// }
|
|
Text
|
|
{
|
|
text: "Kunden"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: objekt
|
|
// implicitWidth: 65
|
|
// implicitHeight: 25
|
|
// background: Rectangle
|
|
// {
|
|
// border.color: "#f6f6f6"
|
|
// border.width: 1
|
|
// radius: 4
|
|
// }
|
|
Text
|
|
{
|
|
text: "Objekt"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: mitarbeiter
|
|
// implicitWidth: 65
|
|
// implicitHeight: 25
|
|
// background: Rectangle
|
|
// {
|
|
// border.color: "#f6f6f6"
|
|
// border.width: 1
|
|
// radius: 4
|
|
// }
|
|
Text
|
|
{
|
|
text: "Mitarbeiter"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
Button
|
|
{
|
|
id: abrechnung
|
|
// implicitWidth: 79
|
|
// implicitHeight: 25
|
|
// //color: button.down ? "#d6d6d6" : "#f6f6f6"
|
|
// background: Rectangle
|
|
// {
|
|
// border.color: "#f6f6f6"
|
|
// border.width: 1
|
|
// radius: 4
|
|
// }
|
|
Text
|
|
{
|
|
text: "Abrechnung"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
|
|
Item
|
|
{
|
|
id: hspacer
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Image
|
|
{
|
|
id: atajos
|
|
source: "../doc/icons/menu.png"
|
|
sourceSize.height: 35
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|