Im Rahmen der Veranstaltung "CS3330 - Projektpraktikum MedizinischeInformatik" an der Universität zu Lübeck entstandenes Krankenhausinformationssystem (KIS).
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

85 rindas
4.9 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. <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">
  8. <children>
  9. <TabPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" side="LEFT" tabClosingPolicy="UNAVAILABLE" VBox.vgrow="ALWAYS">
  10. <tabs>
  11. <Tab text="Patientenübersicht">
  12. <content>
  13. <VBox prefHeight="200.0" prefWidth="100.0">
  14. <children>
  15. <SplitPane dividerPositions="0.5" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" orientation="VERTICAL" VBox.vgrow="ALWAYS">
  16. <items>
  17. <fx:include source="patient_tables.fxml" />
  18. <SplitPane dividerPositions="0.2981007431874484" prefHeight="160.0" prefWidth="200.0">
  19. <items>
  20. <VBox prefHeight="200.0" prefWidth="100.0">
  21. <children>
  22. <ToolBar prefHeight="40.0" prefWidth="200.0">
  23. <items>
  24. <Button fx:id="btnFallCreate" text="Neuen _Fall erstellen" />
  25. </items>
  26. </ToolBar>
  27. </children>
  28. </VBox>
  29. <TabPane prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE">
  30. <tabs>
  31. <Tab text="Fallübersicht">
  32. <content>
  33. <fx:include source="fall.fxml" />
  34. </content>
  35. </Tab>
  36. <Tab text="Untersuchungen">
  37. <content>
  38. <fx:include source="untersuchungen.fxml" />
  39. </content>
  40. </Tab>
  41. <Tab text="Diagnose">
  42. <content>
  43. <fx:include source="diagnose.fxml" />
  44. </content>
  45. </Tab>
  46. <Tab text="Stationshistorie">
  47. <content>
  48. <fx:include source="stationshistorie.fxml" />
  49. </content>
  50. </Tab>
  51. </tabs>
  52. </TabPane>
  53. </items>
  54. </SplitPane>
  55. </items>
  56. </SplitPane>
  57. </children>
  58. </VBox>
  59. </content>
  60. </Tab>
  61. <Tab text="Einstellungen">
  62. <content>
  63. <fx:include source="settings.fxml" />
  64. </content>
  65. </Tab>
  66. <Tab text="Logs">
  67. <content>
  68. <fx:include source="log.fxml" />
  69. </content>
  70. </Tab>
  71. </tabs>
  72. </TabPane>
  73. <ToolBar>
  74. <items>
  75. <Label text="Mitarbeiter wählen:" />
  76. <ChoiceBox fx:id="cmbUserChoose" prefWidth="150.0" />
  77. <Pane HBox.hgrow="ALWAYS" />
  78. <ProgressIndicator fx:id="progressIndicator" visible="false" pickOnBounds="false" prefHeight="35.0" prefWidth="35.0" />
  79. </items>
  80. </ToolBar>
  81. </children>
  82. </VBox>