-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 4 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index ce9faac..11a7b5c 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -1081,90 +1081,90 @@ void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) { | |||
1081 | if ( !d->selectedFiles->prev() ) | 1081 | if ( !d->selectedFiles->prev() ) |
1082 | // d->selectedFiles->last(); | 1082 | // d->selectedFiles->last(); |
1083 | break; | 1083 | break; |
1084 | } | 1084 | } |
1085 | } | 1085 | } |
1086 | 1086 | ||
1087 | void PlayListWidget::pmViewActivated(int index) { | 1087 | void PlayListWidget::pmViewActivated(int index) { |
1088 | // qDebug("%d", index); | 1088 | // qDebug("%d", index); |
1089 | switch(index) { | 1089 | switch(index) { |
1090 | case -16: | 1090 | case -16: |
1091 | { | 1091 | { |
1092 | mediaPlayerState->toggleFullscreen(); | 1092 | mediaPlayerState->toggleFullscreen(); |
1093 | bool b=mediaPlayerState->isFullscreen(); | 1093 | bool b=mediaPlayerState->isFullscreen(); |
1094 | pmView->setItemChecked( index, b); | 1094 | pmView->setItemChecked( index, b); |
1095 | Config cfg( "OpiePlayer" ); | 1095 | Config cfg( "OpiePlayer" ); |
1096 | cfg.writeEntry( "FullScreen", b ); | 1096 | cfg.writeEntry( "FullScreen", b ); |
1097 | } | 1097 | } |
1098 | break; | 1098 | break; |
1099 | }; | 1099 | }; |
1100 | } | 1100 | } |
1101 | 1101 | ||
1102 | void PlayListWidget::populateSkinsMenu() { | 1102 | void PlayListWidget::populateSkinsMenu() { |
1103 | int item = 0; | 1103 | int item = 0; |
1104 | defaultSkinIndex = 0; | 1104 | defaultSkinIndex = 0; |
1105 | QString skinName; | 1105 | QString skinName; |
1106 | Config cfg( "OpiePlayer" ); | 1106 | Config cfg( "OpiePlayer" ); |
1107 | cfg.setGroup("Options" ); | 1107 | cfg.setGroup("Options" ); |
1108 | QString skin = cfg.readEntry( "Skin", "default" ); | 1108 | QString skin = cfg.readEntry( "Skin", "default" ); |
1109 | 1109 | ||
1110 | QDir skinsDir( QPEApplication::qpeDir() + "/pics/opieplayer2/skins" ); | 1110 | QDir skinsDir( QPEApplication::qpeDir() + "/pics/opieplayer2/skins" ); |
1111 | skinsDir.setFilter( QDir::Dirs ); | 1111 | skinsDir.setFilter( QDir::Dirs ); |
1112 | skinsDir.setSorting(QDir::Name ); | 1112 | skinsDir.setSorting(QDir::Name ); |
1113 | const QFileInfoList *skinslist = skinsDir.entryInfoList(); | 1113 | const QFileInfoList *skinslist = skinsDir.entryInfoList(); |
1114 | QFileInfoListIterator it( *skinslist ); | 1114 | QFileInfoListIterator it( *skinslist ); |
1115 | QFileInfo *fi; | 1115 | QFileInfo *fi; |
1116 | while ( ( fi = it.current() ) ) { | 1116 | while ( ( fi = it.current() ) ) { |
1117 | skinName = fi->fileName(); | 1117 | skinName = fi->fileName(); |
1118 | // qDebug( fi->fileName() ); | 1118 | // qDebug( fi->fileName() ); |
1119 | if( skinName != "." && skinName != ".." && skinName !="CVS" ) { | 1119 | if( skinName != "." && skinName != ".." && skinName !="CVS" ) { |
1120 | item = skinsMenu->insertItem( fi->fileName() ) ; | 1120 | item = skinsMenu->insertItem( fi->fileName() ) ; |
1121 | } | 1121 | } |
1122 | if( skinName == "default" ) { | 1122 | if( skinName == "default" ) { |
1123 | defaultSkinIndex = item; | 1123 | defaultSkinIndex = item; |
1124 | } | 1124 | } |
1125 | if( skinName == skin ) { | 1125 | if( skinName == skin ) { |
1126 | skinsMenu->setItemChecked( item, TRUE ); | 1126 | skinsMenu->setItemChecked( item, TRUE ); |
1127 | } | 1127 | } |
1128 | ++it; | 1128 | ++it; |
1129 | } | 1129 | } |
1130 | } | 1130 | } |
1131 | 1131 | ||
1132 | void PlayListWidget::skinsMenuActivated( int item ) { | 1132 | void PlayListWidget::skinsMenuActivated( int item ) { |
1133 | for(unsigned int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) { | 1133 | for(unsigned int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) { |
1134 | skinsMenu->setItemChecked( i, FALSE ); | 1134 | skinsMenu->setItemChecked( i, FALSE ); |
1135 | } | 1135 | } |
1136 | skinsMenu->setItemChecked( item, TRUE ); | 1136 | skinsMenu->setItemChecked( item, TRUE ); |
1137 | 1137 | ||
1138 | Config cfg( "OpiePlayer" ); | 1138 | Config cfg( "OpiePlayer" ); |
1139 | cfg.setGroup("Options"); | 1139 | cfg.setGroup("Options"); |
1140 | cfg.writeEntry("Skin", skinsMenu->text( item ) ); | 1140 | cfg.writeEntry("Skin", skinsMenu->text( item ) ); |
1141 | QMessageBox::warning( this, tr( "OpiePlayer" ), | 1141 | QMessageBox::warning( this, tr( "OpiePlayer" ), |
1142 | tr( "You must <b>restart</b> Opieplayer<br>to see your changes." ) ); | 1142 | tr( "You must <b>restart</b> Opieplayer<br>to see your changes." ) ); |
1143 | } | 1143 | } |
1144 | 1144 | ||
1145 | int PlayListWidget::whichList() { | 1145 | int PlayListWidget::whichList() const { |
1146 | return tabWidget->currentPageIndex(); | 1146 | return tabWidget->currentPageIndex(); |
1147 | } | 1147 | } |
1148 | 1148 | ||
1149 | PlayListWidget::TabType PlayListWidget::currentTab() const | 1149 | PlayListWidget::TabType PlayListWidget::currentTab() const |
1150 | { | 1150 | { |
1151 | static const TabType indexToTabType[ NumTabTypes ] = | 1151 | static const TabType indexToTabType[ NumTabTypes ] = |
1152 | { CurrentPlayList, AudioFiles, VideoFiles, PlayLists }; | 1152 | { CurrentPlayList, AudioFiles, VideoFiles, PlayLists }; |
1153 | 1153 | ||
1154 | int index = tabWidget->currentPageIndex(); | 1154 | int index = tabWidget->currentPageIndex(); |
1155 | assert( index < NumTabTypes && index >= 0 ); | 1155 | assert( index < NumTabTypes && index >= 0 ); |
1156 | 1156 | ||
1157 | return indexToTabType[ index ]; | 1157 | return indexToTabType[ index ]; |
1158 | } | 1158 | } |
1159 | 1159 | ||
1160 | QString PlayListWidget::currentFileListPathName() { | 1160 | QString PlayListWidget::currentFileListPathName() const { |
1161 | switch (whichList()) { | 1161 | switch (whichList()) { |
1162 | case 1: | 1162 | case 1: |
1163 | return audioView->currentItem()->text(3); | 1163 | return audioView->currentItem()->text(3); |
1164 | break; | 1164 | break; |
1165 | case 2: | 1165 | case 2: |
1166 | return videoView->currentItem()->text(3); | 1166 | return videoView->currentItem()->text(3); |
1167 | break; | 1167 | break; |
1168 | }; | 1168 | }; |
1169 | return ""; | 1169 | return ""; |
1170 | } | 1170 | } |
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.h b/noncore/multimedia/opieplayer2/playlistwidget.h index 05d53a4..7044abe 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.h +++ b/noncore/multimedia/opieplayer2/playlistwidget.h | |||
@@ -7,118 +7,118 @@ | |||
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, NumTabTypes = 4 }; | 58 | enum TabType { CurrentPlayList, AudioFiles, VideoFiles, PlayLists, NumTabTypes = 4 }; |
59 | 59 | ||
60 | PlayListWidget( QWidget* parent=0, const char* name=0, WFlags fl=0 ); | 60 | PlayListWidget( QWidget* parent=0, const char* name=0, WFlags fl=0 ); |
61 | ~PlayListWidget(); | 61 | ~PlayListWidget(); |
62 | DocLnkSet files; | 62 | DocLnkSet files; |
63 | DocLnkSet vFiles; | 63 | DocLnkSet vFiles; |
64 | bool fromSetDocument; | 64 | bool fromSetDocument; |
65 | bool insanityBool; | 65 | bool insanityBool; |
66 | QString setDocFileRef, currentPlayList; | 66 | QString setDocFileRef, currentPlayList; |
67 | // retrieve the current playlist entry (media file link) | 67 | // retrieve the current playlist entry (media file link) |
68 | const DocLnk *current(); | 68 | const DocLnk *current(); |
69 | void useSelectedDocument(); | 69 | void useSelectedDocument(); |
70 | int selected; | 70 | int selected; |
71 | int whichList(); | 71 | int whichList() const; |
72 | TabType currentTab() const; | 72 | TabType currentTab() const; |
73 | 73 | ||
74 | public slots: | 74 | public slots: |
75 | bool first(); | 75 | bool first(); |
76 | bool last(); | 76 | bool last(); |
77 | bool next(); | 77 | bool next(); |
78 | bool prev(); | 78 | bool prev(); |
79 | void writeDefaultPlaylist( ); | 79 | void writeDefaultPlaylist( ); |
80 | QString currentFileListPathName(); | 80 | QString currentFileListPathName() const; |
81 | protected: | 81 | protected: |
82 | void keyReleaseEvent( QKeyEvent *e); | 82 | void keyReleaseEvent( QKeyEvent *e); |
83 | 83 | ||
84 | private: | 84 | private: |
85 | int defaultSkinIndex; | 85 | int defaultSkinIndex; |
86 | bool audioScan, videoScan, audioPopulated, videoPopulated; | 86 | bool audioScan, videoScan, audioPopulated, videoPopulated; |
87 | void readm3u(const QString &); | 87 | void readm3u(const QString &); |
88 | void readPls(const QString &); | 88 | void readPls(const QString &); |
89 | void initializeStates(); | 89 | void initializeStates(); |
90 | void populateAudioView(); | 90 | void populateAudioView(); |
91 | void populateVideoView(); | 91 | void populateVideoView(); |
92 | 92 | ||
93 | private slots: | 93 | private slots: |
94 | void populateSkinsMenu(); | 94 | void populateSkinsMenu(); |
95 | void skinsMenuActivated(int); | 95 | void skinsMenuActivated(int); |
96 | void pmViewActivated(int); | 96 | void pmViewActivated(int); |
97 | void writem3u(); | 97 | void writem3u(); |
98 | void writeCurrentM3u(); | 98 | void writeCurrentM3u(); |
99 | void scanForAudio(); | 99 | void scanForAudio(); |
100 | void scanForVideo(); | 100 | void scanForVideo(); |
101 | void openFile(); | 101 | void openFile(); |
102 | void setDocument( const QString& fileref ); | 102 | void setDocument( const QString& fileref ); |
103 | void addToSelection( const DocLnk& ); // Add a media file to the playlist | 103 | void addToSelection( const DocLnk& ); // Add a media file to the playlist |
104 | void addToSelection( QListViewItem* ); // Add a media file to the playlist | 104 | void addToSelection( QListViewItem* ); // Add a media file to the playlist |
105 | void setPlaylist( bool ); // Show/Hide the playlist | 105 | void setPlaylist( bool ); // Show/Hide the playlist |
106 | void clearList(); | 106 | void clearList(); |
107 | void addAllToList(); | 107 | void addAllToList(); |
108 | void addAllMusicToList(); | 108 | void addAllMusicToList(); |
109 | void addAllVideoToList(); | 109 | void addAllVideoToList(); |
110 | void saveList(); // Save the playlist | 110 | void saveList(); // Save the playlist |
111 | void loadList( const DocLnk &); // Load a playlist | 111 | void loadList( const DocLnk &); // Load a playlist |
112 | void playIt( QListViewItem *); | 112 | void playIt( QListViewItem *); |
113 | void btnPlay(bool); | 113 | void btnPlay(bool); |
114 | void deletePlaylist(); | 114 | void deletePlaylist(); |
115 | void addSelected(); | 115 | void addSelected(); |
116 | void removeSelected(); | 116 | void removeSelected(); |
117 | void tabChanged(QWidget*); | 117 | void tabChanged(QWidget*); |
118 | void viewPressed( int, QListViewItem *, const QPoint&, int); | 118 | void viewPressed( int, QListViewItem *, const QPoint&, int); |
119 | void playlistViewPressed( int, QListViewItem *, const QPoint&, int); | 119 | void playlistViewPressed( int, QListViewItem *, const QPoint&, int); |
120 | void playSelected(); | 120 | void playSelected(); |
121 | }; | 121 | }; |
122 | 122 | ||
123 | #endif // PLAY_LIST_WIDGET_H | 123 | #endif // PLAY_LIST_WIDGET_H |
124 | 124 | ||