55 lines
2.1 KiB
XML
55 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.control.Separator?>
|
|
<VBox xmlns="http://javafx.com/fxml" xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="sbu.javafx.MusicController" alignment="CENTER"
|
|
spacing="10" style="-fx-font-size: 20px;">
|
|
|
|
<Label text="Music player"/>
|
|
|
|
<HBox spacing="25" alignment="CENTER" >
|
|
<Label text="Song Title" prefWidth="150"/>
|
|
<Label text="Artist Name" prefWidth="150"/>
|
|
<Label text="Duration" prefWidth="150"/>
|
|
<Label text="Add to Playlist" prefWidth="180"/>
|
|
<Label text="Play" prefWidth="100"/>
|
|
</HBox>
|
|
|
|
<Separator/>
|
|
|
|
<HBox spacing="25" alignment="CENTER" >
|
|
<Label text="Song of Dawn" prefWidth="150"/>
|
|
<Label text="Alice Johnson" prefWidth="150"/>
|
|
<Label text="03:45" prefWidth="150"/>
|
|
<Button fx:id="addM1" text="Add to Playlist" prefWidth="180" onAction="#handleAddToPlaylist"/>
|
|
<Button fx:id="playM1" text="Play" prefWidth="100" onAction="#handlePlayAction"/>
|
|
</HBox>
|
|
|
|
<HBox spacing="25" alignment="CENTER" >
|
|
<Label text="Midnight Drive" prefWidth="150"/>
|
|
<Label text="The Night Owls" prefWidth="150"/>
|
|
<Label text="04:12" prefWidth="150"/>
|
|
<Button fx:id="addM2" text="Add to Playlist" prefWidth="180" onAction="#handleAddToPlaylist"/>
|
|
<Button fx:id="playM2" text="Play" prefWidth="100" onAction="#handlePlayAction"/>
|
|
</HBox>
|
|
|
|
<HBox spacing="25" alignment="CENTER" >
|
|
<Label text="Echoes of You" prefWidth="150"/>
|
|
<Label text="Luna Sky" prefWidth="150"/>
|
|
<Label text="05:08" prefWidth="150"/>
|
|
<Button fx:id="addM3" text="Add to Playlist" prefWidth="180" onAction="#handleAddToPlaylist"/>
|
|
<Button fx:id="playM3" text="Play" prefWidth="100" onAction="#handlePlayAction"/>
|
|
</HBox>
|
|
|
|
<Label fx:id="nowPlayingLabel" text="Now Playing"/>
|
|
|
|
<Button text="Play list" onAction="#openPlaylistWindow"/>
|
|
<!-- TODO: Add your code here! -->
|
|
|
|
|
|
</VBox>
|