summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2002-10-17 02:45:43 (UTC)
committer llornkcor <llornkcor>2002-10-17 02:45:43 (UTC)
commitce65a2b92c8d647b0621120358bde62f7a893129 (patch) (side-by-side diff)
tree819bc79171edb15aff5e0da7224110f0b5928906 /noncore
parent4f2dc0f59515dd456dbe7b32eeda835ea231fca9 (diff)
downloadopie-ce65a2b92c8d647b0621120358bde62f7a893129.zip
opie-ce65a2b92c8d647b0621120358bde62f7a893129.tar.gz
opie-ce65a2b92c8d647b0621120358bde62f7a893129.tar.bz2
zaurus screenblanking - maybe better, maybe not- needs testing
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayer.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayer.cpp b/noncore/multimedia/opieplayer2/mediaplayer.cpp
index 606f8e9..f0a01a1 100644
--- a/noncore/multimedia/opieplayer2/mediaplayer.cpp
+++ b/noncore/multimedia/opieplayer2/mediaplayer.cpp
@@ -35,6 +35,7 @@ extern MediaPlayerState *mediaPlayerState;
MediaPlayer::MediaPlayer( QObject *parent, const char *name )
: QObject( parent, name ), volumeDirection( 0 ), currentFile( NULL ) {
+ fd=-1;fl=-1;
playList->setCaption( tr( "OpiePlayer: Initializating" ) );
qApp->processEvents();
@@ -298,14 +299,31 @@ void MediaPlayer::timerEvent( QTimerEvent * ) {
void MediaPlayer::blank( bool b ) {
fd=open("/dev/fb0",O_RDWR);
+#ifdef QT_QWS_EBX
+ fl= open( "/dev/fl", O_RDWR );
+#endif
if (fd != -1) {
if ( b ) {
qDebug("do blanking");
+#ifdef QT_QWS_EBX
+ ioctl( fd, FBIOBLANK, 1 );
+ if(fl !=-1) {
+ ioctl( fl, 2 );
+ ::close(fl);
+ }
+#else
ioctl( fd, FBIOBLANK, 3 );
+#endif
isBlanked = TRUE;
} else {
qDebug("do unblanking");
ioctl( fd, FBIOBLANK, 0);
+#ifdef QT_QWS_EBX
+ if(fl != -1) {
+ ioctl( fl, 1);
+ ::close(fl);
+ }
+#endif
isBlanked = FALSE;
}
close( fd );