Part of a larger restructure, added MusicPlayer which is the main controller and a structure for the song queue

This commit is contained in:
Crylia
2024-03-26 12:03:41 +01:00
parent a2872f6479
commit 9023766c51
67 changed files with 1218 additions and 262 deletions

View File

@@ -0,0 +1,14 @@
#include "HomePage.h"
HomePage::HomePage(QWidget* parent)
: QFrame(parent) {
setStyleSheet(R"(
background-color: #28FF28;
border-radius: 12px;
)");
applyShadow(this);
}
HomePage::~HomePage( ) { }