Add AddApplicant - Not Done Yet
This commit is contained in:
77
Gui/AddApplicant.qml
Normal file
77
Gui/AddApplicant.qml
Normal file
@@ -0,0 +1,77 @@
|
||||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
|
||||
ColumnLayout
|
||||
{
|
||||
anchors.fill: parent
|
||||
Label
|
||||
{
|
||||
Layout.alignment: Qt.AlignHCenter | Qt.AlignTop
|
||||
id: headline
|
||||
text: qsTr("Mitarbeiter / Bewerber hinzufügen")
|
||||
font.pixelSize: 35
|
||||
|
||||
}
|
||||
RowLayout
|
||||
{
|
||||
Layout.fillWidth: true
|
||||
ApplicantPersonalData
|
||||
{
|
||||
id: personalData
|
||||
|
||||
}
|
||||
ColumnLayout
|
||||
{
|
||||
Layout.alignment: Qt.AlignTop
|
||||
CheckBox
|
||||
{
|
||||
id: checkcontactdata
|
||||
Layout.fillWidth: true
|
||||
text: qsTr("Kontaktdaten")
|
||||
checked: false
|
||||
onCheckStateChanged:
|
||||
{
|
||||
contactData.visible = checked
|
||||
}
|
||||
}
|
||||
ApplicantContactData
|
||||
{
|
||||
id: contactData
|
||||
visible: false
|
||||
}
|
||||
CheckBox
|
||||
{
|
||||
id: checkbankdata
|
||||
Layout.fillWidth: true
|
||||
text: qsTr("Bankdaten")
|
||||
checked: false
|
||||
onCheckStateChanged:
|
||||
{
|
||||
bankData.visible = checked
|
||||
}
|
||||
}
|
||||
ApplicantBankData
|
||||
{
|
||||
id: bankData
|
||||
visible: false
|
||||
}
|
||||
ApplicantNationality
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Item
|
||||
{
|
||||
Layout.fillHeight: true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user