aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/lumina-desktop.pro
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-05-21 09:17:34 -0400
committerKen Moore <ken@pcbsd.org>2015-05-21 09:17:34 -0400
commit1f07d073bb276dfaa7442036760621912b8d200c (patch)
tree1b434cd7253d3a9d351e2df9cea68d016462d214 /lumina-desktop/lumina-desktop.pro
parentOops, forgot to include the process exit status comparison before changing th... (diff)
downloadlumina-1f07d073bb276dfaa7442036760621912b8d200c.tar.gz
lumina-1f07d073bb276dfaa7442036760621912b8d200c.tar.bz2
lumina-1f07d073bb276dfaa7442036760621912b8d200c.zip
Add a new boot splash screen to be used during the Lumina initialization phase. This is *not* a QSplashScreen, so we avoid the issues with VirtualBox/3D acceleration and it loads/updates much faster (almost no change in the startup time on my system).
Diffstat (limited to 'lumina-desktop/lumina-desktop.pro')
-rw-r--r--lumina-desktop/lumina-desktop.pro3
1 files changed, 3 insertions, 0 deletions
diff --git a/lumina-desktop/lumina-desktop.pro b/lumina-desktop/lumina-desktop.pro
index 6c3ee0cc..d0f02b65 100644
--- a/lumina-desktop/lumina-desktop.pro
+++ b/lumina-desktop/lumina-desktop.pro
@@ -35,6 +35,7 @@ SOURCES += main.cpp \
AppMenu.cpp \
SettingsMenu.cpp \
SystemWindow.cpp \
+ BootSplash.cpp \
panel-plugins/userbutton/LUserButton.cpp \
panel-plugins/userbutton/UserWidget.cpp \
panel-plugins/userbutton/UserItemWidget.cpp \
@@ -68,6 +69,7 @@ HEADERS += Globals.h \
AppMenu.h \
SettingsMenu.h \
SystemWindow.h \
+ BootSplash.h \
panel-plugins/LPPlugin.h \
panel-plugins/NewPP.h \
panel-plugins/LTBWidget.h \
@@ -100,6 +102,7 @@ HEADERS += Globals.h \
# desktop-plugins/messagecenter/MessageCenter.h
FORMS += SystemWindow.ui \
+ BootSplash.ui \
panel-plugins/userbutton/UserWidget.ui \
panel-plugins/systemdashboard/SysMenuQuick.ui \
desktop-plugins/audioplayer/PlayerWidget.ui
bgstack15