2024-09-20 15:24:02 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
|
|
<?import javafx.scene.control.SplitPane?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
2024-09-25 21:42:14 +00:00
|
|
|
<BorderPane xmlns="http://javafx.com/javafx/23" xmlns:fx="http://javafx.com/fxml/1"
|
2024-09-20 15:24:02 +00:00
|
|
|
fx:controller="com.marvinelsen.willow.ui.controllers.MainController"
|
|
|
|
stylesheets="/css/main.css">
|
|
|
|
<top>
|
|
|
|
<fx:include source="/fxml/menu.fxml"/>
|
|
|
|
</top>
|
|
|
|
<center>
|
|
|
|
<VBox spacing="8.0" BorderPane.alignment="CENTER">
|
|
|
|
<BorderPane.margin>
|
|
|
|
<Insets bottom="8.0" left="8.0" right="8.0" top="8.0"/>
|
|
|
|
</BorderPane.margin>
|
|
|
|
<fx:include source="/fxml/search.fxml"/>
|
|
|
|
<SplitPane dividerPositions="0.33" VBox.vgrow="ALWAYS">
|
2024-09-28 14:18:25 +00:00
|
|
|
<fx:include source="/fxml/search-results.fxml"/>
|
2024-09-20 15:24:02 +00:00
|
|
|
<fx:include source="/fxml/details.fxml"/>
|
|
|
|
</SplitPane>
|
|
|
|
</VBox>
|
|
|
|
</center>
|
2024-09-26 07:18:40 +00:00
|
|
|
</BorderPane>
|