summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/playlistwidget.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/playlistwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/playlistwidget.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/multimedia/opieplayer/playlistwidget.h b/core/multimedia/opieplayer/playlistwidget.h
index f22770f..c07d4f8 100644
--- a/core/multimedia/opieplayer/playlistwidget.h
+++ b/core/multimedia/opieplayer/playlistwidget.h
@@ -27,91 +27,95 @@
27#include <qpushbutton.h> 27#include <qpushbutton.h>
28 28
29/* #include <qtimer.h> */ 29/* #include <qtimer.h> */
30 30
31 31
32class PlayListWidgetPrivate; 32class PlayListWidgetPrivate;
33class Config; 33class Config;
34class QListViewItem; 34class QListViewItem;
35class QListView; 35class QListView;
36class QPoint; 36class QPoint;
37class QAction; 37class QAction;
38class QLabel; 38class QLabel;
39 39
40class PlayListWidget : public QMainWindow { 40class PlayListWidget : public QMainWindow {
41 Q_OBJECT 41 Q_OBJECT
42public: 42public:
43 PlayListWidget( QWidget* parent=0, const char* name=0, WFlags fl=0 ); 43 PlayListWidget( QWidget* parent=0, const char* name=0, WFlags fl=0 );
44 ~PlayListWidget(); 44 ~PlayListWidget();
45 QTabWidget * tabWidget; 45 QTabWidget * tabWidget;
46 QAction *fullScreenButton, *scaleButton; 46 QAction *fullScreenButton, *scaleButton;
47 DocLnkSet files; 47 DocLnkSet files;
48 DocLnkSet vFiles; 48 DocLnkSet vFiles;
49 QListView *audioView, *videoView, *playlistView; 49 QListView *audioView, *videoView, *playlistView;
50 QLabel *libString; 50 QLabel *libString;
51 bool fromSetDocument; 51 bool fromSetDocument;
52 bool insanityBool; 52 bool insanityBool;
53 QString setDocFileRef; 53 QString setDocFileRef;
54 // retrieve the current playlist entry (media file link) 54 // retrieve the current playlist entry (media file link)
55 const DocLnk *current(); 55 const DocLnk *current();
56 void useSelectedDocument(); 56 void useSelectedDocument();
57/* QTimer * menuTimer; */ 57/* QTimer * menuTimer; */
58 FileSelector* playLists; 58 FileSelector* playLists;
59 QPushButton *tbDeletePlaylist; 59 QPushButton *tbDeletePlaylist;
60 int fd; 60 int fd;
61public slots: 61public slots:
62 bool first(); 62 bool first();
63 bool last(); 63 bool last();
64 bool next(); 64 bool next();
65 bool prev(); 65 bool prev();
66/* void setFullScreen(); */ 66/* void setFullScreen(); */
67/* void setScaled(); */ 67/* void setScaled(); */
68protected: 68protected:
69/* void contentsMousePressEvent( QMouseEvent * e ); */ 69/* void contentsMousePressEvent( QMouseEvent * e ); */
70/* void contentsMouseReleaseEvent( QMouseEvent * e ); */ 70/* void contentsMouseReleaseEvent( QMouseEvent * e ); */
71void keyReleaseEvent( QKeyEvent *e); 71void keyReleaseEvent( QKeyEvent *e);
72private: 72private:
73 void doBlank(); 73 void doBlank();
74 void doUnblank(); 74 void doUnblank();
75 75 void readm3u(const QString &);
76 void writem3u(const QString &);
77 void readPls(const QString &);
78
79
76 void initializeStates(); 80 void initializeStates();
77 void readConfig( Config& cfg ); 81 void readConfig( Config& cfg );
78 void writeConfig( Config& cfg ) const; 82 void writeConfig( Config& cfg ) const;
79 PlayListWidgetPrivate *d; // Private implementation data 83 PlayListWidgetPrivate *d; // Private implementation data
80 void populateAudioView(); 84 void populateAudioView();
81 void populateVideoView(); 85 void populateVideoView();
82private slots: 86private slots:
83 void openFile(); 87 void openFile();
84 void setDocument( const QString& fileref ); 88 void setDocument( const QString& fileref );
85 void addToSelection( const DocLnk& ); // Add a media file to the playlist 89 void addToSelection( const DocLnk& ); // Add a media file to the playlist
86 void addToSelection( QListViewItem* ); // Add a media file to the playlist 90 void addToSelection( QListViewItem* ); // Add a media file to the playlist
87 void setActiveWindow(); // need to handle this to show the right view 91 void setActiveWindow(); // need to handle this to show the right view
88 void setPlaylist( bool ); // Show/Hide the playlist 92 void setPlaylist( bool ); // Show/Hide the playlist
89 void setView( char ); 93 void setView( char );
90 void clearList(); 94 void clearList();
91 void addAllToList(); 95 void addAllToList();
92 void addAllMusicToList(); 96 void addAllMusicToList();
93 void addAllVideoToList(); 97 void addAllVideoToList();
94 void saveList(); // Save the playlist 98 void saveList(); // Save the playlist
95 void loadList( const DocLnk &); // Load a playlist 99 void loadList( const DocLnk &); // Load a playlist
96 void playIt( QListViewItem *); 100 void playIt( QListViewItem *);
97 101
98 void btnPlay(bool); 102 void btnPlay(bool);
99 void deletePlaylist(); 103 void deletePlaylist();
100 void addSelected(); 104 void addSelected();
101 void removeSelected(); 105 void removeSelected();
102 void tabChanged(QWidget*); 106 void tabChanged(QWidget*);
103 void viewPressed( int, QListViewItem *, const QPoint&, int); 107 void viewPressed( int, QListViewItem *, const QPoint&, int);
104 void playlistViewPressed( int, QListViewItem *, const QPoint&, int); 108 void playlistViewPressed( int, QListViewItem *, const QPoint&, int);
105 void playSelected(); 109 void playSelected();
106 void listDelete(); 110 void listDelete();
107 111
108protected slots: 112protected slots:
109/* void cancelMenuTimer(); */ 113/* void cancelMenuTimer(); */
110/* void showFileMenu(); */ 114/* void showFileMenu(); */
111 115
112 116
113}; 117};
114 118
115 119
116#endif // PLAY_LIST_WIDGET_H 120#endif // PLAY_LIST_WIDGET_H
117 121