GUI in frames and other applicant-related stuff

This commit is contained in:
2025-01-16 11:17:57 +01:00
parent f035f60910
commit e94a9f9900
15 changed files with 534 additions and 223 deletions

View File

@@ -1,21 +1,26 @@
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
ColumnLayout
Frame
{
id: addObjectLayout
visible: false
ObjectAddOnEmployee
Layout.alignment: Qt.AlignTop
Layout.fillWidth: true
ColumnLayout
{
id: oaoemployee
}
ObjectAddOnContactPerson
{
id: oaocontactperson
}
Item
{
Layout.fillHeight: true
id: addObjectLayout
width: parent.width
ObjectAddOnEmployee
{
id: oaoemployee
}
ObjectAddOnContactPerson
{
id: oaocontactperson
}
Item
{
Layout.fillHeight: true
}
}
}