mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-17 11:24:56 -04:00
add missing server cells fxml file
This commit is contained in:
parent
9b9d1bf1b1
commit
429b32a2da
37
src/main/resources/layout/cells/server.fxml
Normal file
37
src/main/resources/layout/cells/server.fxml
Normal file
@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.image.ImageView?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.scene.text.Font?>
|
||||
<AnchorPane xmlns:fx="http://javafx.com/fxml/1" fx:id="root" maxHeight="-Infinity" maxWidth="500.0"
|
||||
minHeight="-Infinity" minWidth="500.0" prefWidth="500.0" xmlns="http://javafx.com/javafx/11.0.1"
|
||||
fx:controller="de.bixilon.minosoft.gui.main.ServerListCell">
|
||||
<ImageView fx:id="icon" fitHeight="100.0" fitWidth="100.0" layoutX="54.0" layoutY="108.0" pickOnBounds="true"
|
||||
preserveRatio="true" AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="5.0"
|
||||
AnchorPane.topAnchor="5.0">
|
||||
</ImageView>
|
||||
<Label fx:id="serverName" layoutX="111.0" layoutY="14.0" maxWidth="200.0" minWidth="10.0" text="Servername"
|
||||
underline="true" AnchorPane.leftAnchor="110.0" AnchorPane.topAnchor="5.0">
|
||||
<font>
|
||||
<Font size="17.0"/>
|
||||
</font>
|
||||
</Label>
|
||||
<Label fx:id="players" layoutX="408.0" layoutY="8.0" text="VERSION" AnchorPane.rightAnchor="40.0"
|
||||
AnchorPane.topAnchor="5.0"/>
|
||||
<ImageView fx:id="ping" fitHeight="24.0" fitWidth="23.0" layoutX="463.0" layoutY="18.0" pickOnBounds="true"
|
||||
preserveRatio="true" AnchorPane.rightAnchor="5.0" AnchorPane.topAnchor="5.0"/>
|
||||
<Label fx:id="motd" layoutX="104.0" layoutY="49.0" maxWidth="320.0" text="MOTD" wrapText="true"
|
||||
AnchorPane.bottomAnchor="15.0" AnchorPane.leftAnchor="105.0" AnchorPane.rightAnchor="100.0"
|
||||
AnchorPane.topAnchor="40.0"/>
|
||||
<Label fx:id="version" layoutX="350.0" layoutY="8.0" text="Connecting..." AnchorPane.rightAnchor="110.0"
|
||||
AnchorPane.topAnchor="5.0"/>
|
||||
<MenuButton id="options" layoutX="389.0" layoutY="81.0" mnemonicParsing="false" text="⋮"
|
||||
AnchorPane.bottomAnchor="0.0" AnchorPane.rightAnchor="0.0">
|
||||
<items>
|
||||
<MenuItem fx:id="optionsDelete" mnemonicParsing="false" text="Delete"/>
|
||||
<MenuItem fx:id="optionsEdit" mnemonicParsing="false" text="Edit"/>
|
||||
<MenuItem fx:id="optionsConnect" mnemonicParsing="false" text="Connect"/>
|
||||
</items>
|
||||
</MenuButton>
|
||||
</AnchorPane>
|
Loading…
x
Reference in New Issue
Block a user