Im Rahmen der Veranstaltung "CS3330 - Projektpraktikum MedizinischeInformatik" an der Universität zu Lübeck entstandenes Krankenhausinformationssystem (KIS).
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?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.*?>
-
- <VBox fx:controller="de.uniluebeck.mi.projmi6.controller.MainController" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
- <children>
- <TabPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" side="LEFT" tabClosingPolicy="UNAVAILABLE" VBox.vgrow="ALWAYS">
- <tabs>
- <Tab text="Patientenübersicht">
- <content>
- <VBox prefHeight="200.0" prefWidth="100.0">
- <children>
- <SplitPane dividerPositions="0.5" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" orientation="VERTICAL" VBox.vgrow="ALWAYS">
- <items>
- <fx:include source="patient_tables.fxml" />
- <SplitPane dividerPositions="0.2981007431874484" prefHeight="160.0" prefWidth="200.0">
- <items>
- <VBox prefHeight="200.0" prefWidth="100.0">
- <children>
- <ToolBar prefHeight="40.0" prefWidth="200.0">
- <items>
- <Button fx:id="btnFallCreate" text="Neuen _Fall erstellen" />
- </items>
- </ToolBar>
- </children>
- </VBox>
- <TabPane prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE">
- <tabs>
- <Tab text="Fallübersicht">
- <content>
- <fx:include source="fall.fxml" />
- </content>
- </Tab>
- <Tab text="Untersuchungen">
- <content>
- <fx:include source="untersuchungen.fxml" />
- </content>
- </Tab>
- <Tab text="Diagnose">
- <content>
- <fx:include source="diagnose.fxml" />
- </content>
- </Tab>
- <Tab text="Stationshistorie">
- <content>
- <fx:include source="stationshistorie.fxml" />
- </content>
- </Tab>
- </tabs>
- </TabPane>
- </items>
- </SplitPane>
- </items>
- </SplitPane>
- </children>
- </VBox>
- </content>
- </Tab>
- <Tab text="Einstellungen">
- <content>
- <fx:include source="settings.fxml" />
- </content>
- </Tab>
- <Tab text="Logs">
- <content>
- <fx:include source="log.fxml" />
- </content>
- </Tab>
- </tabs>
- </TabPane>
- <ToolBar>
- <items>
- <Label text="Mitarbeiter wählen:" />
- <ChoiceBox fx:id="cmbUserChoose" prefWidth="150.0" />
- <Pane HBox.hgrow="ALWAYS" />
- <ProgressIndicator fx:id="progressIndicator" visible="false" pickOnBounds="false" prefHeight="35.0" prefWidth="35.0" />
- </items>
- </ToolBar>
- </children>
- </VBox>
|