صفحه اصلی بدون اعمال پلی لیست

This commit is contained in:
2026-05-28 14:54:11 +03:30
parent fa5f8ab267
commit dc60e5954f
12 changed files with 393 additions and 7 deletions
+5 -2
View File
@@ -2,7 +2,10 @@ package sbu.javafx;
import javafx.application.Application;
public class Launcher{
public class Launcher {
public static void main(String[] args) {
// TODO: Launch the JavaFX application by calling Application.launch(Main.class) }
// TODO: Launch the JavaFX application by calling Application.launch(Main.class)
Application.launch(Main.class);
}
}
+39
View File
@@ -0,0 +1,39 @@
package sbu.javafx;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
FXMLLoader loader = new FXMLLoader(getClass().getResource("/sbu/javafx/App-view.fxml"));
Parent root = loader.load();
MusicController controller = loader.getController();
controller.musicsListView.getItems().addAll(
new Song("Blinding Lights", "The Weeknd"),
new Song("Flowers", "Miley Cyrus"),
new Song("As It Was", "Harry Styles")
);
controller.setupListView(controller.musicsListView);
Scene scene = new Scene(root, 600, 500);
scene.getStylesheets().add(
getClass().getResource("/css/light.css").toExternalForm()
);
primaryStage.setTitle("Music Player");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
+161 -2
View File
@@ -2,30 +2,189 @@ package sbu.javafx;
import javafx.fxml.FXML;
import javafx.event.ActionEvent;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.input.MouseEvent;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.*;
import javafx.scene.Scene;
import javafx.scene.layout.VBox;
public class MusicController {
@FXML
public ListView<Song> playlistListView;
@FXML
public ListView<Song> musicsListView;
@FXML
private VBox root;
@FXML
Label nowPlayingLabel;
@FXML
Button playPauseBtn;
@FXML
Button openPlaylistBtn;
@FXML
Button themeToggleBtn;
private boolean isDarkMode=true;
private boolean isPlaying=false;
private Song currentSong = null;
ImageView playIcon;
ImageView pauseIcon;
// TODO: Define your UI components using the @FXML annotation.
@FXML
public void initialize() {
Image playImg = new Image(getClass().getResourceAsStream("/image/play.png"));
Image pauseImg = new Image(getClass().getResourceAsStream("/image/pause.png"));
playIcon = new ImageView(playImg);
pauseIcon = new ImageView(pauseImg);
playIcon.setFitWidth(35);
playIcon.setFitHeight(35);
pauseIcon.setFitWidth(35);
pauseIcon.setFitHeight(35);
playPauseBtn.setGraphic(playIcon);
}
public void setupListView(ListView<Song> listView) {
listView.setCellFactory(param -> new ListCell<Song>() {
@Override
protected void updateItem(Song song, boolean empty) {
super.updateItem(song, empty);
if (empty || song == null) {
setText(null);
setGraphic(null);
return;
}
Label nameLabel = new Label(song.getName());
nameLabel.setStyle("-fx-font-weight: bold; -fx-font-size: 14px;");
Label singerLabel = new Label(song.getSinger());
singerLabel.setStyle("-fx-text-fill: gray; -fx-font-size: 12px;");
VBox songInfo = new VBox(3);
songInfo.setAlignment(Pos.CENTER_LEFT);
songInfo.getChildren().addAll(nameLabel, singerLabel);
Button addToPlaylistBtn = new Button("Add to playlist");
addToPlaylistBtn.getStyleClass().add("playlist-button");
addToPlaylistBtn.setOnAction(e -> {
addToPlaylist(e, song);
});
Button playBtn = new Button("Play");
playBtn.getStyleClass().add("play-button");
playBtn.setOnAction(e -> {
play(e, song);
});
HBox row = new HBox(10);
row.setPadding(new Insets(10));
row.setAlignment(Pos.CENTER_LEFT);
Region spacer = new Region();
HBox.setHgrow(spacer, Priority.ALWAYS);
row.getChildren().addAll(songInfo, spacer, playBtn, addToPlaylistBtn);
setGraphic(row);
}
});
}
@FXML
public void toggleTheme(ActionEvent event) {
if (isDarkMode) {
themeToggleBtn.setText("Light");
changeTheme();
isDarkMode = false;
} else {
themeToggleBtn.setText("Dark");
changeTheme();
isDarkMode = true;
}
}
public void changeTheme(){
Scene scene = root.getScene();
scene.getStylesheets().clear();
if(isDarkMode){
scene.getStylesheets().add(
getClass().getResource("/css/dark.css").toExternalForm()
);
}else{
scene.getStylesheets().add(
getClass().getResource("/css/light.css").toExternalForm()
);
}
isDarkMode=!isDarkMode;
}
//TODO: Implement the logic to play a song. This method should update the UI to show which song is currently playing.
@FXML
public void handlePlayAction() {
//Update labels, change button icons, etc.
}
public void play(ActionEvent event, Song song){
currentSong=song;
nowPlayingLabel.setText(song.getName());
if (!isPlaying)
playPause(event);
//کد پخش
}
@FXML
public void playPause(ActionEvent a){
if(isPlaying){
playPauseBtn.setGraphic(playIcon);
isPlaying=false;
//کد توقف اینجاست چون برای هر توقفی دکمه ی پاز رو میزنیم ولی برای پلی ممکنه از بین آهنگ ها بزنیم
}
else{
playPauseBtn.setGraphic(pauseIcon);
isPlaying=true;
}
}
//TODO: Logic to add a specific song to the user's playlist.
public void addToPlaylist(String songName) {
public void addToPlaylist(ActionEvent event, Song song) {
//Add the song to a list or update a ListView.
playlistListView.getItems().add(song);
}
// TODO:This method should open a new window or change the current scene to display the "Playlist" page.
public void openPlaylistWindow() {
//Create a new stage and show the playlist UI.
musicsListView.setVisible(false);
if(playlistListView!=null)
playlistListView.setVisible(true);
else
throw new RuntimeException("Playlist is empty");
}
}
+18
View File
@@ -0,0 +1,18 @@
package sbu.javafx;
public class Song {
private String name;
private String singer;
public Song(String name, String singer)
{
this.name=name;
this.singer=singer;
}
public String getName() {
return name;
}
public String getSinger() {
return singer;
}
}
+47
View File
@@ -0,0 +1,47 @@
.root{
-fx-background-color: #0f172a;
}
.label{
-fx-text-fill: #f8fafc;
}
.button{
-fx-background-color: #334155;;
-fx-text-fill: white;
-fx-background-radius: 14px;
-fx-cursor: hand;
}
.button:hover{
-fx-background-color: #475569;
}
.list-view{
-fx-background-color: #111827;
-fx-control-inner-background: #111827;
-fx-background-radius: 16px;
}
.list-cell{
-fx-background-color: transparent;
-fx-text-fill: white;
}
.list-cell:selected{
-fx-background-color: #2563eb;
}
.button.circle-button{
-fx-background-color: #dbeafe;
-fx-background-radius: 100em;
-fx-background-insets: 0;
-fx-padding: 0;
-fx-pref-width: 34px;
-fx-pref-height: 34px;
}
+46
View File
@@ -0,0 +1,46 @@
.root{
-fx-background-color: #f8fafc;
}
.label{
-fx-text-fill: #1e293b;
}
.button{
-fx-background-color: #dbeafe;
-fx-text-fill: #1e3a8a;
-fx-background-radius: 14px;
-fx-cursor: hand;
}
.button:hover{
-fx-background-color: #bfdbfe;
}
.list-view{
-fx-background-color: #ffffff;
-fx-control-inner-background: #ffffff;
-fx-background-radius: 16px;
}
.list-cell{
-fx-background-color: transparent;
}
.list-cell:selected {
-fx-background-color: #93c5fd;
}
.button.circle-button{
-fx-background-color: #dbeafe;
-fx-background-radius: 100em;
-fx-background-insets: 0;
-fx-padding: 0;
-fx-pref-width: 35px;
-fx-pref-height: 35px;
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

+71 -3
View File
@@ -1,8 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.VBox?>
<VBox xmlns="http://javafx.com/fxml" alignment="CENTER" spacing="10">
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<!-- TODO: Add your code here! -->
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.image.Image?>
<VBox fx:id="root" spacing="10" xmlns="http://javafx.com/javafx/17.0.12" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sbu.javafx.MusicController">
<padding>
<Insets bottom="10" left="10" right="10" top="10" />
</padding>
<!-- دکمه تغییر تم -->
<HBox alignment="CENTER_LEFT" spacing="10">
<Button fx:id="themeToggleBtn" text=" Dark" onAction="#toggleTheme"
style="-fx-background-color: #555; -fx-text-fill: white; -fx-background-radius: 10px; -fx-padding: 5 10;" />
<Region HBox.hgrow="ALWAYS" /> <!-- این فضا رو پر میکنه تا دکمه سمت چپ بمونه -->
</HBox>
<!--آهنگ های موجود -->
<ListView fx:id="musicsListView" prefHeight="400" />
<!-- آهنگ های پلی لیست-->
<ListView fx:id="playlistListView" prefHeight="400" />
<!-- باکس آهنگ در حال پخش -->
<VBox alignment="CENTER" spacing="10">
<!-- اسم آهنگ در حال پخش -->
<Label fx:id="nowPlayingLabel" style="-fx-font-weight: bold; -fx-font-size: 14px;" text="No song playing" />
<!-- دکمه‌های جلو عقب -->
<HBox alignment="CENTER" spacing="20">
<Button fx:id="prevButton"
styleClass="circle-button">
<graphic>
<ImageView fitWidth="35" fitHeight="35">
<Image url="/image/rewind.png" />
</ImageView>
</graphic>
</Button>
<Button fx:id="playPauseBtn"
onAction="#playPause"
styleClass="circle-button">
<graphic>
<ImageView fitWidth="35" fitHeight="35">
<Image url="/image/pause.png" />
</ImageView>
</graphic>
</Button>
<Button fx:id="nextButton"
styleClass="circle-button">
<graphic>
<ImageView fitWidth="35" fitHeight="35">
<Image url="/image/forward.png" />
</ImageView>
</graphic>
</Button>
<Button fx:id="openPlaylistBtn"
text="Playlist"
style="-fx-background-radius: 15px;" />
</HBox>
</VBox>
</VBox>