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.

90 line
5.3 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.geometry.*?>
  3. <?import javafx.scene.text.*?>
  4. <?import java.lang.*?>
  5. <?import javafx.scene.control.*?>
  6. <?import javafx.scene.layout.*?>
  7. <?import java.net.URL?>
  8. <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">
  9. <children>
  10. <TabPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" side="LEFT" tabClosingPolicy="UNAVAILABLE" VBox.vgrow="ALWAYS">
  11. <tabs>
  12. <Tab text="Patientenübersicht">
  13. <content>
  14. <VBox prefHeight="200.0" prefWidth="100.0">
  15. <children>
  16. <SplitPane dividerPositions="0.5" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" orientation="VERTICAL" VBox.vgrow="ALWAYS">
  17. <items>
  18. <fx:include source="patient_tables.fxml" />
  19. <SplitPane dividerPositions="0.2981007431874484" prefHeight="160.0" prefWidth="200.0" fx:id="fallOverview">
  20. <items>
  21. <VBox prefHeight="200.0" prefWidth="100.0">
  22. <children>
  23. <ToolBar prefHeight="40.0" prefWidth="200.0">
  24. <items>
  25. <Button fx:id="btnFallCreate" text="Neuen _Fall erstellen" onAction="#clickedCreateFall"/>
  26. </items>
  27. </ToolBar>
  28. <ListView VBox.vgrow="ALWAYS" fx:id="lvFall" />
  29. </children>
  30. </VBox>
  31. <TabPane fx:id="tabPaneFall" prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE">
  32. <tabs>
  33. <Tab fx:id="tabFallOverview" text="Fallübersicht">
  34. <content>
  35. <fx:include source="fall.fxml" />
  36. </content>
  37. </Tab>
  38. <Tab fx:id="tabFallUntersuchungen" text="Untersuchungen">
  39. <content>
  40. <fx:include source="untersuchungen.fxml" />
  41. </content>
  42. </Tab>
  43. <Tab fx:id="tabFallDiagnose" text="Diagnose">
  44. <content>
  45. <fx:include source="diagnose.fxml" />
  46. </content>
  47. </Tab>
  48. <Tab fx:id="tabFallStationsHistorie" text="Stationshistorie">
  49. <content>
  50. <fx:include source="stationshistorie.fxml" />
  51. </content>
  52. </Tab>
  53. </tabs>
  54. </TabPane>
  55. </items>
  56. </SplitPane>
  57. </items>
  58. </SplitPane>
  59. </children>
  60. </VBox>
  61. </content>
  62. </Tab>
  63. <Tab text="Einstellungen">
  64. <content>
  65. <fx:include source="settings.fxml" />
  66. </content>
  67. </Tab>
  68. <Tab text="Logs">
  69. <content>
  70. <fx:include source="log.fxml" />
  71. </content>
  72. </Tab>
  73. </tabs>
  74. </TabPane>
  75. <ToolBar>
  76. <items>
  77. <Label text="Mitarbeiter wählen:" />
  78. <ChoiceBox fx:id="cmbUserChoose" prefWidth="150.0" />
  79. <Pane HBox.hgrow="ALWAYS" />
  80. <ProgressIndicator fx:id="progressIndicator" visible="false" pickOnBounds="false" prefHeight="35.0" prefWidth="35.0" />
  81. </items>
  82. </ToolBar>
  83. </children>
  84. <stylesheets>
  85. <URL value="@style.css" />
  86. </stylesheets>
  87. </VBox>