Reorganize file structure. Window names are now more clear and components are sorted by window use

This commit is contained in:
2025-11-20 01:55:14 -07:00
parent 7494e5095d
commit e709f8978c
147 changed files with 451 additions and 244 deletions

View File

@@ -11,36 +11,36 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
# ---------------------------------------------------- # ----------------------------------------------------
SOURCES += \ SOURCES += \
src/components/albumTile/albumtile.cpp \
src/components/spinningAlbumArt/spinningalbumart.cpp \
src/components/timePlayedWidget/timePlayedWidget.cpp \
src/components/tracklistWidget/tracklistwidget.cpp \
src/main.cpp \ src/main.cpp \
src/windows/musicSelector/musicSelector.cpp \ src/windows/albumSelector/albumSelector.cpp \
src/windows/playerWindow/playerWindow.cpp \ src/windows/nowPlaying/nowPlaying.cpp \
src/layout/flowLayout/flowLayout.cpp src/layout/flowLayout/flowLayout.cpp \
src/components/albumSelector/albumTile/albumtile.cpp \
src/components/nowPlaying/spinningAlbumArt/spinningalbumart.cpp \
src/components/nowPlaying/timePlayedWidget/timePlayedWidget.cpp \
src/components/nowPlaying/tracklistWidget/tracklistwidget.cpp
# ---------------------------------------------------- # ----------------------------------------------------
# Headers # Headers
# ---------------------------------------------------- # ----------------------------------------------------
HEADERS += \ HEADERS += \
src/components/albumTile/albumtile.h \ src/windows/albumSelector/albumSelector.h \
src/components/spinningAlbumArt/spinningalbumart.h \ src/windows/nowPlaying/nowPlaying.h \
src/components/timePlayedWidget/timePlayedWidget.h \ src/layout/flowLayout/flowLayout.h \
src/components/tracklistWidget/tracklistwidget.h \
src/data/cleanerScripts.h \ src/data/cleanerScripts.h \
src/windows/musicSelector/musicSelector.h \
src/windows/playerWindow/playerWindow.h \
src/data/albumInformation.h \ src/data/albumInformation.h \
src/layout/flowLayout/flowLayout.h src/components/albumSelector/albumTile/albumtile.h \
src/components/nowPlaying/spinningAlbumArt/spinningalbumart.h \
src/components/nowPlaying/timePlayedWidget/timePlayedWidget.h \
src/components/nowPlaying/tracklistWidget/tracklistwidget.h
# ---------------------------------------------------- # ----------------------------------------------------
# UI Forms # UI Forms
# ---------------------------------------------------- # ----------------------------------------------------
FORMS += \ FORMS += \
src/windows/musicSelector/musicSelector.ui src/windows/albumSelector/albumSelector.ui
# ---------------------------------------------------- # ----------------------------------------------------
# Deployment # Deployment

Some files were not shown because too many files have changed in this diff Show More