48 lines
1.9 KiB
XML
48 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.*?>
|
|
<?import javafx.scene.control.Separator?>
|
|
|
|
<VBox fx:id="sidebar" spacing="20" alignment="TOP_LEFT"
|
|
prefWidth="250.0"
|
|
style="-fx-background-color: #1b2735;"
|
|
xmlns="http://javafx.com/javafx/17"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="org.to.telegramfinalproject.UI.SidebarMenuController">
|
|
|
|
<padding>
|
|
<Insets top="20" left="10" right="10" bottom="10"/>
|
|
</padding>
|
|
|
|
<!-- Profile Section -->
|
|
<VBox alignment="TOP_LEFT" spacing="10">
|
|
<padding>
|
|
<Insets top="10" left="10" bottom="0" right="0"/>
|
|
</padding>
|
|
<ImageView fx:id="profileImage" fitWidth="80" fitHeight="80" pickOnBounds="true" preserveRatio="true"/>
|
|
<Label fx:id="usernameLabel" text="Asal Lotfi" textFill="white" style="-fx-font-size: 14px; -fx-font-weight: bold;"/>
|
|
</VBox>
|
|
|
|
<Separator prefWidth="200"/>
|
|
|
|
<!-- Menu Buttons -->
|
|
<VBox spacing="8" alignment="TOP_LEFT">
|
|
<Button fx:id="btnMyProfile" text=" My Profile" styleClass="sidebar-btn"/>
|
|
<Button fx:id="btnNewGroup" text=" New Group" styleClass="sidebar-btn"/>
|
|
<Button fx:id="btnNewChannel" text=" New Channel" styleClass="sidebar-btn"/>
|
|
<Button fx:id="btnContacts" text=" Contacts" styleClass="sidebar-btn"/>
|
|
<Button fx:id="btnCalls" text=" Calls" styleClass="sidebar-btn"/>
|
|
<Button fx:id="btnSavedMessages" text=" Saved Messages" styleClass="sidebar-btn"/>
|
|
<Button fx:id="btnSettings" text=" Settings" styleClass="sidebar-btn"/>
|
|
|
|
<!-- Night Mode Toggle -->
|
|
<HBox spacing="10" alignment="CENTER_LEFT">
|
|
<Label text="Night Mode" textFill="white" style="-fx-font-size: 13px;"/>
|
|
<ToggleButton fx:id="nightModeToggle"/>
|
|
</HBox>
|
|
</VBox>
|
|
|
|
</VBox> |