mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-27 10:50:50 +01:00
40 lines
1.6 KiB
XML
40 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Tab?>
|
|
<?import javafx.scene.control.TabPane?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
|
|
<!--maxHeight="19.0" minHeight="19.0"-->
|
|
|
|
<VBox xmlns="http://javafx.com/javafx/8.0.112" xmlns:fx="http://javafx.com/fxml/1" fx:controller="main.ui.GEarthController">
|
|
<Pane fx:id="mover" maxHeight="0.0" minHeight="0.0" prefWidth="200.0" />
|
|
<TabPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" prefHeight="295.0" prefWidth="565.0" tabClosingPolicy="UNAVAILABLE">
|
|
<tabs>
|
|
<Tab text="Connection">
|
|
<content>
|
|
<fx:include fx:id="connection" source="connection/Connection.fxml" />
|
|
</content>
|
|
</Tab>
|
|
<Tab text="Logger">
|
|
<content>
|
|
<fx:include fx:id="logger" source="logger/Logger.fxml" />
|
|
</content></Tab>
|
|
<Tab text="Injection">
|
|
<content>
|
|
<fx:include fx:id="injection" source="injection/Injection.fxml" />
|
|
</content></Tab>
|
|
<Tab text="Tools">
|
|
<content>
|
|
<fx:include fx:id="tools" source="tools/Tools.fxml" />
|
|
</content>
|
|
</Tab>
|
|
<Tab disable="true" text="Scheduler" />
|
|
<Tab disable="true" text="Settings" />
|
|
<Tab disable="true" text="Extensions" />
|
|
<Tab disable="true" text="Info" />
|
|
</tabs>
|
|
</TabPane>
|
|
|
|
</VBox>
|