aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/lumina-fm.pro
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-08-17 16:00:00 -0400
committerKen Moore <moorekou@gmail.com>2015-08-17 16:00:00 -0400
commitf809e720d7bf5c2b314c705ad5600776afcf6659 (patch)
tree3a85e35b1e7f670a2a1c53cf017800dcc3a7aec6 /lumina-fm/lumina-fm.pro
parentTouch up the new Grey-Dark color scheme a bit - now the highlight/accent colo... (diff)
downloadlumina-f809e720d7bf5c2b314c705ad5600776afcf6659.tar.gz
lumina-f809e720d7bf5c2b314c705ad5600776afcf6659.tar.bz2
lumina-f809e720d7bf5c2b314c705ad5600776afcf6659.zip
Convert the multimedia player and slideshow viewer into separate classes/widgets for lumina-fm, and add the new UI for the directory browser as well (no .h/.cpp source files filled out yet for it yet though).
These new widgets/classes are tied into the build for compilation purposes, but they are not actually used in the app yet.
Diffstat (limited to 'lumina-fm/lumina-fm.pro')
-rw-r--r--lumina-fm/lumina-fm.pro12
1 files changed, 9 insertions, 3 deletions
diff --git a/lumina-fm/lumina-fm.pro b/lumina-fm/lumina-fm.pro
index 42f1494e..192f96c7 100644
--- a/lumina-fm/lumina-fm.pro
+++ b/lumina-fm/lumina-fm.pro
@@ -18,7 +18,9 @@ SOURCES += main.cpp \
MainUI.cpp \
FODialog.cpp \
BMMDialog.cpp \
- BackgroundWorker.cpp
+ BackgroundWorker.cpp \
+ widgets/MultimediaWidget.cpp \
+ widgets/SlideshowWidget.cpp
HEADERS += MainUI.h \
FODialog.h \
@@ -26,11 +28,15 @@ HEADERS += MainUI.h \
MimeIconProvider.h \
BackgroundWorker.h \
DDFileSystemModel.h \
- DirData.h
+ DirData.h \
+ widgets/MultimediaWidget.h \
+ widgets/SlideshowWidget.h
FORMS += MainUI.ui \
FODialog.ui \
- BMMDialog.ui
+ BMMDialog.ui \
+ widgets/MultimediaWidget.ui \
+ widgets/SlideshowWidget.ui
# RESOURCES+= lumina-fm.qrc
bgstack15