-rw-r--r-- | core/multimedia/opieplayer/main.cpp | 13 |
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 @@ -18,4 +18,7 @@ ** **********************************************************************/ +#include <qmessagebox.h> + + #include "mediaplayerstate.h" #include "playlistwidget.h" @@ -35,4 +38,10 @@ 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; @@ -44,10 +53,10 @@ int main(int argc, char **argv) { 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(); } |