-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.h | 1 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 14 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.h | 1 |
3 files changed, 1 insertions, 15 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h index d15894f..7a80ad8 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.h +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h | |||
@@ -1,141 +1,140 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | 3 | ||
4 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> | 4 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> |
5 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> | 5 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> |
6 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> | 6 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> |
7 | =. | 7 | =. |
8 | .=l. | 8 | .=l. |
9 | .>+-= | 9 | .>+-= |
10 | _;:, .> :=|. This program is free software; you can | 10 | _;:, .> :=|. This program is free software; you can |
11 | .> <`_, > . <= redistribute it and/or modify it under | 11 | .> <`_, > . <= redistribute it and/or modify it under |
12 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | 12 | :`=1 )Y*s>-.-- : the terms of the GNU General Public |
13 | .="- .-=="i, .._ License as published by the Free Software | 13 | .="- .-=="i, .._ License as published by the Free Software |
14 | - . .-<_> .<> Foundation; either version 2 of the License, | 14 | - . .-<_> .<> Foundation; either version 2 of the License, |
15 | ._= =} : or (at your option) any later version. | 15 | ._= =} : or (at your option) any later version. |
16 | .%`+i> _;_. | 16 | .%`+i> _;_. |
17 | .i_,=:_. -<s. This program is distributed in the hope that | 17 | .i_,=:_. -<s. This program is distributed in the hope that |
18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
19 | : .. .:, . . . without even the implied warranty of | 19 | : .. .:, . . . without even the implied warranty of |
20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
22 | ..}^=.= = ; General Public License for more | 22 | ..}^=.= = ; General Public License for more |
23 | ++= -. .` .: details. | 23 | ++= -. .` .: details. |
24 | : = ...= . :.=- | 24 | : = ...= . :.=- |
25 | -. .:....=;==+<; You should have received a copy of the GNU | 25 | -. .:....=;==+<; You should have received a copy of the GNU |
26 | -_. . . )=. = General Public License along with | 26 | -_. . . )=. = General Public License along with |
27 | -- :-=` this library; see the file COPYING.LIB. | 27 | -- :-=` this library; see the file COPYING.LIB. |
28 | If not, write to the Free Software Foundation, | 28 | If not, write to the Free Software Foundation, |
29 | Inc., 59 Temple Place - Suite 330, | 29 | Inc., 59 Temple Place - Suite 330, |
30 | Boston, MA 02111-1307, USA. | 30 | Boston, MA 02111-1307, USA. |
31 | 31 | ||
32 | */ | 32 | */ |
33 | 33 | ||
34 | // this file is based on work by trolltech | 34 | // this file is based on work by trolltech |
35 | 35 | ||
36 | #ifndef MEDIA_PLAYER_STATE_H | 36 | #ifndef MEDIA_PLAYER_STATE_H |
37 | #define MEDIA_PLAYER_STATE_H | 37 | #define MEDIA_PLAYER_STATE_H |
38 | 38 | ||
39 | 39 | ||
40 | #include <qobject.h> | 40 | #include <qobject.h> |
41 | 41 | ||
42 | 42 | ||
43 | class MediaPlayerDecoder; | 43 | class MediaPlayerDecoder; |
44 | class Config; | 44 | class Config; |
45 | 45 | ||
46 | 46 | ||
47 | class MediaPlayerState : public QObject { | 47 | class MediaPlayerState : public QObject { |
48 | Q_OBJECT | 48 | Q_OBJECT |
49 | public: | 49 | public: |
50 | MediaPlayerState( QObject *parent, const char *name ); | 50 | MediaPlayerState( QObject *parent, const char *name ); |
51 | ~MediaPlayerState(); | 51 | ~MediaPlayerState(); |
52 | 52 | ||
53 | bool isStreaming() const { return streaming; } | 53 | bool isStreaming() const { return streaming; } |
54 | bool isSeekable() const { return seekable; } | 54 | bool isSeekable() const { return seekable; } |
55 | bool isFullscreen() const { return fullscreen; } | 55 | bool isFullscreen() const { return fullscreen; } |
56 | bool isScaled() const { return scaled; } | 56 | bool isScaled() const { return scaled; } |
57 | bool isLooping() const { return looping; } | 57 | bool isLooping() const { return looping; } |
58 | bool isShuffled() const { return shuffled; } | 58 | bool isShuffled() const { return shuffled; } |
59 | bool isUsingPlaylist() const { return usePlaylist; } | 59 | bool isUsingPlaylist() const { return usePlaylist; } |
60 | bool isPaused() const { return paused; } | 60 | bool isPaused() const { return paused; } |
61 | bool isPlaying() const { return playing; } | 61 | bool isPlaying() const { return playing; } |
62 | bool isStopped() const { return stopped; } | 62 | bool isStopped() const { return stopped; } |
63 | long position() const { return curPosition; } | 63 | long position() const { return curPosition; } |
64 | long length() const { return curLength; } | 64 | long length() const { return curLength; } |
65 | char view() const { return curView; } | 65 | char view() const { return curView; } |
66 | 66 | ||
67 | public slots: | 67 | public slots: |
68 | void setIsStreaming( bool b ); | 68 | void setIsStreaming( bool b ); |
69 | void setIsSeekable( bool b ); | 69 | void setIsSeekable( bool b ); |
70 | void setFullscreen( bool b ); | 70 | void setFullscreen( bool b ); |
71 | void setScaled( bool b ); | 71 | void setScaled( bool b ); |
72 | void setLooping( bool b ); | 72 | void setLooping( bool b ); |
73 | void setShuffled( bool b ); | 73 | void setShuffled( bool b ); |
74 | void setPaused( bool b ); | 74 | void setPaused( bool b ); |
75 | void setPlaying( bool b ); | 75 | void setPlaying( bool b ); |
76 | void setStopped( bool b ); | 76 | void setStopped( bool b ); |
77 | void setPosition( long p ); | 77 | void setPosition( long p ); |
78 | void updatePosition( long p ); | 78 | void updatePosition( long p ); |
79 | void setLength( long l ); | 79 | void setLength( long l ); |
80 | void setView( char v ); | 80 | void setView( char v ); |
81 | void setBlanked( bool b ); | 81 | void setBlanked( bool b ); |
82 | void setVideoGamma( int v ); | 82 | void setVideoGamma( int v ); |
83 | 83 | ||
84 | void setPrev(); | 84 | void setPrev(); |
85 | void setNext(); | 85 | void setNext(); |
86 | void setList(); | 86 | void setList(); |
87 | void setVideo(); | 87 | void setVideo(); |
88 | void setAudio(); | 88 | void setAudio(); |
89 | 89 | ||
90 | void toggleFullscreen(); | 90 | void toggleFullscreen(); |
91 | void toggleScaled(); | 91 | void toggleScaled(); |
92 | void toggleLooping(); | 92 | void toggleLooping(); |
93 | void toggleShuffled(); | 93 | void toggleShuffled(); |
94 | void togglePaused(); | 94 | void togglePaused(); |
95 | void togglePlaying(); | 95 | void togglePlaying(); |
96 | void toggleBlank(); | 96 | void toggleBlank(); |
97 | void writeConfig( Config& cfg ) const; | 97 | void writeConfig( Config& cfg ) const; |
98 | 98 | ||
99 | 99 | ||
100 | signals: | 100 | signals: |
101 | void fullscreenToggled( bool ); | 101 | void fullscreenToggled( bool ); |
102 | void scaledToggled( bool ); | 102 | void scaledToggled( bool ); |
103 | void loopingToggled( bool ); | 103 | void loopingToggled( bool ); |
104 | void shuffledToggled( bool ); | 104 | void shuffledToggled( bool ); |
105 | void playlistToggled( bool ); | ||
106 | void pausedToggled( bool ); | 105 | void pausedToggled( bool ); |
107 | void playingToggled( bool ); | 106 | void playingToggled( bool ); |
108 | void stopToggled( bool ); | 107 | void stopToggled( bool ); |
109 | void positionChanged( long ); // When the slider is moved | 108 | void positionChanged( long ); // When the slider is moved |
110 | void positionUpdated( long ); // When the media file progresses | 109 | void positionUpdated( long ); // When the media file progresses |
111 | void lengthChanged( long ); | 110 | void lengthChanged( long ); |
112 | void viewChanged( char ); | 111 | void viewChanged( char ); |
113 | void isSeekableToggled( bool ); | 112 | void isSeekableToggled( bool ); |
114 | void blankToggled( bool ); | 113 | void blankToggled( bool ); |
115 | void videoGammaChanged( int ); | 114 | void videoGammaChanged( int ); |
116 | void prev(); | 115 | void prev(); |
117 | void next(); | 116 | void next(); |
118 | 117 | ||
119 | private: | 118 | private: |
120 | bool streaming : 1; | 119 | bool streaming : 1; |
121 | bool seekable : 1; | 120 | bool seekable : 1; |
122 | bool fullscreen: 1; | 121 | bool fullscreen: 1; |
123 | bool scaled : 1; | 122 | bool scaled : 1; |
124 | bool blanked : 1; | 123 | bool blanked : 1; |
125 | bool looping : 1; | 124 | bool looping : 1; |
126 | bool shuffled : 1; | 125 | bool shuffled : 1; |
127 | bool usePlaylist : 1; | 126 | bool usePlaylist : 1; |
128 | bool paused : 1; | 127 | bool paused : 1; |
129 | bool playing : 1; | 128 | bool playing : 1; |
130 | bool stopped : 1; | 129 | bool stopped : 1; |
131 | long curPosition; | 130 | long curPosition; |
132 | long curLength; | 131 | long curLength; |
133 | char curView; | 132 | char curView; |
134 | int videoGamma; | 133 | int videoGamma; |
135 | void readConfig( Config& cfg ); | 134 | void readConfig( Config& cfg ); |
136 | 135 | ||
137 | }; | 136 | }; |
138 | 137 | ||
139 | 138 | ||
140 | #endif // MEDIA_PLAYER_STATE_H | 139 | #endif // MEDIA_PLAYER_STATE_H |
141 | 140 | ||
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index 6355bec..5b277cc 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -1,1154 +1,1142 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | 3 | ||
4 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> | 4 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> |
5 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> | 5 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> |
6 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> | 6 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> |
7 | =. | 7 | =. |
8 | .=l. | 8 | .=l. |
9 | .>+-= | 9 | .>+-= |
10 | _;:, .> :=|. This program is free software; you can | 10 | _;:, .> :=|. This program is free software; you can |
11 | .> <`_, > . <= redistribute it and/or modify it under | 11 | .> <`_, > . <= redistribute it and/or modify it under |
12 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | 12 | :`=1 )Y*s>-.-- : the terms of the GNU General Public |
13 | .="- .-=="i, .._ License as published by the Free Software | 13 | .="- .-=="i, .._ License as published by the Free Software |
14 | - . .-<_> .<> Foundation; either version 2 of the License, | 14 | - . .-<_> .<> Foundation; either version 2 of the License, |
15 | ._= =} : or (at your option) any later version. | 15 | ._= =} : or (at your option) any later version. |
16 | .%`+i> _;_. | 16 | .%`+i> _;_. |
17 | .i_,=:_. -<s. This program is distributed in the hope that | 17 | .i_,=:_. -<s. This program is distributed in the hope that |
18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
19 | : .. .:, . . . without even the implied warranty of | 19 | : .. .:, . . . without even the implied warranty of |
20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
22 | ..}^=.= = ; General Public License for more | 22 | ..}^=.= = ; General Public License for more |
23 | ++= -. .` .: details. | 23 | ++= -. .` .: details. |
24 | : = ...= . :.=- | 24 | : = ...= . :.=- |
25 | -. .:....=;==+<; You should have received a copy of the GNU | 25 | -. .:....=;==+<; You should have received a copy of the GNU |
26 | -_. . . )=. = General Public License along with | 26 | -_. . . )=. = General Public License along with |
27 | -- :-=` this library; see the file COPYING.LIB. | 27 | -- :-=` this library; see the file COPYING.LIB. |
28 | If not, write to the Free Software Foundation, | 28 | If not, write to the Free Software Foundation, |
29 | Inc., 59 Temple Place - Suite 330, | 29 | Inc., 59 Temple Place - Suite 330, |
30 | Boston, MA 02111-1307, USA. | 30 | Boston, MA 02111-1307, USA. |
31 | 31 | ||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #include <qpe/qpetoolbar.h> | 34 | #include <qpe/qpetoolbar.h> |
35 | #include <qpe/qpeapplication.h> | 35 | #include <qpe/qpeapplication.h> |
36 | #include <qpe/storage.h> | 36 | #include <qpe/storage.h> |
37 | #include <qpe/mimetype.h> | 37 | #include <qpe/mimetype.h> |
38 | #include <qpe/global.h> | 38 | #include <qpe/global.h> |
39 | #include <qpe/resource.h> | 39 | #include <qpe/resource.h> |
40 | 40 | ||
41 | #include <qdatetime.h> | 41 | #include <qdatetime.h> |
42 | #include <qdir.h> | 42 | #include <qdir.h> |
43 | #include <qmessagebox.h> | 43 | #include <qmessagebox.h> |
44 | #include <qregexp.h> | 44 | #include <qregexp.h> |
45 | #include <qtextstream.h> | 45 | #include <qtextstream.h> |
46 | 46 | ||
47 | #include "playlistselection.h" | 47 | #include "playlistselection.h" |
48 | #include "playlistwidget.h" | 48 | #include "playlistwidget.h" |
49 | #include "mediaplayerstate.h" | 49 | #include "mediaplayerstate.h" |
50 | #include "inputDialog.h" | 50 | #include "inputDialog.h" |
51 | #include "om3u.h" | 51 | #include "om3u.h" |
52 | 52 | ||
53 | //only needed for the random play | 53 | //only needed for the random play |
54 | #include <stdlib.h> | 54 | #include <stdlib.h> |
55 | #include <assert.h> | 55 | #include <assert.h> |
56 | 56 | ||
57 | #include "audiowidget.h" | 57 | #include "audiowidget.h" |
58 | #include "videowidget.h" | 58 | #include "videowidget.h" |
59 | 59 | ||
60 | extern MediaPlayerState *mediaPlayerState; | 60 | extern MediaPlayerState *mediaPlayerState; |
61 | // extern AudioWidget *audioUI; | 61 | // extern AudioWidget *audioUI; |
62 | // extern VideoWidget *videoUI; | 62 | // extern VideoWidget *videoUI; |
63 | 63 | ||
64 | QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg"; | 64 | QString audioMimes ="audio/mpeg;audio/x-wav;audio/x-ogg"; |
65 | // no m3u's here please | 65 | // no m3u's here please |
66 | 66 | ||
67 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | 67 | PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) |
68 | : PlayListWidgetGui( parent, name, fl ) { | 68 | : PlayListWidgetGui( parent, name, fl ) { |
69 | 69 | ||
70 | d->tbAddToList = new ToolButton( bar, tr( "Add to Playlist" ), | 70 | d->tbAddToList = new ToolButton( bar, tr( "Add to Playlist" ), |
71 | "opieplayer2/add_to_playlist", | 71 | "opieplayer2/add_to_playlist", |
72 | this , SLOT(addSelected() ) ); | 72 | this , SLOT(addSelected() ) ); |
73 | d->tbRemoveFromList = new ToolButton( bar, tr( "Remove from Playlist" ), | 73 | d->tbRemoveFromList = new ToolButton( bar, tr( "Remove from Playlist" ), |
74 | "opieplayer2/remove_from_playlist", | 74 | "opieplayer2/remove_from_playlist", |
75 | this , SLOT(removeSelected() ) ); | 75 | this , SLOT(removeSelected() ) ); |
76 | d->tbPlay = new ToolButton( bar, tr( "Play" ), "opieplayer2/play", | 76 | d->tbPlay = new ToolButton( bar, tr( "Play" ), "opieplayer2/play", |
77 | this , SLOT( btnPlay( bool) ), TRUE ); | 77 | this , SLOT( btnPlay( bool) ), TRUE ); |
78 | d->tbShuffle = new ToolButton( bar, tr( "Randomize" ),"opieplayer2/shuffle", | 78 | d->tbShuffle = new ToolButton( bar, tr( "Randomize" ),"opieplayer2/shuffle", |
79 | mediaPlayerState, SLOT( setShuffled( bool ) ), TRUE ); | 79 | mediaPlayerState, SLOT( setShuffled( bool ) ), TRUE ); |
80 | d->tbLoop = new ToolButton( bar, tr( "Loop" ), "opieplayer2/loop", | 80 | d->tbLoop = new ToolButton( bar, tr( "Loop" ), "opieplayer2/loop", |
81 | mediaPlayerState, SLOT( setLooping( bool ) ), TRUE ); | 81 | mediaPlayerState, SLOT( setLooping( bool ) ), TRUE ); |
82 | 82 | ||
83 | (void)new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) ); | 83 | (void)new MenuItem( pmPlayList, tr( "Clear List" ), this, SLOT( clearList() ) ); |
84 | (void)new MenuItem( pmPlayList, tr( "Add all audio files" ), | 84 | (void)new MenuItem( pmPlayList, tr( "Add all audio files" ), |
85 | this, SLOT( addAllMusicToList() ) ); | 85 | this, SLOT( addAllMusicToList() ) ); |
86 | (void)new MenuItem( pmPlayList, tr( "Add all video files" ), | 86 | (void)new MenuItem( pmPlayList, tr( "Add all video files" ), |
87 | this, SLOT( addAllVideoToList() ) ); | 87 | this, SLOT( addAllVideoToList() ) ); |
88 | (void)new MenuItem( pmPlayList, tr( "Add all files" ), | 88 | (void)new MenuItem( pmPlayList, tr( "Add all files" ), |
89 | this, SLOT( addAllToList() ) ); | 89 | this, SLOT( addAllToList() ) ); |
90 | pmPlayList->insertSeparator(-1); | 90 | pmPlayList->insertSeparator(-1); |
91 | // (void)new MenuItem( pmPlayList, tr( "Save PlayList" ), | 91 | // (void)new MenuItem( pmPlayList, tr( "Save PlayList" ), |
92 | // this, SLOT( saveList() ) ); | 92 | // this, SLOT( saveList() ) ); |
93 | (void)new MenuItem( pmPlayList, tr( "Save Playlist" ), | 93 | (void)new MenuItem( pmPlayList, tr( "Save Playlist" ), |
94 | this, SLOT(writem3u() ) ); | 94 | this, SLOT(writem3u() ) ); |
95 | pmPlayList->insertSeparator(-1); | 95 | pmPlayList->insertSeparator(-1); |
96 | (void)new MenuItem( pmPlayList, tr( "Open File or URL" ), | 96 | (void)new MenuItem( pmPlayList, tr( "Open File or URL" ), |
97 | this,SLOT( openFile() ) ); | 97 | this,SLOT( openFile() ) ); |
98 | pmPlayList->insertSeparator(-1); | 98 | pmPlayList->insertSeparator(-1); |
99 | (void)new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ), | 99 | (void)new MenuItem( pmPlayList, tr( "Rescan for Audio Files" ), |
100 | this,SLOT( scanForAudio() ) ); | 100 | this,SLOT( scanForAudio() ) ); |
101 | (void)new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), | 101 | (void)new MenuItem( pmPlayList, tr( "Rescan for Video Files" ), |
102 | this,SLOT( scanForVideo() ) ); | 102 | this,SLOT( scanForVideo() ) ); |
103 | 103 | ||
104 | pmView->insertItem( Resource::loadPixmap("fullscreen") , tr( "Full Screen"), | 104 | pmView->insertItem( Resource::loadPixmap("fullscreen") , tr( "Full Screen"), |
105 | mediaPlayerState, SLOT( toggleFullscreen() ) ); | 105 | mediaPlayerState, SLOT( toggleFullscreen() ) ); |
106 | 106 | ||
107 | Config cfg( "OpiePlayer" ); | 107 | Config cfg( "OpiePlayer" ); |
108 | bool b= cfg.readBoolEntry("FullScreen", 0); | 108 | bool b= cfg.readBoolEntry("FullScreen", 0); |
109 | mediaPlayerState->setFullscreen( b ); | 109 | mediaPlayerState->setFullscreen( b ); |
110 | pmView->setItemChecked( -16, b ); | 110 | pmView->setItemChecked( -16, b ); |
111 | 111 | ||
112 | (void)new ToolButton( vbox1, tr( "Move Up" ), "opieplayer2/up", | 112 | (void)new ToolButton( vbox1, tr( "Move Up" ), "opieplayer2/up", |
113 | d->selectedFiles, SLOT(moveSelectedUp() ) ); | 113 | d->selectedFiles, SLOT(moveSelectedUp() ) ); |
114 | (void)new ToolButton( vbox1, tr( "Remove" ), "opieplayer2/cut", | 114 | (void)new ToolButton( vbox1, tr( "Remove" ), "opieplayer2/cut", |
115 | d->selectedFiles, SLOT(removeSelected() ) ); | 115 | d->selectedFiles, SLOT(removeSelected() ) ); |
116 | (void)new ToolButton( vbox1, tr( "Move Down" ), "opieplayer2/down", | 116 | (void)new ToolButton( vbox1, tr( "Move Down" ), "opieplayer2/down", |
117 | d->selectedFiles, SLOT(moveSelectedDown() ) ); | 117 | d->selectedFiles, SLOT(moveSelectedDown() ) ); |
118 | // QVBox *stretch2 = new QVBox( vbox1 ); | 118 | // QVBox *stretch2 = new QVBox( vbox1 ); |
119 | 119 | ||
120 | connect( tbDeletePlaylist, ( SIGNAL( released() ) ), | 120 | connect( tbDeletePlaylist, ( SIGNAL( released() ) ), |
121 | SLOT( deletePlaylist() ) ); | 121 | SLOT( deletePlaylist() ) ); |
122 | connect( pmView, SIGNAL( activated( int ) ), | 122 | connect( pmView, SIGNAL( activated( int ) ), |
123 | this, SLOT( pmViewActivated( int ) ) ); | 123 | this, SLOT( pmViewActivated( int ) ) ); |
124 | connect( skinsMenu, SIGNAL( activated( int ) ) , | 124 | connect( skinsMenu, SIGNAL( activated( int ) ) , |
125 | this, SLOT( skinsMenuActivated( int ) ) ); | 125 | this, SLOT( skinsMenuActivated( int ) ) ); |
126 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), | 126 | connect( d->selectedFiles, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), |
127 | this,SLOT( playlistViewPressed( int, QListViewItem *, const QPoint&, int ) ) ); | 127 | this,SLOT( playlistViewPressed( int, QListViewItem *, const QPoint&, int ) ) ); |
128 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int ) ), | 128 | connect( audioView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int ) ), |
129 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int ) ) ); | 129 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int ) ) ); |
130 | connect( audioView, SIGNAL( returnPressed( QListViewItem *) ), | 130 | connect( audioView, SIGNAL( returnPressed( QListViewItem *) ), |
131 | this,SLOT( playIt( QListViewItem *) ) ); | 131 | this,SLOT( playIt( QListViewItem *) ) ); |
132 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), | 132 | connect( audioView, SIGNAL( doubleClicked( QListViewItem *) ), |
133 | this, SLOT( addToSelection( QListViewItem *) ) ); | 133 | this, SLOT( addToSelection( QListViewItem *) ) ); |
134 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), | 134 | connect( videoView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int) ), |
135 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int) ) ); | 135 | this,SLOT( viewPressed( int, QListViewItem *, const QPoint&, int) ) ); |
136 | connect( videoView, SIGNAL( returnPressed( QListViewItem *) ), | 136 | connect( videoView, SIGNAL( returnPressed( QListViewItem *) ), |
137 | this,SLOT( playIt( QListViewItem *) ) ); | 137 | this,SLOT( playIt( QListViewItem *) ) ); |
138 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), | 138 | connect( videoView, SIGNAL( doubleClicked( QListViewItem *) ), |
139 | this, SLOT( addToSelection( QListViewItem *) ) ); | 139 | this, SLOT( addToSelection( QListViewItem *) ) ); |
140 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), | 140 | connect( playLists, SIGNAL( fileSelected( const DocLnk &) ), |
141 | this, SLOT( loadList( const DocLnk & ) ) ); | 141 | this, SLOT( loadList( const DocLnk & ) ) ); |
142 | connect( tabWidget, SIGNAL ( currentChanged(QWidget*) ), | 142 | connect( tabWidget, SIGNAL ( currentChanged(QWidget*) ), |
143 | this, SLOT( tabChanged( QWidget* ) ) ); | 143 | this, SLOT( tabChanged( QWidget* ) ) ); |
144 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), | 144 | connect( mediaPlayerState, SIGNAL( playingToggled( bool ) ), |
145 | d->tbPlay, SLOT( setOn( bool ) ) ); | 145 | d->tbPlay, SLOT( setOn( bool ) ) ); |
146 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), | 146 | connect( mediaPlayerState, SIGNAL( loopingToggled( bool ) ), |
147 | d->tbLoop, SLOT( setOn( bool ) ) ); | 147 | d->tbLoop, SLOT( setOn( bool ) ) ); |
148 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), | 148 | connect( mediaPlayerState, SIGNAL( shuffledToggled( bool ) ), |
149 | d->tbShuffle, SLOT( setOn( bool ) ) ); | 149 | d->tbShuffle, SLOT( setOn( bool ) ) ); |
150 | connect( mediaPlayerState, SIGNAL( playlistToggled( bool ) ), | ||
151 | this, SLOT( setPlaylist( bool ) ) ); | ||
152 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), | 150 | connect( d->selectedFiles, SIGNAL( doubleClicked( QListViewItem *) ), |
153 | this, SLOT( playIt( QListViewItem *) ) ); | 151 | this, SLOT( playIt( QListViewItem *) ) ); |
154 | connect ( gammaSlider, SIGNAL( valueChanged( int ) ), | 152 | connect ( gammaSlider, SIGNAL( valueChanged( int ) ), |
155 | mediaPlayerState, SLOT( setVideoGamma( int ) ) ); | 153 | mediaPlayerState, SLOT( setVideoGamma( int ) ) ); |
156 | 154 | ||
157 | // see which skins are installed | 155 | // see which skins are installed |
158 | videoScan=false; | 156 | videoScan=false; |
159 | audioScan=false; | 157 | audioScan=false; |
160 | audioPopulated=false; | 158 | audioPopulated=false; |
161 | videoPopulated=false; | 159 | videoPopulated=false; |
162 | populateSkinsMenu(); | 160 | populateSkinsMenu(); |
163 | initializeStates(); | 161 | initializeStates(); |
164 | 162 | ||
165 | cfg.setGroup("PlayList"); | 163 | cfg.setGroup("PlayList"); |
166 | QString currentPlaylist = cfg.readEntry( "CurrentPlaylist", "default"); | 164 | QString currentPlaylist = cfg.readEntry( "CurrentPlaylist", "default"); |
167 | loadList(DocLnk( currentPlaylist ) ); | 165 | loadList(DocLnk( currentPlaylist ) ); |
168 | } | 166 | } |
169 | 167 | ||
170 | 168 | ||
171 | PlayListWidget::~PlayListWidget() { | 169 | PlayListWidget::~PlayListWidget() { |
172 | delete d; | 170 | delete d; |
173 | } | 171 | } |
174 | 172 | ||
175 | 173 | ||
176 | void PlayListWidget::initializeStates() { | 174 | void PlayListWidget::initializeStates() { |
177 | d->tbPlay->setOn( mediaPlayerState->isPlaying() ); | 175 | d->tbPlay->setOn( mediaPlayerState->isPlaying() ); |
178 | d->tbLoop->setOn( mediaPlayerState->isLooping() ); | 176 | d->tbLoop->setOn( mediaPlayerState->isLooping() ); |
179 | d->tbShuffle->setOn( mediaPlayerState->isShuffled() ); | 177 | d->tbShuffle->setOn( mediaPlayerState->isShuffled() ); |
180 | setPlaylist( true ); | 178 | d->playListFrame->show(); |
181 | } | 179 | } |
182 | 180 | ||
183 | void PlayListWidget::writeDefaultPlaylist() { | 181 | void PlayListWidget::writeDefaultPlaylist() { |
184 | 182 | ||
185 | Config config( "OpiePlayer" ); | 183 | Config config( "OpiePlayer" ); |
186 | config.setGroup( "PlayList" ); | 184 | config.setGroup( "PlayList" ); |
187 | QString filename=QPEApplication::documentDir() + "/default.m3u"; | 185 | QString filename=QPEApplication::documentDir() + "/default.m3u"; |
188 | QString currentString = config.readEntry( "CurrentPlaylist", filename); | 186 | QString currentString = config.readEntry( "CurrentPlaylist", filename); |
189 | if( currentString == filename) { | 187 | if( currentString == filename) { |
190 | Om3u *m3uList; | 188 | Om3u *m3uList; |
191 | // qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>"); | 189 | // qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>"); |
192 | if( d->selectedFiles->first() ) { | 190 | if( d->selectedFiles->first() ) { |
193 | m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate); | 191 | m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate); |
194 | do { | 192 | do { |
195 | // qDebug(d->selectedFiles->current()->file()); | 193 | // qDebug(d->selectedFiles->current()->file()); |
196 | m3uList->add( d->selectedFiles->current()->file() ); | 194 | m3uList->add( d->selectedFiles->current()->file() ); |
197 | } | 195 | } |
198 | while ( d->selectedFiles->next() ); | 196 | while ( d->selectedFiles->next() ); |
199 | 197 | ||
200 | m3uList->write(); | 198 | m3uList->write(); |
201 | m3uList->close(); | 199 | m3uList->close(); |
202 | if(m3uList) delete m3uList; | 200 | if(m3uList) delete m3uList; |
203 | 201 | ||
204 | } | 202 | } |
205 | } | 203 | } |
206 | } | 204 | } |
207 | 205 | ||
208 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { | 206 | void PlayListWidget::addToSelection( const DocLnk& lnk ) { |
209 | d->setDocumentUsed = FALSE; | 207 | d->setDocumentUsed = FALSE; |
210 | if ( mediaPlayerState->isUsingPlaylist() ) { | 208 | if ( mediaPlayerState->isUsingPlaylist() ) { |
211 | if( QFileInfo( lnk.file() ).exists() || | 209 | if( QFileInfo( lnk.file() ).exists() || |
212 | lnk.file().left(4) == "http" ) { | 210 | lnk.file().left(4) == "http" ) { |
213 | d->selectedFiles->addToSelection( lnk ); | 211 | d->selectedFiles->addToSelection( lnk ); |
214 | } | 212 | } |
215 | // writeCurrentM3u(); | 213 | // writeCurrentM3u(); |
216 | } | 214 | } |
217 | else | 215 | else |
218 | mediaPlayerState->setPlaying( TRUE ); | 216 | mediaPlayerState->setPlaying( TRUE ); |
219 | } | 217 | } |
220 | 218 | ||
221 | 219 | ||
222 | void PlayListWidget::clearList() { | 220 | void PlayListWidget::clearList() { |
223 | while ( first() ) { | 221 | while ( first() ) { |
224 | d->selectedFiles->removeSelected(); | 222 | d->selectedFiles->removeSelected(); |
225 | } | 223 | } |
226 | } | 224 | } |
227 | 225 | ||
228 | void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { | 226 | void PlayListWidget::viewPressed( int mouse, QListViewItem *, const QPoint& , int) { |
229 | switch (mouse) { | 227 | switch (mouse) { |
230 | case 1: | 228 | case 1: |
231 | break; | 229 | break; |
232 | case 2: | 230 | case 2: |
233 | { | 231 | { |
234 | QPopupMenu m; | 232 | QPopupMenu m; |
235 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); | 233 | m.insertItem( tr( "Play Selected" ), this, SLOT( playSelected() )); |
236 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); | 234 | m.insertItem( tr( "Add to Playlist" ), this, SLOT( addSelected() )); |
237 | m.exec( QCursor::pos() ); | 235 | m.exec( QCursor::pos() ); |
238 | } | 236 | } |
239 | break; | 237 | break; |
240 | } | 238 | } |
241 | } | 239 | } |
242 | 240 | ||
243 | 241 | ||
244 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) { | 242 | void PlayListWidget::playlistViewPressed( int mouse, QListViewItem *, const QPoint& , int ) { |
245 | switch (mouse) { | 243 | switch (mouse) { |
246 | case 1: | 244 | case 1: |
247 | break; | 245 | break; |
248 | case 2: | 246 | case 2: |
249 | { | 247 | { |
250 | QPopupMenu m; | 248 | QPopupMenu m; |
251 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); | 249 | m.insertItem( tr( "Play" ), this, SLOT( playSelected() )); |
252 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); | 250 | m.insertItem( tr( "Remove" ), this, SLOT( removeSelected() )); |
253 | m.exec( QCursor::pos() ); | 251 | m.exec( QCursor::pos() ); |
254 | } | 252 | } |
255 | break; | 253 | break; |
256 | } | 254 | } |
257 | } | 255 | } |
258 | 256 | ||
259 | 257 | ||
260 | void PlayListWidget::addAllToList() { | 258 | void PlayListWidget::addAllToList() { |
261 | 259 | ||
262 | // QTime t; | 260 | // QTime t; |
263 | // t.start(); | 261 | // t.start(); |
264 | 262 | ||
265 | if(!audioScan) { | 263 | if(!audioScan) { |
266 | if(audioView->childCount() < 1) | 264 | if(audioView->childCount() < 1) |
267 | populateAudioView(); | 265 | populateAudioView(); |
268 | } | 266 | } |
269 | 267 | ||
270 | QListViewItemIterator audioIt( audioView ); | 268 | QListViewItemIterator audioIt( audioView ); |
271 | DocLnk lnk; | 269 | DocLnk lnk; |
272 | QString filename; | 270 | QString filename; |
273 | // iterate through all items of the listview | 271 | // iterate through all items of the listview |
274 | for ( ; audioIt.current(); ++audioIt ) { | 272 | for ( ; audioIt.current(); ++audioIt ) { |
275 | filename = audioIt.current()->text(3); | 273 | filename = audioIt.current()->text(3); |
276 | lnk.setName( QFileInfo(filename).baseName() ); //sets name | 274 | lnk.setName( QFileInfo(filename).baseName() ); //sets name |
277 | lnk.setFile( filename ); //sets file name | 275 | lnk.setFile( filename ); //sets file name |
278 | d->selectedFiles->addToSelection( lnk); | 276 | d->selectedFiles->addToSelection( lnk); |
279 | } | 277 | } |
280 | 278 | ||
281 | if(!videoScan) { | 279 | if(!videoScan) { |
282 | if(videoView->childCount() < 1) | 280 | if(videoView->childCount() < 1) |
283 | populateVideoView(); | 281 | populateVideoView(); |
284 | } | 282 | } |
285 | 283 | ||
286 | QListViewItemIterator videoIt( videoView ); | 284 | QListViewItemIterator videoIt( videoView ); |
287 | for ( ; videoIt.current(); ++videoIt ) { | 285 | for ( ; videoIt.current(); ++videoIt ) { |
288 | filename = videoIt.current()->text(3); | 286 | filename = videoIt.current()->text(3); |
289 | lnk.setName( QFileInfo(filename).baseName() ); //sets name | 287 | lnk.setName( QFileInfo(filename).baseName() ); //sets name |
290 | lnk.setFile( filename ); //sets file name | 288 | lnk.setFile( filename ); //sets file name |
291 | d->selectedFiles->addToSelection( lnk); | 289 | d->selectedFiles->addToSelection( lnk); |
292 | } | 290 | } |
293 | 291 | ||
294 | // d->selectedFiles->addToSelection( ); | 292 | // d->selectedFiles->addToSelection( ); |
295 | // if ( it.current()->isSelected() ) | 293 | // if ( it.current()->isSelected() ) |
296 | // lst->append( audioIt.current() ); | 294 | // lst->append( audioIt.current() ); |
297 | // } | 295 | // } |
298 | 296 | ||
299 | 297 | ||
300 | // if(!audioScan) | 298 | // if(!audioScan) |
301 | // scanForAudio(); | 299 | // scanForAudio(); |
302 | // if(!videoScan) | 300 | // if(!videoScan) |
303 | // scanForVideo(); | 301 | // scanForVideo(); |
304 | 302 | ||
305 | // DocLnkSet filesAll; | 303 | // DocLnkSet filesAll; |
306 | // Global::findDocuments(&filesAll, "video/*;"+audioMimes); | 304 | // Global::findDocuments(&filesAll, "video/*;"+audioMimes); |
307 | // QListIterator<DocLnk> Adit( filesAll.children() ); | 305 | // QListIterator<DocLnk> Adit( filesAll.children() ); |
308 | // for ( ; Adit.current(); ++Adit ) { | 306 | // for ( ; Adit.current(); ++Adit ) { |
309 | // if( QFileInfo( Adit.current()->file() ).exists() ) { | 307 | // if( QFileInfo( Adit.current()->file() ).exists() ) { |
310 | // d->selectedFiles->addToSelection( **Adit ); | 308 | // d->selectedFiles->addToSelection( **Adit ); |
311 | // } | 309 | // } |
312 | // } | 310 | // } |
313 | 311 | ||
314 | // qDebug("elapsed time %d", t.elapsed() ); | 312 | // qDebug("elapsed time %d", t.elapsed() ); |
315 | 313 | ||
316 | tabWidget->setCurrentPage(0); | 314 | tabWidget->setCurrentPage(0); |
317 | 315 | ||
318 | writeCurrentM3u(); | 316 | writeCurrentM3u(); |
319 | d->selectedFiles->first(); | 317 | d->selectedFiles->first(); |
320 | } | 318 | } |
321 | 319 | ||
322 | 320 | ||
323 | void PlayListWidget::addAllMusicToList() { | 321 | void PlayListWidget::addAllMusicToList() { |
324 | 322 | ||
325 | if(!audioScan) { | 323 | if(!audioScan) { |
326 | if(audioView->childCount() < 1) | 324 | if(audioView->childCount() < 1) |
327 | populateAudioView(); | 325 | populateAudioView(); |
328 | } | 326 | } |
329 | 327 | ||
330 | QListViewItemIterator audioIt( audioView ); | 328 | QListViewItemIterator audioIt( audioView ); |
331 | DocLnk lnk; | 329 | DocLnk lnk; |
332 | QString filename; | 330 | QString filename; |
333 | // iterate through all items of the listview | 331 | // iterate through all items of the listview |
334 | for ( ; audioIt.current(); ++audioIt ) { | 332 | for ( ; audioIt.current(); ++audioIt ) { |
335 | filename = audioIt.current()->text(3); | 333 | filename = audioIt.current()->text(3); |
336 | lnk.setName( QFileInfo(filename).baseName() ); //sets name | 334 | lnk.setName( QFileInfo(filename).baseName() ); //sets name |
337 | lnk.setFile( filename ); //sets file name | 335 | lnk.setFile( filename ); //sets file name |
338 | d->selectedFiles->addToSelection( lnk); | 336 | d->selectedFiles->addToSelection( lnk); |
339 | } | 337 | } |
340 | 338 | ||
341 | /* if(!audioScan) | 339 | /* if(!audioScan) |
342 | scanForAudio(); | 340 | scanForAudio(); |
343 | QListIterator<DocLnk> dit( files.children() ); | 341 | QListIterator<DocLnk> dit( files.children() ); |
344 | for ( ; dit.current(); ++dit ) { | 342 | for ( ; dit.current(); ++dit ) { |
345 | if( QFileInfo(dit.current()->file() ).exists() ) { | 343 | if( QFileInfo(dit.current()->file() ).exists() ) { |
346 | d->selectedFiles->addToSelection( **dit ); | 344 | d->selectedFiles->addToSelection( **dit ); |
347 | } | 345 | } |
348 | } | 346 | } |
349 | */ | 347 | */ |
350 | tabWidget->setCurrentPage(0); | 348 | tabWidget->setCurrentPage(0); |
351 | writeCurrentM3u(); | 349 | writeCurrentM3u(); |
352 | d->selectedFiles->first(); | 350 | d->selectedFiles->first(); |
353 | } | 351 | } |
354 | 352 | ||
355 | 353 | ||
356 | void PlayListWidget::addAllVideoToList() { | 354 | void PlayListWidget::addAllVideoToList() { |
357 | 355 | ||
358 | if(!videoScan) { | 356 | if(!videoScan) { |
359 | if(videoView->childCount() < 1) | 357 | if(videoView->childCount() < 1) |
360 | populateVideoView(); | 358 | populateVideoView(); |
361 | } | 359 | } |
362 | 360 | ||
363 | QListViewItemIterator videoIt( videoView ); | 361 | QListViewItemIterator videoIt( videoView ); |
364 | DocLnk lnk; | 362 | DocLnk lnk; |
365 | QString filename; | 363 | QString filename; |
366 | for ( ; videoIt.current(); ++videoIt ) { | 364 | for ( ; videoIt.current(); ++videoIt ) { |
367 | filename = videoIt.current()->text(3); | 365 | filename = videoIt.current()->text(3); |
368 | lnk.setName( QFileInfo(filename).baseName() ); //sets name | 366 | lnk.setName( QFileInfo(filename).baseName() ); //sets name |
369 | lnk.setFile( filename ); //sets file name | 367 | lnk.setFile( filename ); //sets file name |
370 | d->selectedFiles->addToSelection( lnk); | 368 | d->selectedFiles->addToSelection( lnk); |
371 | } | 369 | } |
372 | 370 | ||
373 | 371 | ||
374 | /* if(!videoScan) | 372 | /* if(!videoScan) |
375 | scanForVideo(); | 373 | scanForVideo(); |
376 | QListIterator<DocLnk> dit( vFiles.children() ); | 374 | QListIterator<DocLnk> dit( vFiles.children() ); |
377 | for ( ; dit.current(); ++dit ) { | 375 | for ( ; dit.current(); ++dit ) { |
378 | if( QFileInfo( dit.current()->file() ).exists() ) { | 376 | if( QFileInfo( dit.current()->file() ).exists() ) { |
379 | d->selectedFiles->addToSelection( **dit ); | 377 | d->selectedFiles->addToSelection( **dit ); |
380 | } | 378 | } |
381 | } | 379 | } |
382 | */ | 380 | */ |
383 | tabWidget->setCurrentPage(0); | 381 | tabWidget->setCurrentPage(0); |
384 | writeCurrentM3u(); | 382 | writeCurrentM3u(); |
385 | d->selectedFiles->first(); | 383 | d->selectedFiles->first(); |
386 | } | 384 | } |
387 | 385 | ||
388 | 386 | ||
389 | void PlayListWidget::setDocument( const QString& fileref ) { | 387 | void PlayListWidget::setDocument( const QString& fileref ) { |
390 | // qDebug( "<<<<<<<<set document>>>>>>>>>> "+fileref ); | 388 | // qDebug( "<<<<<<<<set document>>>>>>>>>> "+fileref ); |
391 | fromSetDocument = TRUE; | 389 | fromSetDocument = TRUE; |
392 | if ( fileref.isNull() ) { | 390 | if ( fileref.isNull() ) { |
393 | QMessageBox::warning( this, tr( "Invalid File" ), | 391 | QMessageBox::warning( this, tr( "Invalid File" ), |
394 | tr( "There was a problem in getting the file." ) ); | 392 | tr( "There was a problem in getting the file." ) ); |
395 | return; | 393 | return; |
396 | } | 394 | } |
397 | 395 | ||
398 | clearList(); | 396 | clearList(); |
399 | if( fileref.find( "m3u", 0, TRUE) != -1 ) { //is m3u | 397 | if( fileref.find( "m3u", 0, TRUE) != -1 ) { //is m3u |
400 | readm3u( fileref ); | 398 | readm3u( fileref ); |
401 | } else if( DocLnk( fileref).file().find( "m3u", 0, TRUE) != -1 ) { | 399 | } else if( DocLnk( fileref).file().find( "m3u", 0, TRUE) != -1 ) { |
402 | readm3u( DocLnk( fileref).file() ); | 400 | readm3u( DocLnk( fileref).file() ); |
403 | } else if( fileref.find( "pls", 0, TRUE) != -1 ) { //is pls | 401 | } else if( fileref.find( "pls", 0, TRUE) != -1 ) { //is pls |
404 | readPls( fileref ); | 402 | readPls( fileref ); |
405 | } else if( DocLnk( fileref).file().find( "pls", 0, TRUE) != -1 ) { | 403 | } else if( DocLnk( fileref).file().find( "pls", 0, TRUE) != -1 ) { |
406 | readPls( DocLnk( fileref).file() ); | 404 | readPls( DocLnk( fileref).file() ); |
407 | } else { | 405 | } else { |
408 | clearList(); | 406 | clearList(); |
409 | addToSelection( DocLnk( fileref ) ); | 407 | addToSelection( DocLnk( fileref ) ); |
410 | writeCurrentM3u(); | 408 | writeCurrentM3u(); |
411 | 409 | ||
412 | d->setDocumentUsed = TRUE; | 410 | d->setDocumentUsed = TRUE; |
413 | mediaPlayerState->setPlaying( FALSE ); | 411 | mediaPlayerState->setPlaying( FALSE ); |
414 | mediaPlayerState->setPlaying( TRUE ); | 412 | mediaPlayerState->setPlaying( TRUE ); |
415 | } | 413 | } |
416 | } | 414 | } |
417 | 415 | ||
418 | 416 | ||
419 | void PlayListWidget::useSelectedDocument() { | 417 | void PlayListWidget::useSelectedDocument() { |
420 | d->setDocumentUsed = FALSE; | 418 | d->setDocumentUsed = FALSE; |
421 | } | 419 | } |
422 | 420 | ||
423 | 421 | ||
424 | const DocLnk *PlayListWidget::current() const { // this is fugly | 422 | const DocLnk *PlayListWidget::current() const { // this is fugly |
425 | assert( currentTab() == CurrentPlayList ); | 423 | assert( currentTab() == CurrentPlayList ); |
426 | 424 | ||
427 | // qDebug("playlist"); | 425 | // qDebug("playlist"); |
428 | if ( mediaPlayerState->isUsingPlaylist() ) | 426 | if ( mediaPlayerState->isUsingPlaylist() ) |
429 | return d->selectedFiles->current(); | 427 | return d->selectedFiles->current(); |
430 | 428 | ||
431 | assert( false ); | 429 | assert( false ); |
432 | } | 430 | } |
433 | 431 | ||
434 | 432 | ||
435 | bool PlayListWidget::prev() { | 433 | bool PlayListWidget::prev() { |
436 | if ( mediaPlayerState->isUsingPlaylist() ) { | 434 | if ( mediaPlayerState->isUsingPlaylist() ) { |
437 | if ( mediaPlayerState->isShuffled() ) { | 435 | if ( mediaPlayerState->isShuffled() ) { |
438 | const DocLnk *cur = current(); | 436 | const DocLnk *cur = current(); |
439 | int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); | 437 | int j = 1 + (int)(97.0 * rand() / (RAND_MAX + 1.0)); |
440 | for ( int i = 0; i < j; i++ ) { | 438 | for ( int i = 0; i < j; i++ ) { |
441 | if ( !d->selectedFiles->next() ) | 439 | if ( !d->selectedFiles->next() ) |
442 | d->selectedFiles->first(); | 440 | d->selectedFiles->first(); |
443 | } | 441 | } |
444 | if ( cur == current() ) | 442 | if ( cur == current() ) |
445 | if ( !d->selectedFiles->next() ) { | 443 | if ( !d->selectedFiles->next() ) { |
446 | d->selectedFiles->first(); | 444 | d->selectedFiles->first(); |
447 | } | 445 | } |
448 | return TRUE; | 446 | return TRUE; |
449 | } else { | 447 | } else { |
450 | if ( !d->selectedFiles->prev() ) { | 448 | if ( !d->selectedFiles->prev() ) { |
451 | if ( mediaPlayerState->isLooping() ) { | 449 | if ( mediaPlayerState->isLooping() ) { |
452 | return d->selectedFiles->last(); | 450 | return d->selectedFiles->last(); |
453 | } else { | 451 | } else { |
454 | return FALSE; | 452 | return FALSE; |
455 | } | 453 | } |
456 | } | 454 | } |
457 | return TRUE; | 455 | return TRUE; |
458 | } | 456 | } |
459 | } else { | 457 | } else { |
460 | return mediaPlayerState->isLooping(); | 458 | return mediaPlayerState->isLooping(); |
461 | } | 459 | } |
462 | } | 460 | } |
463 | 461 | ||
464 | 462 | ||
465 | bool PlayListWidget::next() { | 463 | bool PlayListWidget::next() { |
466 | //qDebug("<<<<<<<<<<<<next()"); | 464 | //qDebug("<<<<<<<<<<<<next()"); |
467 | if ( mediaPlayerState->isUsingPlaylist() ) { | 465 | if ( mediaPlayerState->isUsingPlaylist() ) { |
468 | if ( mediaPlayerState->isShuffled() ) { | 466 | if ( mediaPlayerState->isShuffled() ) { |
469 | return prev(); | 467 | return prev(); |
470 | } else { | 468 | } else { |
471 | if ( !d->selectedFiles->next() ) { | 469 | if ( !d->selectedFiles->next() ) { |
472 | if ( mediaPlayerState->isLooping() ) { | 470 | if ( mediaPlayerState->isLooping() ) { |
473 | return d->selectedFiles->first(); | 471 | return d->selectedFiles->first(); |
474 | } else { | 472 | } else { |
475 | return FALSE; | 473 | return FALSE; |
476 | } | 474 | } |
477 | } | 475 | } |
478 | return TRUE; | 476 | return TRUE; |
479 | } | 477 | } |
480 | } else { | 478 | } else { |
481 | return mediaPlayerState->isLooping(); | 479 | return mediaPlayerState->isLooping(); |
482 | } | 480 | } |
483 | } | 481 | } |
484 | 482 | ||
485 | 483 | ||
486 | bool PlayListWidget::first() { | 484 | bool PlayListWidget::first() { |
487 | if ( mediaPlayerState->isUsingPlaylist() ) | 485 | if ( mediaPlayerState->isUsingPlaylist() ) |
488 | return d->selectedFiles->first(); | 486 | return d->selectedFiles->first(); |
489 | else | 487 | else |
490 | return mediaPlayerState->isLooping(); | 488 | return mediaPlayerState->isLooping(); |
491 | } | 489 | } |
492 | 490 | ||
493 | 491 | ||
494 | bool PlayListWidget::last() { | 492 | bool PlayListWidget::last() { |
495 | if ( mediaPlayerState->isUsingPlaylist() ) | 493 | if ( mediaPlayerState->isUsingPlaylist() ) |
496 | return d->selectedFiles->last(); | 494 | return d->selectedFiles->last(); |
497 | else | 495 | else |
498 | return mediaPlayerState->isLooping(); | 496 | return mediaPlayerState->isLooping(); |
499 | } | 497 | } |
500 | 498 | ||
501 | 499 | ||
502 | void PlayListWidget::saveList() { | 500 | void PlayListWidget::saveList() { |
503 | writem3u(); | 501 | writem3u(); |
504 | } | 502 | } |
505 | 503 | ||
506 | 504 | ||
507 | void PlayListWidget::loadList( const DocLnk & lnk) { | 505 | void PlayListWidget::loadList( const DocLnk & lnk) { |
508 | QString name = lnk.name(); | 506 | QString name = lnk.name(); |
509 | // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<currentList is "+name); | 507 | // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<currentList is "+name); |
510 | 508 | ||
511 | if( name.length()>0) { | 509 | if( name.length()>0) { |
512 | setCaption("OpiePlayer: "+name); | 510 | setCaption("OpiePlayer: "+name); |
513 | // qDebug("<<<<<<<<<<<<load list "+ lnk.file()); | 511 | // qDebug("<<<<<<<<<<<<load list "+ lnk.file()); |
514 | clearList(); | 512 | clearList(); |
515 | readm3u(lnk.file()); | 513 | readm3u(lnk.file()); |
516 | tabWidget->setCurrentPage(0); | 514 | tabWidget->setCurrentPage(0); |
517 | } | 515 | } |
518 | } | 516 | } |
519 | 517 | ||
520 | |||
521 | void PlayListWidget::setPlaylist( bool shown ) { | ||
522 | if ( shown ) { | ||
523 | d->playListFrame->show(); | ||
524 | } else { | ||
525 | d->playListFrame->hide(); | ||
526 | } | ||
527 | } | ||
528 | |||
529 | |||
530 | void PlayListWidget::addSelected() { | 518 | void PlayListWidget::addSelected() { |
531 | assert( inFileListMode() ); | 519 | assert( inFileListMode() ); |
532 | 520 | ||
533 | QListView *fileListView = currentFileListView(); | 521 | QListView *fileListView = currentFileListView(); |
534 | QListViewItemIterator it( fileListView ); | 522 | QListViewItemIterator it( fileListView ); |
535 | for ( ; it.current(); ++it ) | 523 | for ( ; it.current(); ++it ) |
536 | if ( it.current()->isSelected() ) { | 524 | if ( it.current()->isSelected() ) { |
537 | QString filename = it.current()->text(3); | 525 | QString filename = it.current()->text(3); |
538 | 526 | ||
539 | DocLnk lnk; | 527 | DocLnk lnk; |
540 | lnk.setName( QFileInfo( filename ).baseName() ); //sets name | 528 | lnk.setName( QFileInfo( filename ).baseName() ); //sets name |
541 | lnk.setFile( filename ); //sets file name | 529 | lnk.setFile( filename ); //sets file name |
542 | 530 | ||
543 | d->selectedFiles->addToSelection( lnk ); | 531 | d->selectedFiles->addToSelection( lnk ); |
544 | } | 532 | } |
545 | 533 | ||
546 | fileListView->clearSelection(); | 534 | fileListView->clearSelection(); |
547 | 535 | ||
548 | tabWidget->setCurrentPage( 0 ); | 536 | tabWidget->setCurrentPage( 0 ); |
549 | writeCurrentM3u(); | 537 | writeCurrentM3u(); |
550 | } | 538 | } |
551 | 539 | ||
552 | 540 | ||
553 | void PlayListWidget::removeSelected() { | 541 | void PlayListWidget::removeSelected() { |
554 | d->selectedFiles->removeSelected( ); | 542 | d->selectedFiles->removeSelected( ); |
555 | writeCurrentM3u(); | 543 | writeCurrentM3u(); |
556 | } | 544 | } |
557 | 545 | ||
558 | 546 | ||
559 | void PlayListWidget::playIt( QListViewItem *it) { | 547 | void PlayListWidget::playIt( QListViewItem *it) { |
560 | if(!it) return; | 548 | if(!it) return; |
561 | mediaPlayerState->setPlaying(FALSE); | 549 | mediaPlayerState->setPlaying(FALSE); |
562 | mediaPlayerState->setPlaying(TRUE); | 550 | mediaPlayerState->setPlaying(TRUE); |
563 | d->selectedFiles->unSelect(); | 551 | d->selectedFiles->unSelect(); |
564 | } | 552 | } |
565 | 553 | ||
566 | 554 | ||
567 | void PlayListWidget::addToSelection( QListViewItem *it) { | 555 | void PlayListWidget::addToSelection( QListViewItem *it) { |
568 | d->setDocumentUsed = FALSE; | 556 | d->setDocumentUsed = FALSE; |
569 | 557 | ||
570 | if(it) { | 558 | if(it) { |
571 | if ( currentTab() == CurrentPlayList ) | 559 | if ( currentTab() == CurrentPlayList ) |
572 | return; | 560 | return; |
573 | // case 1: { | 561 | // case 1: { |
574 | DocLnk lnk; | 562 | DocLnk lnk; |
575 | QString filename; | 563 | QString filename; |
576 | 564 | ||
577 | filename=it->text(3); | 565 | filename=it->text(3); |
578 | lnk.setName( QFileInfo(filename).baseName() ); //sets name | 566 | lnk.setName( QFileInfo(filename).baseName() ); //sets name |
579 | lnk.setFile( filename ); //sets file name | 567 | lnk.setFile( filename ); //sets file name |
580 | d->selectedFiles->addToSelection( lnk); | 568 | d->selectedFiles->addToSelection( lnk); |
581 | 569 | ||
582 | writeCurrentM3u(); | 570 | writeCurrentM3u(); |
583 | tabWidget->setCurrentPage(0); | 571 | tabWidget->setCurrentPage(0); |
584 | 572 | ||
585 | } | 573 | } |
586 | } | 574 | } |
587 | 575 | ||
588 | 576 | ||
589 | void PlayListWidget::tabChanged(QWidget *) { | 577 | void PlayListWidget::tabChanged(QWidget *) { |
590 | 578 | ||
591 | d->tbPlay->setEnabled( true ); | 579 | d->tbPlay->setEnabled( true ); |
592 | 580 | ||
593 | switch ( currentTab() ) { | 581 | switch ( currentTab() ) { |
594 | case CurrentPlayList: | 582 | case CurrentPlayList: |
595 | { | 583 | { |
596 | if( !tbDeletePlaylist->isHidden() ) { | 584 | if( !tbDeletePlaylist->isHidden() ) { |
597 | tbDeletePlaylist->hide(); | 585 | tbDeletePlaylist->hide(); |
598 | } | 586 | } |
599 | d->tbRemoveFromList->setEnabled(TRUE); | 587 | d->tbRemoveFromList->setEnabled(TRUE); |
600 | d->tbAddToList->setEnabled(FALSE); | 588 | d->tbAddToList->setEnabled(FALSE); |
601 | } | 589 | } |
602 | break; | 590 | break; |
603 | case AudioFiles: | 591 | case AudioFiles: |
604 | { | 592 | { |
605 | // audioView->clear(); | 593 | // audioView->clear(); |
606 | if(!audioPopulated) populateAudioView(); | 594 | if(!audioPopulated) populateAudioView(); |
607 | 595 | ||
608 | if( !tbDeletePlaylist->isHidden() ) { | 596 | if( !tbDeletePlaylist->isHidden() ) { |
609 | tbDeletePlaylist->hide(); | 597 | tbDeletePlaylist->hide(); |
610 | } | 598 | } |
611 | d->tbRemoveFromList->setEnabled(FALSE); | 599 | d->tbRemoveFromList->setEnabled(FALSE); |
612 | d->tbAddToList->setEnabled(TRUE); | 600 | d->tbAddToList->setEnabled(TRUE); |
613 | } | 601 | } |
614 | break; | 602 | break; |
615 | case VideoFiles: | 603 | case VideoFiles: |
616 | { | 604 | { |
617 | // videoView->clear(); | 605 | // videoView->clear(); |
618 | if(!videoPopulated) populateVideoView(); | 606 | if(!videoPopulated) populateVideoView(); |
619 | if( !tbDeletePlaylist->isHidden() ) { | 607 | if( !tbDeletePlaylist->isHidden() ) { |
620 | tbDeletePlaylist->hide(); | 608 | tbDeletePlaylist->hide(); |
621 | } | 609 | } |
622 | d->tbRemoveFromList->setEnabled(FALSE); | 610 | d->tbRemoveFromList->setEnabled(FALSE); |
623 | d->tbAddToList->setEnabled(TRUE); | 611 | d->tbAddToList->setEnabled(TRUE); |
624 | } | 612 | } |
625 | break; | 613 | break; |
626 | case PlayLists: | 614 | case PlayLists: |
627 | { | 615 | { |
628 | if( tbDeletePlaylist->isHidden() ) { | 616 | if( tbDeletePlaylist->isHidden() ) { |
629 | tbDeletePlaylist->show(); | 617 | tbDeletePlaylist->show(); |
630 | } | 618 | } |
631 | playLists->reread(); | 619 | playLists->reread(); |
632 | d->tbAddToList->setEnabled(FALSE); | 620 | d->tbAddToList->setEnabled(FALSE); |
633 | 621 | ||
634 | d->tbPlay->setEnabled( false ); | 622 | d->tbPlay->setEnabled( false ); |
635 | } | 623 | } |
636 | break; | 624 | break; |
637 | }; | 625 | }; |
638 | } | 626 | } |
639 | 627 | ||
640 | 628 | ||
641 | void PlayListWidget::btnPlay(bool b) { | 629 | void PlayListWidget::btnPlay(bool b) { |
642 | // mediaPlayerState->setPlaying(false); | 630 | // mediaPlayerState->setPlaying(false); |
643 | mediaPlayerState->setPlaying(b); | 631 | mediaPlayerState->setPlaying(b); |
644 | insanityBool=FALSE; | 632 | insanityBool=FALSE; |
645 | } | 633 | } |
646 | 634 | ||
647 | void PlayListWidget::deletePlaylist() { | 635 | void PlayListWidget::deletePlaylist() { |
648 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), | 636 | switch( QMessageBox::information( this, (tr("Remove Playlist?")), |
649 | (tr("You really want to delete\nthis playlist?")), | 637 | (tr("You really want to delete\nthis playlist?")), |
650 | (tr("Yes")), (tr("No")), 0 )){ | 638 | (tr("Yes")), (tr("No")), 0 )){ |
651 | case 0: // Yes clicked, | 639 | case 0: // Yes clicked, |
652 | QFile().remove(playLists->selectedDocument().file()); | 640 | QFile().remove(playLists->selectedDocument().file()); |
653 | QFile().remove(playLists->selectedDocument().linkFile()); | 641 | QFile().remove(playLists->selectedDocument().linkFile()); |
654 | playLists->reread(); | 642 | playLists->reread(); |
655 | break; | 643 | break; |
656 | case 1: // Cancel | 644 | case 1: // Cancel |
657 | break; | 645 | break; |
658 | }; | 646 | }; |
659 | } | 647 | } |
660 | 648 | ||
661 | 649 | ||
662 | void PlayListWidget::playSelected() { | 650 | void PlayListWidget::playSelected() { |
663 | btnPlay( TRUE); | 651 | btnPlay( TRUE); |
664 | } | 652 | } |
665 | 653 | ||
666 | 654 | ||
667 | void PlayListWidget::scanForAudio() { | 655 | void PlayListWidget::scanForAudio() { |
668 | // qDebug("scan for audio"); | 656 | // qDebug("scan for audio"); |
669 | files.detachChildren(); | 657 | files.detachChildren(); |
670 | QListIterator<DocLnk> sdit( files.children() ); | 658 | QListIterator<DocLnk> sdit( files.children() ); |
671 | for ( ; sdit.current(); ++sdit ) { | 659 | for ( ; sdit.current(); ++sdit ) { |
672 | delete sdit.current(); | 660 | delete sdit.current(); |
673 | } | 661 | } |
674 | // Global::findDocuments( &files, "audio/*"); | 662 | // Global::findDocuments( &files, "audio/*"); |
675 | Global::findDocuments( &files, audioMimes); | 663 | Global::findDocuments( &files, audioMimes); |
676 | audioScan = true; | 664 | audioScan = true; |
677 | populateAudioView(); | 665 | populateAudioView(); |
678 | } | 666 | } |
679 | 667 | ||
680 | void PlayListWidget::scanForVideo() { | 668 | void PlayListWidget::scanForVideo() { |
681 | // qDebug("scan for video"); | 669 | // qDebug("scan for video"); |
682 | vFiles.detachChildren(); | 670 | vFiles.detachChildren(); |
683 | QListIterator<DocLnk> sdit( vFiles.children() ); | 671 | QListIterator<DocLnk> sdit( vFiles.children() ); |
684 | for ( ; sdit.current(); ++sdit ) { | 672 | for ( ; sdit.current(); ++sdit ) { |
685 | delete sdit.current(); | 673 | delete sdit.current(); |
686 | } | 674 | } |
687 | Global::findDocuments(&vFiles, "video/*"); | 675 | Global::findDocuments(&vFiles, "video/*"); |
688 | videoScan = true; | 676 | videoScan = true; |
689 | populateVideoView(); | 677 | populateVideoView(); |
690 | } | 678 | } |
691 | 679 | ||
692 | void PlayListWidget::populateAudioView() { | 680 | void PlayListWidget::populateAudioView() { |
693 | audioView->clear(); | 681 | audioView->clear(); |
694 | StorageInfo storageInfo; | 682 | StorageInfo storageInfo; |
695 | // const QList<FileSystem> &fs = storageInfo.fileSystems(); | 683 | // const QList<FileSystem> &fs = storageInfo.fileSystems(); |
696 | if(!audioScan) { | 684 | if(!audioScan) { |
697 | scanForAudio(); | 685 | scanForAudio(); |
698 | } | 686 | } |
699 | 687 | ||
700 | QListIterator<DocLnk> dit( files.children() ); | 688 | QListIterator<DocLnk> dit( files.children() ); |
701 | // QListIterator<FileSystem> it ( fs ); | 689 | // QListIterator<FileSystem> it ( fs ); |
702 | audioView->clear(); | 690 | audioView->clear(); |
703 | 691 | ||
704 | QString storage; | 692 | QString storage; |
705 | for ( ; dit.current(); ++dit ) { | 693 | for ( ; dit.current(); ++dit ) { |
706 | // // for( ; it.current(); ++it ){ | 694 | // // for( ; it.current(); ++it ){ |
707 | // const QString name = (*dit)->name(); | 695 | // const QString name = (*dit)->name(); |
708 | // const QString path = (*dit)->path(); | 696 | // const QString path = (*dit)->path(); |
709 | // if(dit.current()->file().find(path) != -1 ) { | 697 | // if(dit.current()->file().find(path) != -1 ) { |
710 | // storage = name; | 698 | // storage = name; |
711 | // // } | 699 | // // } |
712 | // } | 700 | // } |
713 | 701 | ||
714 | QListViewItem * newItem; | 702 | QListViewItem * newItem; |
715 | if ( QFile( dit.current()->file()).exists() || | 703 | if ( QFile( dit.current()->file()).exists() || |
716 | dit.current()->file().left(4) == "http" ) { | 704 | dit.current()->file().left(4) == "http" ) { |
717 | long size; | 705 | long size; |
718 | if( dit.current()->file().left(4) == "http" ) | 706 | if( dit.current()->file().left(4) == "http" ) |
719 | size=0; | 707 | size=0; |
720 | else | 708 | else |
721 | size = QFile( dit.current()->file() ).size(); | 709 | size = QFile( dit.current()->file() ).size(); |
722 | 710 | ||
723 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), | 711 | newItem= /*(void)*/ new QListViewItem( audioView, dit.current()->name(), |
724 | QString::number(size ), "" /*storage*/, | 712 | QString::number(size ), "" /*storage*/, |
725 | dit.current()->file() ); | 713 | dit.current()->file() ); |
726 | newItem->setPixmap( 0, Resource::loadPixmap( "opieplayer2/musicfile" ) ); | 714 | newItem->setPixmap( 0, Resource::loadPixmap( "opieplayer2/musicfile" ) ); |
727 | // qDebug("<<<< "+dit.current()->file()); | 715 | // qDebug("<<<< "+dit.current()->file()); |
728 | } | 716 | } |
729 | } | 717 | } |
730 | audioPopulated=true; | 718 | audioPopulated=true; |
731 | } | 719 | } |
732 | 720 | ||
733 | 721 | ||
734 | void PlayListWidget::populateVideoView() { | 722 | void PlayListWidget::populateVideoView() { |
735 | videoView->clear(); | 723 | videoView->clear(); |
736 | StorageInfo storageInfo; | 724 | StorageInfo storageInfo; |
737 | // const QList<FileSystem> &fs = storageInfo.fileSystems(); | 725 | // const QList<FileSystem> &fs = storageInfo.fileSystems(); |
738 | 726 | ||
739 | if(!videoScan ) { | 727 | if(!videoScan ) { |
740 | scanForVideo(); | 728 | scanForVideo(); |
741 | } | 729 | } |
742 | 730 | ||
743 | QListIterator<DocLnk> Vdit( vFiles.children() ); | 731 | QListIterator<DocLnk> Vdit( vFiles.children() ); |
744 | // QListIterator<FileSystem> it ( fs ); | 732 | // QListIterator<FileSystem> it ( fs ); |
745 | videoView->clear(); | 733 | videoView->clear(); |
746 | QString storage, pathName; | 734 | QString storage, pathName; |
747 | for ( ; Vdit.current(); ++Vdit ) { | 735 | for ( ; Vdit.current(); ++Vdit ) { |
748 | // // for( ; it.current(); ++it ) { | 736 | // // for( ; it.current(); ++it ) { |
749 | // const QString name = (*Vdit)->name(); | 737 | // const QString name = (*Vdit)->name(); |
750 | // const QString path = (*Vdit)->path(); | 738 | // const QString path = (*Vdit)->path(); |
751 | // if( Vdit.current()->file().find(path) != -1 ) { | 739 | // if( Vdit.current()->file().find(path) != -1 ) { |
752 | // storage=name; | 740 | // storage=name; |
753 | // pathName=path; | 741 | // pathName=path; |
754 | // // } | 742 | // // } |
755 | // } | 743 | // } |
756 | 744 | ||
757 | QListViewItem * newItem; | 745 | QListViewItem * newItem; |
758 | if ( QFile( Vdit.current()->file() ).exists() ) { | 746 | if ( QFile( Vdit.current()->file() ).exists() ) { |
759 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), | 747 | newItem= /*(void)*/ new QListViewItem( videoView, Vdit.current()->name(), |
760 | QString::number( QFile( Vdit.current()->file() ).size() ), | 748 | QString::number( QFile( Vdit.current()->file() ).size() ), |
761 | ""/*storage*/, Vdit.current()->file()); | 749 | ""/*storage*/, Vdit.current()->file()); |
762 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); | 750 | newItem->setPixmap(0, Resource::loadPixmap( "opieplayer2/videofile" ) ); |
763 | } | 751 | } |
764 | } | 752 | } |
765 | videoPopulated=true; | 753 | videoPopulated=true; |
766 | } | 754 | } |
767 | 755 | ||
768 | QListView *PlayListWidget::currentFileListView() const | 756 | QListView *PlayListWidget::currentFileListView() const |
769 | { | 757 | { |
770 | switch ( currentTab() ) { | 758 | switch ( currentTab() ) { |
771 | case AudioFiles: return audioView; | 759 | case AudioFiles: return audioView; |
772 | case VideoFiles: return videoView; | 760 | case VideoFiles: return videoView; |
773 | default: assert( false ); | 761 | default: assert( false ); |
774 | } | 762 | } |
775 | return 0; | 763 | return 0; |
776 | } | 764 | } |
777 | 765 | ||
778 | bool PlayListWidget::inFileListMode() const | 766 | bool PlayListWidget::inFileListMode() const |
779 | { | 767 | { |
780 | TabType tab = currentTab(); | 768 | TabType tab = currentTab(); |
781 | return tab == AudioFiles || tab == VideoFiles; | 769 | return tab == AudioFiles || tab == VideoFiles; |
782 | } | 770 | } |
783 | 771 | ||
784 | void PlayListWidget::openFile() { | 772 | void PlayListWidget::openFile() { |
785 | // http://66.28.164.33:2080 | 773 | // http://66.28.164.33:2080 |
786 | // http://somafm.com/star0242.m3u | 774 | // http://somafm.com/star0242.m3u |
787 | QString filename, name; | 775 | QString filename, name; |
788 | InputDialog *fileDlg; | 776 | InputDialog *fileDlg; |
789 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); | 777 | fileDlg = new InputDialog(this,tr("Open file or URL"),TRUE, 0); |
790 | fileDlg->exec(); | 778 | fileDlg->exec(); |
791 | if( fileDlg->result() == 1 ) { | 779 | if( fileDlg->result() == 1 ) { |
792 | filename = fileDlg->text(); | 780 | filename = fileDlg->text(); |
793 | qDebug( "Selected filename is " + filename ); | 781 | qDebug( "Selected filename is " + filename ); |
794 | // Om3u *m3uList; | 782 | // Om3u *m3uList; |
795 | DocLnk lnk; | 783 | DocLnk lnk; |
796 | Config cfg( "OpiePlayer" ); | 784 | Config cfg( "OpiePlayer" ); |
797 | cfg.setGroup("PlayList"); | 785 | cfg.setGroup("PlayList"); |
798 | 786 | ||
799 | if(filename.left(4) == "http") { | 787 | if(filename.left(4) == "http") { |
800 | QString m3uFile, m3uFilePath; | 788 | QString m3uFile, m3uFilePath; |
801 | if(filename.find(":",8,TRUE) != -1) { //found a port | 789 | if(filename.find(":",8,TRUE) != -1) { //found a port |
802 | m3uFile = filename.left( filename.find( ":",8,TRUE)); | 790 | m3uFile = filename.left( filename.find( ":",8,TRUE)); |
803 | m3uFile = m3uFile.right( 7); | 791 | m3uFile = m3uFile.right( 7); |
804 | } else if(filename.left(4) == "http"){ | 792 | } else if(filename.left(4) == "http"){ |
805 | m3uFile=filename; | 793 | m3uFile=filename; |
806 | m3uFile = m3uFile.right( m3uFile.length() - 7); | 794 | m3uFile = m3uFile.right( m3uFile.length() - 7); |
807 | } else{ | 795 | } else{ |
808 | m3uFile=filename; | 796 | m3uFile=filename; |
809 | } | 797 | } |
810 | 798 | ||
811 | // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile); | 799 | // qDebug("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"+ m3uFile); |
812 | lnk.setName( filename ); //sets name | 800 | lnk.setName( filename ); //sets name |
813 | lnk.setFile( filename ); //sets file name | 801 | lnk.setFile( filename ); //sets file name |
814 | 802 | ||
815 | // lnk.setIcon("opieplayer2/musicfile"); | 803 | // lnk.setIcon("opieplayer2/musicfile"); |
816 | 804 | ||
817 | d->selectedFiles->addToSelection( lnk ); | 805 | d->selectedFiles->addToSelection( lnk ); |
818 | writeCurrentM3u(); | 806 | writeCurrentM3u(); |
819 | d->selectedFiles->setSelectedItem( lnk.name()); | 807 | d->selectedFiles->setSelectedItem( lnk.name()); |
820 | } | 808 | } |
821 | else if( filename.right( 3) == "m3u" ) { | 809 | else if( filename.right( 3) == "m3u" ) { |
822 | readm3u( filename ); | 810 | readm3u( filename ); |
823 | 811 | ||
824 | } else if( filename.right(3) == "pls" ) { | 812 | } else if( filename.right(3) == "pls" ) { |
825 | readPls( filename ); | 813 | readPls( filename ); |
826 | } else { | 814 | } else { |
827 | lnk.setName( QFileInfo(filename).baseName() ); //sets name | 815 | lnk.setName( QFileInfo(filename).baseName() ); //sets name |
828 | lnk.setFile( filename ); //sets file name | 816 | lnk.setFile( filename ); //sets file name |
829 | d->selectedFiles->addToSelection( lnk); | 817 | d->selectedFiles->addToSelection( lnk); |
830 | writeCurrentM3u(); | 818 | writeCurrentM3u(); |
831 | d->selectedFiles->setSelectedItem( lnk.name()); | 819 | d->selectedFiles->setSelectedItem( lnk.name()); |
832 | } | 820 | } |
833 | } | 821 | } |
834 | 822 | ||
835 | if( fileDlg ) { | 823 | if( fileDlg ) { |
836 | delete fileDlg; | 824 | delete fileDlg; |
837 | } | 825 | } |
838 | } | 826 | } |
839 | 827 | ||
840 | /* | 828 | /* |
841 | reads m3u and shows files/urls to playlist widget */ | 829 | reads m3u and shows files/urls to playlist widget */ |
842 | void PlayListWidget::readm3u( const QString &filename ) { | 830 | void PlayListWidget::readm3u( const QString &filename ) { |
843 | qDebug( "read m3u filename " + filename ); | 831 | qDebug( "read m3u filename " + filename ); |
844 | 832 | ||
845 | Om3u *m3uList; | 833 | Om3u *m3uList; |
846 | QString s, name; | 834 | QString s, name; |
847 | m3uList = new Om3u( filename, IO_ReadOnly ); | 835 | m3uList = new Om3u( filename, IO_ReadOnly ); |
848 | m3uList->readM3u(); | 836 | m3uList->readM3u(); |
849 | DocLnk lnk; | 837 | DocLnk lnk; |
850 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { | 838 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { |
851 | s = *it; | 839 | s = *it; |
852 | // qDebug("reading "+ s); | 840 | // qDebug("reading "+ s); |
853 | if(s.left(4)=="http") { | 841 | if(s.left(4)=="http") { |
854 | lnk.setName( s ); //sets file name | 842 | lnk.setName( s ); //sets file name |
855 | lnk.setIcon("opieplayer2/musicfile"); | 843 | lnk.setIcon("opieplayer2/musicfile"); |
856 | lnk.setFile( s ); //sets file name | 844 | lnk.setFile( s ); //sets file name |
857 | 845 | ||
858 | } else { | 846 | } else { |
859 | // if( QFileInfo( s ).exists() ) { | 847 | // if( QFileInfo( s ).exists() ) { |
860 | lnk.setName( QFileInfo(s).baseName()); | 848 | lnk.setName( QFileInfo(s).baseName()); |
861 | // if(s.right(4) == '.') {//if regular file | 849 | // if(s.right(4) == '.') {//if regular file |
862 | if(s.left(1) != "/") { | 850 | if(s.left(1) != "/") { |
863 | // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s); | 851 | // qDebug("set link "+QFileInfo(filename).dirPath()+"/"+s); |
864 | lnk.setFile( QFileInfo(filename).dirPath()+"/"+s); | 852 | lnk.setFile( QFileInfo(filename).dirPath()+"/"+s); |
865 | // lnk.setIcon(MimeType(s).pixmap() ); | 853 | // lnk.setIcon(MimeType(s).pixmap() ); |
866 | // lnk.setIcon("SoundPlayer"); | 854 | // lnk.setIcon("SoundPlayer"); |
867 | } else { | 855 | } else { |
868 | // qDebug("set link2 "+s); | 856 | // qDebug("set link2 "+s); |
869 | lnk.setFile( s); | 857 | lnk.setFile( s); |
870 | // lnk.setIcon(MimeType(s).pixmap() ); | 858 | // lnk.setIcon(MimeType(s).pixmap() ); |
871 | // lnk.setIcon("SoundPlayer"); | 859 | // lnk.setIcon("SoundPlayer"); |
872 | } | 860 | } |
873 | } | 861 | } |
874 | d->selectedFiles->addToSelection( lnk ); | 862 | d->selectedFiles->addToSelection( lnk ); |
875 | } | 863 | } |
876 | Config config( "OpiePlayer" ); | 864 | Config config( "OpiePlayer" ); |
877 | config.setGroup( "PlayList" ); | 865 | config.setGroup( "PlayList" ); |
878 | 866 | ||
879 | config.writeEntry("CurrentPlaylist",filename); | 867 | config.writeEntry("CurrentPlaylist",filename); |
880 | config.write(); | 868 | config.write(); |
881 | currentPlayList=filename; | 869 | currentPlayList=filename; |
882 | 870 | ||
883 | // m3uList->write(); | 871 | // m3uList->write(); |
884 | m3uList->close(); | 872 | m3uList->close(); |
885 | if(m3uList) delete m3uList; | 873 | if(m3uList) delete m3uList; |
886 | 874 | ||
887 | d->selectedFiles->setSelectedItem( s); | 875 | d->selectedFiles->setSelectedItem( s); |
888 | setCaption(tr("OpiePlayer: ")+ QFileInfo(filename).baseName()); | 876 | setCaption(tr("OpiePlayer: ")+ QFileInfo(filename).baseName()); |
889 | 877 | ||
890 | } | 878 | } |
891 | 879 | ||
892 | /* | 880 | /* |
893 | reads pls and adds files/urls to playlist */ | 881 | reads pls and adds files/urls to playlist */ |
894 | void PlayListWidget::readPls( const QString &filename ) { | 882 | void PlayListWidget::readPls( const QString &filename ) { |
895 | 883 | ||
896 | qDebug( "pls filename is " + filename ); | 884 | qDebug( "pls filename is " + filename ); |
897 | Om3u *m3uList; | 885 | Om3u *m3uList; |
898 | QString s, name; | 886 | QString s, name; |
899 | m3uList = new Om3u( filename, IO_ReadOnly ); | 887 | m3uList = new Om3u( filename, IO_ReadOnly ); |
900 | m3uList->readPls(); | 888 | m3uList->readPls(); |
901 | 889 | ||
902 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { | 890 | for ( QStringList::ConstIterator it = m3uList->begin(); it != m3uList->end(); ++it ) { |
903 | s = *it; | 891 | s = *it; |
904 | // s.replace( QRegExp( "%20" )," " ); | 892 | // s.replace( QRegExp( "%20" )," " ); |
905 | DocLnk lnk( s ); | 893 | DocLnk lnk( s ); |
906 | QFileInfo f( s ); | 894 | QFileInfo f( s ); |
907 | QString name = f.baseName(); | 895 | QString name = f.baseName(); |
908 | 896 | ||
909 | if( name.left( 4 ) == "http" ) { | 897 | if( name.left( 4 ) == "http" ) { |
910 | name = s.right( s.length() - 7); | 898 | name = s.right( s.length() - 7); |
911 | } else { | 899 | } else { |
912 | name = s; | 900 | name = s; |
913 | } | 901 | } |
914 | 902 | ||
915 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); | 903 | name = name.right( name.length() - name.findRev( "\\", -1, TRUE) - 1 ); |
916 | 904 | ||
917 | lnk.setName( name ); | 905 | lnk.setName( name ); |
918 | if( s.at( s.length() - 4) == '.') {// if this is probably a file | 906 | if( s.at( s.length() - 4) == '.') {// if this is probably a file |
919 | lnk.setFile( s ); | 907 | lnk.setFile( s ); |
920 | } else { //if its a url | 908 | } else { //if its a url |
921 | // if( name.right( 1 ).find( '/' ) == -1) { | 909 | // if( name.right( 1 ).find( '/' ) == -1) { |
922 | // s += "/"; | 910 | // s += "/"; |
923 | // } | 911 | // } |
924 | lnk.setFile( s ); | 912 | lnk.setFile( s ); |
925 | } | 913 | } |
926 | lnk.setType( "audio/x-mpegurl" ); | 914 | lnk.setType( "audio/x-mpegurl" ); |
927 | 915 | ||
928 | lnk.writeLink(); | 916 | lnk.writeLink(); |
929 | d->selectedFiles->addToSelection( lnk ); | 917 | d->selectedFiles->addToSelection( lnk ); |
930 | } | 918 | } |
931 | 919 | ||
932 | m3uList->close(); | 920 | m3uList->close(); |
933 | if(m3uList) delete m3uList; | 921 | if(m3uList) delete m3uList; |
934 | } | 922 | } |
935 | 923 | ||
936 | /* | 924 | /* |
937 | writes current playlist to current m3u file */ | 925 | writes current playlist to current m3u file */ |
938 | void PlayListWidget::writeCurrentM3u() { | 926 | void PlayListWidget::writeCurrentM3u() { |
939 | qDebug("writing to current m3u"); | 927 | qDebug("writing to current m3u"); |
940 | Config cfg( "OpiePlayer" ); | 928 | Config cfg( "OpiePlayer" ); |
941 | cfg.setGroup("PlayList"); | 929 | cfg.setGroup("PlayList"); |
942 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default"); | 930 | QString currentPlaylist = cfg.readEntry("CurrentPlaylist","default"); |
943 | 931 | ||
944 | Om3u *m3uList; | 932 | Om3u *m3uList; |
945 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); | 933 | m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); |
946 | if( d->selectedFiles->first()) { | 934 | if( d->selectedFiles->first()) { |
947 | 935 | ||
948 | do { | 936 | do { |
949 | // qDebug( "add writeCurrentM3u " +d->selectedFiles->current()->file()); | 937 | // qDebug( "add writeCurrentM3u " +d->selectedFiles->current()->file()); |
950 | m3uList->add( d->selectedFiles->current()->file() ); | 938 | m3uList->add( d->selectedFiles->current()->file() ); |
951 | } | 939 | } |
952 | while ( d->selectedFiles->next() ); | 940 | while ( d->selectedFiles->next() ); |
953 | // qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" ); | 941 | // qDebug( "<<<<<<<<<<<<>>>>>>>>>>>>>>>>>" ); |
954 | m3uList->write(); | 942 | m3uList->write(); |
955 | m3uList->close(); | 943 | m3uList->close(); |
956 | 944 | ||
957 | if(m3uList) delete m3uList; | 945 | if(m3uList) delete m3uList; |
958 | } | 946 | } |
959 | 947 | ||
960 | } | 948 | } |
961 | 949 | ||
962 | /* | 950 | /* |
963 | writes current playlist to m3u file */ | 951 | writes current playlist to m3u file */ |
964 | void PlayListWidget::writem3u() { | 952 | void PlayListWidget::writem3u() { |
965 | InputDialog *fileDlg; | 953 | InputDialog *fileDlg; |
966 | fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0); | 954 | fileDlg = new InputDialog( this, tr( "Save m3u Playlist " ), TRUE, 0); |
967 | fileDlg->exec(); | 955 | fileDlg->exec(); |
968 | QString name, filename, list; | 956 | QString name, filename, list; |
969 | Om3u *m3uList; | 957 | Om3u *m3uList; |
970 | 958 | ||
971 | if( fileDlg->result() == 1 ) { | 959 | if( fileDlg->result() == 1 ) { |
972 | name = fileDlg->text(); | 960 | name = fileDlg->text(); |
973 | // qDebug( filename ); | 961 | // qDebug( filename ); |
974 | 962 | ||
975 | if( name.left( 1) != "/" ) { | 963 | if( name.left( 1) != "/" ) { |
976 | filename = QPEApplication::documentDir() + "/" + name; | 964 | filename = QPEApplication::documentDir() + "/" + name; |
977 | } | 965 | } |
978 | 966 | ||
979 | if( name.right( 3 ) != "m3u" ) { | 967 | if( name.right( 3 ) != "m3u" ) { |
980 | filename = QPEApplication::documentDir() + "/" +name+".m3u"; | 968 | filename = QPEApplication::documentDir() + "/" +name+".m3u"; |
981 | } | 969 | } |
982 | 970 | ||
983 | if( d->selectedFiles->first()) { | 971 | if( d->selectedFiles->first()) { |
984 | m3uList = new Om3u(filename, IO_ReadWrite); | 972 | m3uList = new Om3u(filename, IO_ReadWrite); |
985 | 973 | ||
986 | do { | 974 | do { |
987 | m3uList->add( d->selectedFiles->current()->file()); | 975 | m3uList->add( d->selectedFiles->current()->file()); |
988 | } | 976 | } |
989 | while ( d->selectedFiles->next() ); | 977 | while ( d->selectedFiles->next() ); |
990 | // qDebug( list ); | 978 | // qDebug( list ); |
991 | m3uList->write(); | 979 | m3uList->write(); |
992 | m3uList->close(); | 980 | m3uList->close(); |
993 | if(m3uList) delete m3uList; | 981 | if(m3uList) delete m3uList; |
994 | 982 | ||
995 | if(fileDlg) delete fileDlg; | 983 | if(fileDlg) delete fileDlg; |
996 | 984 | ||
997 | DocLnk lnk; | 985 | DocLnk lnk; |
998 | lnk.setFile( filename); | 986 | lnk.setFile( filename); |
999 | lnk.setIcon("opieplayer2/playlist2"); | 987 | lnk.setIcon("opieplayer2/playlist2"); |
1000 | lnk.setName( name); //sets file name | 988 | lnk.setName( name); //sets file name |
1001 | 989 | ||
1002 | // qDebug(filename); | 990 | // qDebug(filename); |
1003 | Config config( "OpiePlayer" ); | 991 | Config config( "OpiePlayer" ); |
1004 | config.setGroup( "PlayList" ); | 992 | config.setGroup( "PlayList" ); |
1005 | 993 | ||
1006 | config.writeEntry("CurrentPlaylist",filename); | 994 | config.writeEntry("CurrentPlaylist",filename); |
1007 | currentPlayList=filename; | 995 | currentPlayList=filename; |
1008 | 996 | ||
1009 | if(!lnk.writeLink()) { | 997 | if(!lnk.writeLink()) { |
1010 | qDebug("Writing doclink did not work"); | 998 | qDebug("Writing doclink did not work"); |
1011 | } | 999 | } |
1012 | 1000 | ||
1013 | setCaption(tr("OpiePlayer: ") + name); | 1001 | setCaption(tr("OpiePlayer: ") + name); |
1014 | } | 1002 | } |
1015 | } | 1003 | } |
1016 | } | 1004 | } |
1017 | 1005 | ||
1018 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) { | 1006 | void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) { |
1019 | switch ( e->key() ) { | 1007 | switch ( e->key() ) { |
1020 | ////////////////////////////// Zaurus keys | 1008 | ////////////////////////////// Zaurus keys |
1021 | case Key_F9: //activity | 1009 | case Key_F9: //activity |
1022 | // if(audioUI->isHidden()) | 1010 | // if(audioUI->isHidden()) |
1023 | // audioUI->showMaximized(); | 1011 | // audioUI->showMaximized(); |
1024 | break; | 1012 | break; |
1025 | case Key_F10: //contacts | 1013 | case Key_F10: //contacts |
1026 | // if( videoUI->isHidden()) | 1014 | // if( videoUI->isHidden()) |
1027 | // videoUI->showMaximized(); | 1015 | // videoUI->showMaximized(); |
1028 | break; | 1016 | break; |
1029 | case Key_F11: //menu | 1017 | case Key_F11: //menu |
1030 | break; | 1018 | break; |
1031 | case Key_F12: //home | 1019 | case Key_F12: //home |
1032 | // doBlank(); | 1020 | // doBlank(); |
1033 | break; | 1021 | break; |
1034 | case Key_F13: //mail | 1022 | case Key_F13: //mail |
1035 | // doUnblank(); | 1023 | // doUnblank(); |
1036 | break; | 1024 | break; |
1037 | case Key_Q: //add to playlist | 1025 | case Key_Q: //add to playlist |
1038 | addSelected(); | 1026 | addSelected(); |
1039 | break; | 1027 | break; |
1040 | case Key_R: //remove from playlist | 1028 | case Key_R: //remove from playlist |
1041 | removeSelected(); | 1029 | removeSelected(); |
1042 | break; | 1030 | break; |
1043 | // case Key_P: //play | 1031 | // case Key_P: //play |
1044 | // qDebug("Play"); | 1032 | // qDebug("Play"); |
1045 | // playSelected(); | 1033 | // playSelected(); |
1046 | // break; | 1034 | // break; |
1047 | case Key_Space: | 1035 | case Key_Space: |
1048 | // playSelected(); puh | 1036 | // playSelected(); puh |
1049 | break; | 1037 | break; |
1050 | case Key_1: | 1038 | case Key_1: |
1051 | tabWidget->setCurrentPage( 0 ); | 1039 | tabWidget->setCurrentPage( 0 ); |
1052 | break; | 1040 | break; |
1053 | case Key_2: | 1041 | case Key_2: |
1054 | tabWidget->setCurrentPage( 1 ); | 1042 | tabWidget->setCurrentPage( 1 ); |
1055 | break; | 1043 | break; |
1056 | case Key_3: | 1044 | case Key_3: |
1057 | tabWidget->setCurrentPage( 2 ); | 1045 | tabWidget->setCurrentPage( 2 ); |
1058 | break; | 1046 | break; |
1059 | case Key_4: | 1047 | case Key_4: |
1060 | tabWidget->setCurrentPage( 3 ); | 1048 | tabWidget->setCurrentPage( 3 ); |
1061 | break; | 1049 | break; |
1062 | case Key_Down: | 1050 | case Key_Down: |
1063 | if ( !d->selectedFiles->next() ) | 1051 | if ( !d->selectedFiles->next() ) |
1064 | d->selectedFiles->first(); | 1052 | d->selectedFiles->first(); |
1065 | break; | 1053 | break; |
1066 | case Key_Up: | 1054 | case Key_Up: |
1067 | if ( !d->selectedFiles->prev() ) | 1055 | if ( !d->selectedFiles->prev() ) |
1068 | // d->selectedFiles->last(); | 1056 | // d->selectedFiles->last(); |
1069 | break; | 1057 | break; |
1070 | } | 1058 | } |
1071 | } | 1059 | } |
1072 | 1060 | ||
1073 | void PlayListWidget::pmViewActivated(int index) { | 1061 | void PlayListWidget::pmViewActivated(int index) { |
1074 | // qDebug("%d", index); | 1062 | // qDebug("%d", index); |
1075 | switch(index) { | 1063 | switch(index) { |
1076 | case -16: | 1064 | case -16: |
1077 | { | 1065 | { |
1078 | mediaPlayerState->toggleFullscreen(); | 1066 | mediaPlayerState->toggleFullscreen(); |
1079 | bool b=mediaPlayerState->isFullscreen(); | 1067 | bool b=mediaPlayerState->isFullscreen(); |
1080 | pmView->setItemChecked( index, b); | 1068 | pmView->setItemChecked( index, b); |
1081 | Config cfg( "OpiePlayer" ); | 1069 | Config cfg( "OpiePlayer" ); |
1082 | cfg.writeEntry( "FullScreen", b ); | 1070 | cfg.writeEntry( "FullScreen", b ); |
1083 | } | 1071 | } |
1084 | break; | 1072 | break; |
1085 | }; | 1073 | }; |
1086 | } | 1074 | } |
1087 | 1075 | ||
1088 | void PlayListWidget::populateSkinsMenu() { | 1076 | void PlayListWidget::populateSkinsMenu() { |
1089 | int item = 0; | 1077 | int item = 0; |
1090 | defaultSkinIndex = 0; | 1078 | defaultSkinIndex = 0; |
1091 | QString skinName; | 1079 | QString skinName; |
1092 | Config cfg( "OpiePlayer" ); | 1080 | Config cfg( "OpiePlayer" ); |
1093 | cfg.setGroup("Options" ); | 1081 | cfg.setGroup("Options" ); |
1094 | QString skin = cfg.readEntry( "Skin", "default" ); | 1082 | QString skin = cfg.readEntry( "Skin", "default" ); |
1095 | 1083 | ||
1096 | QDir skinsDir( QPEApplication::qpeDir() + "/pics/opieplayer2/skins" ); | 1084 | QDir skinsDir( QPEApplication::qpeDir() + "/pics/opieplayer2/skins" ); |
1097 | skinsDir.setFilter( QDir::Dirs ); | 1085 | skinsDir.setFilter( QDir::Dirs ); |
1098 | skinsDir.setSorting(QDir::Name ); | 1086 | skinsDir.setSorting(QDir::Name ); |
1099 | const QFileInfoList *skinslist = skinsDir.entryInfoList(); | 1087 | const QFileInfoList *skinslist = skinsDir.entryInfoList(); |
1100 | QFileInfoListIterator it( *skinslist ); | 1088 | QFileInfoListIterator it( *skinslist ); |
1101 | QFileInfo *fi; | 1089 | QFileInfo *fi; |
1102 | while ( ( fi = it.current() ) ) { | 1090 | while ( ( fi = it.current() ) ) { |
1103 | skinName = fi->fileName(); | 1091 | skinName = fi->fileName(); |
1104 | // qDebug( fi->fileName() ); | 1092 | // qDebug( fi->fileName() ); |
1105 | if( skinName != "." && skinName != ".." && skinName !="CVS" ) { | 1093 | if( skinName != "." && skinName != ".." && skinName !="CVS" ) { |
1106 | item = skinsMenu->insertItem( fi->fileName() ) ; | 1094 | item = skinsMenu->insertItem( fi->fileName() ) ; |
1107 | } | 1095 | } |
1108 | if( skinName == "default" ) { | 1096 | if( skinName == "default" ) { |
1109 | defaultSkinIndex = item; | 1097 | defaultSkinIndex = item; |
1110 | } | 1098 | } |
1111 | if( skinName == skin ) { | 1099 | if( skinName == skin ) { |
1112 | skinsMenu->setItemChecked( item, TRUE ); | 1100 | skinsMenu->setItemChecked( item, TRUE ); |
1113 | } | 1101 | } |
1114 | ++it; | 1102 | ++it; |
1115 | } | 1103 | } |
1116 | } | 1104 | } |
1117 | 1105 | ||
1118 | void PlayListWidget::skinsMenuActivated( int item ) { | 1106 | void PlayListWidget::skinsMenuActivated( int item ) { |
1119 | for(unsigned int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) { | 1107 | for(unsigned int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) { |
1120 | skinsMenu->setItemChecked( i, FALSE ); | 1108 | skinsMenu->setItemChecked( i, FALSE ); |
1121 | } | 1109 | } |
1122 | skinsMenu->setItemChecked( item, TRUE ); | 1110 | skinsMenu->setItemChecked( item, TRUE ); |
1123 | 1111 | ||
1124 | Config cfg( "OpiePlayer" ); | 1112 | Config cfg( "OpiePlayer" ); |
1125 | cfg.setGroup("Options"); | 1113 | cfg.setGroup("Options"); |
1126 | cfg.writeEntry("Skin", skinsMenu->text( item ) ); | 1114 | cfg.writeEntry("Skin", skinsMenu->text( item ) ); |
1127 | QMessageBox::warning( this, tr( "OpiePlayer" ), | 1115 | QMessageBox::warning( this, tr( "OpiePlayer" ), |
1128 | tr( "You must <b>restart</b> Opieplayer<br>to see your changes." ) ); | 1116 | tr( "You must <b>restart</b> Opieplayer<br>to see your changes." ) ); |
1129 | } | 1117 | } |
1130 | 1118 | ||
1131 | PlayListWidget::TabType PlayListWidget::currentTab() const | 1119 | PlayListWidget::TabType PlayListWidget::currentTab() const |
1132 | { | 1120 | { |
1133 | static const TabType indexToTabType[ TabTypeCount ] = | 1121 | static const TabType indexToTabType[ TabTypeCount ] = |
1134 | { CurrentPlayList, AudioFiles, VideoFiles, PlayLists }; | 1122 | { CurrentPlayList, AudioFiles, VideoFiles, PlayLists }; |
1135 | 1123 | ||
1136 | int index = tabWidget->currentPageIndex(); | 1124 | int index = tabWidget->currentPageIndex(); |
1137 | assert( index < TabTypeCount && index >= 0 ); | 1125 | assert( index < TabTypeCount && index >= 0 ); |
1138 | 1126 | ||
1139 | return indexToTabType[ index ]; | 1127 | return indexToTabType[ index ]; |
1140 | } | 1128 | } |
1141 | 1129 | ||
1142 | PlayListWidget::Entry PlayListWidget::currentEntry() const | 1130 | PlayListWidget::Entry PlayListWidget::currentEntry() const |
1143 | { | 1131 | { |
1144 | if ( currentTab() == CurrentPlayList ) { | 1132 | if ( currentTab() == CurrentPlayList ) { |
1145 | const DocLnk *lnk = current(); | 1133 | const DocLnk *lnk = current(); |
1146 | return Entry( lnk->name(), lnk->file() ); | 1134 | return Entry( lnk->name(), lnk->file() ); |
1147 | } | 1135 | } |
1148 | 1136 | ||
1149 | return Entry( currentFileListPathName() ); | 1137 | return Entry( currentFileListPathName() ); |
1150 | } | 1138 | } |
1151 | 1139 | ||
1152 | QString PlayListWidget::currentFileListPathName() const { | 1140 | QString PlayListWidget::currentFileListPathName() const { |
1153 | return currentFileListView()->currentItem()->text( 3 ); | 1141 | return currentFileListView()->currentItem()->text( 3 ); |
1154 | } | 1142 | } |
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.h b/noncore/multimedia/opieplayer2/playlistwidget.h index 511a192..fa2837a 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.h +++ b/noncore/multimedia/opieplayer2/playlistwidget.h | |||
@@ -1,141 +1,140 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | 3 | ||
4 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> | 4 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> |
5 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> | 5 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> |
6 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> | 6 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> |
7 | =. | 7 | =. |
8 | .=l. | 8 | .=l. |
9 | .>+-= | 9 | .>+-= |
10 | _;:, .> :=|. This program is free software; you can | 10 | _;:, .> :=|. This program is free software; you can |
11 | .> <`_, > . <= redistribute it and/or modify it under | 11 | .> <`_, > . <= redistribute it and/or modify it under |
12 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | 12 | :`=1 )Y*s>-.-- : the terms of the GNU General Public |
13 | .="- .-=="i, .._ License as published by the Free Software | 13 | .="- .-=="i, .._ License as published by the Free Software |
14 | - . .-<_> .<> Foundation; either version 2 of the License, | 14 | - . .-<_> .<> Foundation; either version 2 of the License, |
15 | ._= =} : or (at your option) any later version. | 15 | ._= =} : or (at your option) any later version. |
16 | .%`+i> _;_. | 16 | .%`+i> _;_. |
17 | .i_,=:_. -<s. This program is distributed in the hope that | 17 | .i_,=:_. -<s. This program is distributed in the hope that |
18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
19 | : .. .:, . . . without even the implied warranty of | 19 | : .. .:, . . . without even the implied warranty of |
20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
22 | ..}^=.= = ; General Public License for more | 22 | ..}^=.= = ; General Public License for more |
23 | ++= -. .` .: details. | 23 | ++= -. .` .: details. |
24 | : = ...= . :.=- | 24 | : = ...= . :.=- |
25 | -. .:....=;==+<; You should have received a copy of the GNU | 25 | -. .:....=;==+<; You should have received a copy of the GNU |
26 | -_. . . )=. = General Public License along with | 26 | -_. . . )=. = General Public License along with |
27 | -- :-=` this library; see the file COPYING.LIB. | 27 | -- :-=` this library; see the file COPYING.LIB. |
28 | If not, write to the Free Software Foundation, | 28 | If not, write to the Free Software Foundation, |
29 | Inc., 59 Temple Place - Suite 330, | 29 | Inc., 59 Temple Place - Suite 330, |
30 | Boston, MA 02111-1307, USA. | 30 | Boston, MA 02111-1307, USA. |
31 | 31 | ||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #ifndef PLAY_LIST_WIDGET_H | 34 | #ifndef PLAY_LIST_WIDGET_H |
35 | #define PLAY_LIST_WIDGET_H | 35 | #define PLAY_LIST_WIDGET_H |
36 | 36 | ||
37 | #include <qmainwindow.h> | 37 | #include <qmainwindow.h> |
38 | #include <qpe/applnk.h> | 38 | #include <qpe/applnk.h> |
39 | #include <qtabwidget.h> | 39 | #include <qtabwidget.h> |
40 | #include <qpe/fileselector.h> | 40 | #include <qpe/fileselector.h> |
41 | #include <qpushbutton.h> | 41 | #include <qpushbutton.h> |
42 | #include <qpopupmenu.h> | 42 | #include <qpopupmenu.h> |
43 | 43 | ||
44 | #include "playlistwidgetgui.h" | 44 | #include "playlistwidgetgui.h" |
45 | 45 | ||
46 | 46 | ||
47 | //class PlayListWidgetPrivate; | 47 | //class PlayListWidgetPrivate; |
48 | class Config; | 48 | class Config; |
49 | class QListViewItem; | 49 | class QListViewItem; |
50 | class QListView; | 50 | class QListView; |
51 | class QPoint; | 51 | class QPoint; |
52 | class QAction; | 52 | class QAction; |
53 | class QLabel; | 53 | class QLabel; |
54 | 54 | ||
55 | class PlayListWidget : public PlayListWidgetGui { | 55 | class PlayListWidget : public PlayListWidgetGui { |
56 | Q_OBJECT | 56 | Q_OBJECT |
57 | public: | 57 | public: |
58 | enum TabType { CurrentPlayList, AudioFiles, VideoFiles, PlayLists }; | 58 | enum TabType { CurrentPlayList, AudioFiles, VideoFiles, PlayLists }; |
59 | enum { TabTypeCount = 4 }; | 59 | enum { TabTypeCount = 4 }; |
60 | 60 | ||
61 | struct Entry | 61 | struct Entry |
62 | { | 62 | { |
63 | Entry( const QString &_name, const QString &_fileName ) | 63 | Entry( const QString &_name, const QString &_fileName ) |
64 | : name( _name ), file( _fileName ) {} | 64 | : name( _name ), file( _fileName ) {} |
65 | Entry( const QString &_fileName ) | 65 | Entry( const QString &_fileName ) |
66 | : name( _fileName ), file( _fileName ) {} | 66 | : name( _fileName ), file( _fileName ) {} |
67 | 67 | ||
68 | QString name; | 68 | QString name; |
69 | QString file; | 69 | QString file; |
70 | }; | 70 | }; |
71 | 71 | ||
72 | PlayListWidget( QWidget* parent=0, const char* name=0, WFlags fl=0 ); | 72 | PlayListWidget( QWidget* parent=0, const char* name=0, WFlags fl=0 ); |
73 | ~PlayListWidget(); | 73 | ~PlayListWidget(); |
74 | DocLnkSet files; | 74 | DocLnkSet files; |
75 | DocLnkSet vFiles; | 75 | DocLnkSet vFiles; |
76 | bool fromSetDocument; | 76 | bool fromSetDocument; |
77 | bool insanityBool; | 77 | bool insanityBool; |
78 | QString setDocFileRef, currentPlayList; | 78 | QString setDocFileRef, currentPlayList; |
79 | // retrieve the current playlist entry (media file link) | 79 | // retrieve the current playlist entry (media file link) |
80 | const DocLnk *current() const; | 80 | const DocLnk *current() const; |
81 | void useSelectedDocument(); | 81 | void useSelectedDocument(); |
82 | int selected; | 82 | int selected; |
83 | TabType currentTab() const; | 83 | TabType currentTab() const; |
84 | 84 | ||
85 | Entry currentEntry() const; | 85 | Entry currentEntry() const; |
86 | 86 | ||
87 | public slots: | 87 | public slots: |
88 | bool first(); | 88 | bool first(); |
89 | bool last(); | 89 | bool last(); |
90 | bool next(); | 90 | bool next(); |
91 | bool prev(); | 91 | bool prev(); |
92 | void writeDefaultPlaylist( ); | 92 | void writeDefaultPlaylist( ); |
93 | QString currentFileListPathName() const; | 93 | QString currentFileListPathName() const; |
94 | protected: | 94 | protected: |
95 | void keyReleaseEvent( QKeyEvent *e); | 95 | void keyReleaseEvent( QKeyEvent *e); |
96 | 96 | ||
97 | private: | 97 | private: |
98 | int defaultSkinIndex; | 98 | int defaultSkinIndex; |
99 | bool audioScan, videoScan, audioPopulated, videoPopulated; | 99 | bool audioScan, videoScan, audioPopulated, videoPopulated; |
100 | void readm3u(const QString &); | 100 | void readm3u(const QString &); |
101 | void readPls(const QString &); | 101 | void readPls(const QString &); |
102 | void initializeStates(); | 102 | void initializeStates(); |
103 | void populateAudioView(); | 103 | void populateAudioView(); |
104 | void populateVideoView(); | 104 | void populateVideoView(); |
105 | 105 | ||
106 | QListView *currentFileListView() const; | 106 | QListView *currentFileListView() const; |
107 | 107 | ||
108 | bool inFileListMode() const; | 108 | bool inFileListMode() const; |
109 | 109 | ||
110 | private slots: | 110 | private slots: |
111 | void populateSkinsMenu(); | 111 | void populateSkinsMenu(); |
112 | void skinsMenuActivated(int); | 112 | void skinsMenuActivated(int); |
113 | void pmViewActivated(int); | 113 | void pmViewActivated(int); |
114 | void writem3u(); | 114 | void writem3u(); |
115 | void writeCurrentM3u(); | 115 | void writeCurrentM3u(); |
116 | void scanForAudio(); | 116 | void scanForAudio(); |
117 | void scanForVideo(); | 117 | void scanForVideo(); |
118 | void openFile(); | 118 | void openFile(); |
119 | void setDocument( const QString& fileref ); | 119 | void setDocument( const QString& fileref ); |
120 | void addToSelection( const DocLnk& ); // Add a media file to the playlist | 120 | void addToSelection( const DocLnk& ); // Add a media file to the playlist |
121 | void addToSelection( QListViewItem* ); // Add a media file to the playlist | 121 | void addToSelection( QListViewItem* ); // Add a media file to the playlist |
122 | void setPlaylist( bool ); // Show/Hide the playlist | ||
123 | void clearList(); | 122 | void clearList(); |
124 | void addAllToList(); | 123 | void addAllToList(); |
125 | void addAllMusicToList(); | 124 | void addAllMusicToList(); |
126 | void addAllVideoToList(); | 125 | void addAllVideoToList(); |
127 | void saveList(); // Save the playlist | 126 | void saveList(); // Save the playlist |
128 | void loadList( const DocLnk &); // Load a playlist | 127 | void loadList( const DocLnk &); // Load a playlist |
129 | void playIt( QListViewItem *); | 128 | void playIt( QListViewItem *); |
130 | void btnPlay(bool); | 129 | void btnPlay(bool); |
131 | void deletePlaylist(); | 130 | void deletePlaylist(); |
132 | void addSelected(); | 131 | void addSelected(); |
133 | void removeSelected(); | 132 | void removeSelected(); |
134 | void tabChanged(QWidget*); | 133 | void tabChanged(QWidget*); |
135 | void viewPressed( int, QListViewItem *, const QPoint&, int); | 134 | void viewPressed( int, QListViewItem *, const QPoint&, int); |
136 | void playlistViewPressed( int, QListViewItem *, const QPoint&, int); | 135 | void playlistViewPressed( int, QListViewItem *, const QPoint&, int); |
137 | void playSelected(); | 136 | void playSelected(); |
138 | }; | 137 | }; |
139 | 138 | ||
140 | #endif // PLAY_LIST_WIDGET_H | 139 | #endif // PLAY_LIST_WIDGET_H |
141 | 140 | ||