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 dividerPositions="0.45" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.uniluebeck.mi.projmi6.controller.DiagnoseController">
- <items>
- <VBox>
- <children>
- <ToolBar prefHeight="40.0" prefWidth="200.0">
- <items>
- <Button fx:id="btnDiagCreate" mnemonicParsing="false" onAction="#clickedDiagCreate" text="Neue Diagnose erstellen" />
- </items>
- </ToolBar>
- <ListView prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS" />
- </children>
- </VBox>
- <VBox>
- <children>
- <GridPane vgap="5.0">
- <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="Diagnose:" GridPane.columnIndex="0" GridPane.rowIndex="0" />
- <Label text="Diagnoseart:" GridPane.columnIndex="0" GridPane.rowIndex="1" />
- <Label text="DiagnoseArzt:" GridPane.columnIndex="0" GridPane.rowIndex="2" />
- <Label text="Freitext: (optional)" GridPane.columnIndex="0" GridPane.rowIndex="3" />
- <ComboBox fx:id="diagDiagnose" maxWidth="1.7976931348623157E308" promptText="ICD-10" GridPane.columnIndex="1" GridPane.rowIndex="0" />
- <ComboBox fx:id="diagDiagnoseArt" maxWidth="1.7976931348623157E308" GridPane.columnIndex="1" GridPane.rowIndex="1" />
- <ComboBox fx:id="diagDiagnoseArzt" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" promptText="CurrentUser is Default" GridPane.columnIndex="1" GridPane.rowIndex="2" />
- <TextArea fx:id="diagFreitext" maxWidth="1.7976931348623157E308" GridPane.columnIndex="1" GridPane.rowIndex="3" />
- </children>
- </GridPane>
- <HBox alignment="TOP_RIGHT" spacing="5.0" VBox.vgrow="ALWAYS">
- <children>
- <Button fx:id="btnDiagCancel" mnemonicParsing="false" onAction="#clickedDiagCancel" text="Storno" />
- <Button fx:id="btnDiagSave" mnemonicParsing="false" onAction="#clickedDiagSave" text="Speichern" />
- </children>
- <VBox.margin>
- <Insets />
- </VBox.margin>
- <padding>
- <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
- </padding>
- </HBox>
- <GridPane>
- <children>
- <Label styleClass="ersteller-label" text="Letzter Bearbeiter:" GridPane.rowIndex="2" />
- <Label styleClass="ersteller-label" text="Ersteller: " />
- <Label styleClass="ersteller-label" text="Erstelldatum:" GridPane.rowIndex="1" />
- <Label styleClass="ersteller-label" text="Letzte Änderung:" GridPane.rowIndex="3" />
- <Label fx:id="diagCreator" text="lorem" GridPane.columnIndex="1" />
- <Label fx:id="diagCreateTime" text="ipsum" GridPane.columnIndex="1" GridPane.rowIndex="1" />
- <Label fx:id="diagChanger" text="dolor" GridPane.columnIndex="1" GridPane.rowIndex="2" />
- <Label fx:id="diagChangeTime" text="amet" GridPane.columnIndex="1" GridPane.rowIndex="3" />
- </children>
- <columnConstraints>
- <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" />
- <ColumnConstraints hgrow="SOMETIMES" minWidth="10.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>
|