summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediaplayer.cpp
authorllornkcor <llornkcor>2002-08-20 02:12:07 (UTC)
committer llornkcor <llornkcor>2002-08-20 02:12:07 (UTC)
commit16b105a34b4e525cf6690e55beacf4baa57e60d7 (patch) (side-by-side diff)
tree8e3713e7483e11bbbe5ff7133bf505ca266a49e0 /noncore/multimedia/opieplayer2/mediaplayer.cpp
parent0d336f310b310ba18af70185eed58be6e07c26d8 (diff)
downloadopie-16b105a34b4e525cf6690e55beacf4baa57e60d7.zip
opie-16b105a34b4e525cf6690e55beacf4baa57e60d7.tar.gz
opie-16b105a34b4e525cf6690e55beacf4baa57e60d7.tar.bz2
added 'initialzing' message to caption, until after xine is initialized
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediaplayer.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayer.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayer.cpp b/noncore/multimedia/opieplayer2/mediaplayer.cpp
index 0f8242b..6a48b82 100644
--- a/noncore/multimedia/opieplayer2/mediaplayer.cpp
+++ b/noncore/multimedia/opieplayer2/mediaplayer.cpp
@@ -34,6 +34,8 @@ extern MediaPlayerState *mediaPlayerState;
MediaPlayer::MediaPlayer( QObject *parent, const char *name )
: QObject( parent, name ), volumeDirection( 0 ), currentFile( NULL ) {
+ playList->setCaption(tr("OpiePlayer: Initializating"));
+
qApp->processEvents();
// QPEApplication::grabKeyboard(); // EVIL
connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) );
@@ -58,6 +60,7 @@ MediaPlayer::MediaPlayer( QObject *parent, const char *name )
volControl = new VolumeControl;
xineControl = new XineControl();
+ playList->setCaption(tr("OpiePlayer"));
}
MediaPlayer::~MediaPlayer() {
@@ -263,7 +266,7 @@ void MediaPlayer::blank( bool b ) {
}
close( fd );
} else {
- qDebug("<< /dev/fb0 could not be opend >>");
+ qDebug("<< /dev/fb0 could not be opened >>");
}
}
@@ -289,7 +292,8 @@ void MediaPlayer::keyReleaseEvent( QKeyEvent *e) {
}
}
-void MediaPlayer::cleanUp() {
+void MediaPlayer::cleanUp() {// this happens on closing
+
// QPEApplication::grabKeyboard();
// QPEApplication::ungrabKeyboard();
}