aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/fxml/manageEmployees.fxml
blob: 05e729d5a1ac9b78a8e18e23db63b894c928e87f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Hyperlink?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane
  fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.ManageEmployeesController"
  fx:id="listEmployeesAP"
  prefHeight="536.0"
  prefWidth="702.0"
  stylesheets="@/styles/main.css"
  visible="false"
  styleClass="bg-gray-orange"
  xmlns="http://javafx.com/javafx/9.0.1"
  xmlns:fx="http://javafx.com/fxml/1">
  <children>
    <AnchorPane prefHeight="120.0"
      styleClass="bg-dark-orange"
      AnchorPane.leftAnchor="0.0"
      AnchorPane.rightAnchor="0.0"
      AnchorPane.topAnchor="0.0">
      <children>
        <Label
          text="Personen"
          AnchorPane.leftAnchor="25.0"
          AnchorPane.topAnchor="20.0"
          styleClass="text-bold, text-big, text-white">
        </Label>
        <Hyperlink
          onAction="#backToMain"
          text="Zurück"
          AnchorPane.rightAnchor="25.0"
          AnchorPane.topAnchor="30.0"
          styleClass="text-medium, text-white">
        </Hyperlink>
      </children>
    </AnchorPane>
    <AnchorPane
      AnchorPane.bottomAnchor="0.0"
      AnchorPane.leftAnchor="20.0"
      AnchorPane.rightAnchor="20.0"
      AnchorPane.topAnchor="60.0">
      <children>
        <ScrollPane
          fitToHeight="true"
          fitToWidth="true"
          hbarPolicy="NEVER"
          vbarPolicy="NEVER"
          AnchorPane.bottomAnchor="0.0"
          AnchorPane.leftAnchor="0.0"
          AnchorPane.rightAnchor="0.0"
          AnchorPane.topAnchor="80.0">
          <content>
            <fx:include
              fx:id="employeeList"
              source="employeeList.fxml"/>
          </content>
        </ScrollPane>
        <AnchorPane
          fx:id="containerHeader"
          minHeight="80.0"
          styleClass="shadowed"
          AnchorPane.leftAnchor="5.0"
          AnchorPane.rightAnchor="5.0"
          AnchorPane.topAnchor="0.0"/>
      </children>
    </AnchorPane>
  </children>
</AnchorPane>