summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer
authorbipolar <bipolar>2002-03-06 02:57:58 (UTC)
committer bipolar <bipolar>2002-03-06 02:57:58 (UTC)
commitf8e5caafffd11726cf0b0ea6a69c19aaad379533 (patch) (side-by-side diff)
treee29820f9a66f6446a9329cc0404c045f1b20f148 /core/multimedia/opieplayer
parent406bed0f501ea131ba31dbdecdde8c1fe8b15806 (diff)
downloadopie-f8e5caafffd11726cf0b0ea6a69c19aaad379533.zip
opie-f8e5caafffd11726cf0b0ea6a69c19aaad379533.tar.gz
opie-f8e5caafffd11726cf0b0ea6a69c19aaad379533.tar.bz2
ljp:fixed stuff
Diffstat (limited to 'core/multimedia/opieplayer') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/playlistselection.cpp21
-rw-r--r--core/multimedia/opieplayer/playlistselection.h1
-rw-r--r--core/multimedia/opieplayer/playlistwidget.cpp35
3 files changed, 29 insertions, 28 deletions
diff --git a/core/multimedia/opieplayer/playlistselection.cpp b/core/multimedia/opieplayer/playlistselection.cpp
index d70df51..d6aff66 100644
--- a/core/multimedia/opieplayer/playlistselection.cpp
+++ b/core/multimedia/opieplayer/playlistselection.cpp
@@ -52,6 +52,8 @@ PlayListSelection::PlayListSelection( QWidget *parent, const char *name )
{
+ qDebug("starting playlistselector");
// #ifdef USE_PLAYLIST_BACKGROUND
- setStaticBackground( TRUE );
-// setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/background" ) );
- setBackgroundPixmap( Resource::loadPixmap( "opielogo" ) );
+// setStaticBackground( TRUE );
+// setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/background" ) );
+
+// setBackgroundPixmap( Resource::loadPixmap( "opielogo" ) );
// #endif
@@ -59,3 +61,3 @@ PlayListSelection::PlayListSelection( QWidget *parent, const char *name )
// setAllColumnsShowFocus( TRUE );
- addColumn( tr( "Playlist Selection" ) );
+ addColumn( tr( "Playlist Selection" ) );
header()->hide();
@@ -71,7 +73,8 @@ PlayListSelection::~PlayListSelection() {
void PlayListSelection::drawBackground( QPainter *p, const QRect &r ) {
- p->fillRect( r, QBrush( white ) );
-// QImage logo = Resource::loadImage( "mpegplayer/background" );
- QImage logo = Resource::loadImage( "opielogo" );
- if ( !logo.isNull() )
- p->drawImage( (width() - logo.width()) / 2, (height() - logo.height()) / 2, logo );
+// qDebug("drawBackground");
+// p->fillRect( r, QBrush( white ) );
+// QImage logo = Resource::loadImage( "mpegplayer/background" );
+// // QImage logo = Resource::loadImage( "opielogo" );
+// if ( !logo.isNull() )
+// p->drawImage( (width() - logo.width()) / 2, (height() - logo.height()) / 2, logo );
}
diff --git a/core/multimedia/opieplayer/playlistselection.h b/core/multimedia/opieplayer/playlistselection.h
index 57e10f1..b0d249c 100644
--- a/core/multimedia/opieplayer/playlistselection.h
+++ b/core/multimedia/opieplayer/playlistselection.h
@@ -34,3 +34,2 @@ public:
const DocLnk *current(); // retrieve the current playlist entry (media file link)
-
public slots:
diff --git a/core/multimedia/opieplayer/playlistwidget.cpp b/core/multimedia/opieplayer/playlistwidget.cpp
index a6202bc..3171a84 100644
--- a/core/multimedia/opieplayer/playlistwidget.cpp
+++ b/core/multimedia/opieplayer/playlistwidget.cpp
@@ -420,2 +420,3 @@ void PlayListWidget::setDocument(const QString& fileref) {
}
+ if(fileref.find("playlist",0,TRUE) == -1) {
addToSelection( DocLnk( fileref ) );
@@ -427,2 +428,9 @@ void PlayListWidget::setDocument(const QString& fileref) {
d->selectedFiles->removeSelected( );
+ } else {
+ loadList(DocLnk(fileref));
+ d->selectedFiles->first();
+// mediaPlayerState->setPlaying( TRUE );
+// mediaPlayerState->setPlaying( FALSE );
+
+ }
}
@@ -531,23 +539,13 @@ void PlayListWidget::saveList() {
qDebug("saving playlist "+filename+".playlist");
-
-// DocLnk *lnk;
-// lnk.setName( filename); //sets file name
-// // lnk.setComment(title);
-// lnk.setFile( filename+".playlist"); //sets File property
-// lnk.setType("player/plain");// hey is this a REGISTERED mime type?!?!? ;D
-// lnk.setIcon("MPEGPlayer");
-// if(!lnk.writeLink())
-// qDebug("Writing doclink did not work");
-
Config cfg( filename +".playlist");
writeConfig( cfg );
+ DocLnk lnk;
+ lnk.setName( filename); //sets file name
+// lnk.setComment( "");
+ lnk.setFile(QPEApplication::qpeDir()+"Settings/"+filename+".playlist.conf"); //sets File property
+ lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D
+ lnk.setIcon("mpegplayer/playlist2");
+ if(!lnk.writeLink())
+ qDebug("Writing doclink did not work");
}
- DocLnk lnk;
- lnk.setName( filename); //sets file name
-// lnk.setComment(title);
- lnk.setFile(QPEApplication::qpeDir()+"Settings/"+filename+".playlist.conf"); //sets File property
- lnk.setType("playlist/plain");// hey is this a REGISTERED mime type?!?!? ;D
- lnk.setIcon("MPEGPlayer");
- if(!lnk.writeLink())
- qDebug("Writing doclink did not work");
@@ -555,2 +553,3 @@ void PlayListWidget::saveList() {
delete fileDlg;
+
}