32 lines
891 B
XML
32 lines
891 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<?import javafx.scene.control.skin.TabPaneSkin.TabContentRegion?>
|
|
<VBox xmlns="http://javafx.com/javafx/21"
|
|
xmlns:fx="http://javafx.com/fxml/1"
|
|
fx:id="chatBox"
|
|
VBox.vgrow="ALWAYS"
|
|
stylesheets="@chatui.css"
|
|
styleClass="chat-box"
|
|
spacing="20"
|
|
maxWidth="Infinity">
|
|
|
|
<HBox spacing="10"
|
|
fx:id="menuBox">
|
|
|
|
<Label text="CHAT" styleClass="chat-header" alignment="CENTER" maxWidth="Infinity"/>
|
|
<Region HBox.hgrow="ALWAYS"/>
|
|
<MenuButton fx:id="addWhisperChatButton" styleClass="menu-button" text="WHISPER"
|
|
alignment="CENTER_RIGHT">
|
|
</MenuButton>
|
|
</HBox>
|
|
|
|
<TabPane fx:id="chatTabPane"
|
|
VBox.vgrow="ALWAYS"
|
|
styleClass="tab-pane">
|
|
|
|
</TabPane>
|
|
|
|
</VBox> |