Im Rahmen der Veranstaltung "CS3330 - Projektpraktikum MedizinischeInformatik" an der Universität zu Lübeck entstandenes Krankenhausinformationssystem (KIS).
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0" encoding="UTF-8"?>
-
- <?import javafx.geometry.*?>
- <?import javafx.scene.text.*?>
- <?import java.lang.*?>
- <?import javafx.scene.control.*?>
- <?import javafx.scene.layout.*?>
-
-
- <SplitPane fx:controller="de.uniluebeck.mi.projmi6.controller.StationsHistorieController" dividerPositions="0.45" xmlns="http://javafx.com/javafx/8"
- xmlns:fx="http://javafx.com/fxml/1">
- <items>
- <VBox>
- <children>
- <ToolBar prefHeight="40.0" prefWidth="200.0">
- <items>
- <Button mnemonicParsing="false" text="Neuen Aufenthalt erstellen"/>
- </items>
- </ToolBar>
- <TableView prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS">
- <columns>
- <TableColumn prefWidth="75.0" text="Abteilung"/>
- <TableColumn prefWidth="75.0" text="Station"/>
- <TableColumn prefWidth="75.0" text="Aufnahme"/>
- <TableColumn prefWidth="75.0" text="Entlassung"/>
- </columns>
- </TableView>
- </children>
- </VBox>
- <VBox>
- <children>
- <GridPane VBox.vgrow="ALWAYS">
- <columnConstraints>
- <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
- <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
- </columnConstraints>
- <rowConstraints>
- <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
- <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
- <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
- <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
- </rowConstraints>
- <children>
- <Label text="Abteilung"/>
- <Label text="Station" GridPane.rowIndex="1"/>
- <Label text="Aufnahmedatum / -Zeit" GridPane.rowIndex="2"/>
- <HBox alignment="CENTER" GridPane.columnIndex="1" GridPane.rowIndex="2">
- <children>
- <DatePicker GridPane.columnIndex="1" GridPane.rowIndex="2"/>
- <TextField prefColumnCount="10" promptText="HH:MM"/>
- <Button mnemonicParsing="false" text="Jetzt"/>
- </children>
- </HBox>
- <Label text="Entlassungsdatum/ -Zeit" GridPane.rowIndex="3"/>
- <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0" GridPane.columnIndex="1"
- GridPane.rowIndex="3">
- <children>
- <DatePicker/>
- <TextField alignment="CENTER" prefColumnCount="10" promptText="HH:MM"/>
- <Button mnemonicParsing="false" text="Jetzt"/>
- </children>
- </HBox>
- <ComboBox prefWidth="150.0" GridPane.columnIndex="1"/>
- <ComboBox prefWidth="150.0" GridPane.columnIndex="1" GridPane.rowIndex="1"/>
- </children>
- </GridPane>
- <HBox alignment="CENTER_RIGHT">
- <children>
- <Button mnemonicParsing="false" text="Speichern"/>
- <Button disable="true" mnemonicParsing="false" text="Eintrag entfernen"/>
- </children>
- </HBox>
- <GridPane>
- <children>
- <Label styleClass="ersteller-label" text="Letzter Bearbeiter:"/>
- <Label styleClass="ersteller-label" text="Ersteller: " GridPane.rowIndex="1"/>
- <Label styleClass="ersteller-label" text="Erstelldatum:" GridPane.rowIndex="2"/>
- <Label styleClass="ersteller-label" text="Letzte Änderung:" GridPane.rowIndex="3"/>
- <Label GridPane.columnIndex="1"/>
- <Label GridPane.columnIndex="1" GridPane.rowIndex="1"/>
- <Label GridPane.columnIndex="1" GridPane.rowIndex="2"/>
- <Label GridPane.columnIndex="1" GridPane.rowIndex="3"/>
- </children>
- <columnConstraints>
- <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" percentWidth="50.0"/>
- <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" percentWidth="50.0"/>
- </columnConstraints>
- <rowConstraints>
- <RowConstraints minHeight="10.0" vgrow="SOMETIMES"/>
- <RowConstraints minHeight="10.0" vgrow="SOMETIMES"/>
- <RowConstraints minHeight="10.0" vgrow="SOMETIMES"/>
- <RowConstraints minHeight="10.0" vgrow="SOMETIMES"/>
- </rowConstraints>
- </GridPane>
- </children>
- </VBox>
- </items>
- </SplitPane>
|