summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/main.cpp
authorllornkcor <llornkcor>2004-10-13 10:07:38 (UTC)
committer llornkcor <llornkcor>2004-10-13 10:07:38 (UTC)
commitc931e96eb4bf7df64bca49c2343f2203bac637ba (patch) (side-by-side diff)
tree959046acd9c989be2375df040f32ad0c83599b28 /core/multimedia/opieplayer/main.cpp
parent8289f6700e239ddf5242216c09cca9d724c17754 (diff)
downloadopie-c931e96eb4bf7df64bca49c2343f2203bac637ba.zip
opie-c931e96eb4bf7df64bca49c2343f2203bac637ba.tar.gz
opie-c931e96eb4bf7df64bca49c2343f2203bac637ba.tar.bz2
exit if no skin is found
Diffstat (limited to 'core/multimedia/opieplayer/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/main.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/main.cpp b/core/multimedia/opieplayer/main.cpp
index 32dc1d5..4a7ac52 100644
--- a/core/multimedia/opieplayer/main.cpp
+++ b/core/multimedia/opieplayer/main.cpp
@@ -14,12 +14,15 @@
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
+#include <qmessagebox.h>
+
+
#include "mediaplayerstate.h"
#include "playlistwidget.h"
#include "audiowidget.h"
#include "videowidget.h"
#include "loopcontrol.h"
#include "mediaplayer.h"
@@ -31,25 +34,31 @@ VideoWidget *videoUI;
LoopControl *loopControl;
int main(int argc, char **argv) {
QPEApplication a(argc,argv);
+ if(!QDir(QString(getenv("OPIEDIR")) +"/pics/opieplayer2/skins/").exists()) {
+ QMessageBox::critical( 0, "Opieplayer Error", "<p>opieplayer2 skin not found. Please install an opieplayer2 skin.</p>" );
+
+ return -1;
+ }
+
MediaPlayerState st( 0, "mediaPlayerState" );
mediaPlayerState = &st;
PlayListWidget pl( 0, "playList" );
playList = &pl;
AudioWidget aw( 0, "audioUI" );
audioUI = &aw;
VideoWidget vw( 0, "videoUI" );
videoUI = &vw;
LoopControl lc( 0, "loopControl" );
+// qDebug("loop control created");
loopControl = &lc;
MediaPlayer mp( 0, "mediaPlayer" );
-
+// qDebug("mediaplayer created");
// pl.setCaption( MediaPlayer::tr("OpiePlayer") );
a.showMainDocumentWidget(&pl);
-
return a.exec();
}