summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediawidget.h
authorsimon <simon>2002-12-02 20:32:42 (UTC)
committer simon <simon>2002-12-02 20:32:42 (UTC)
commit6cd1494f86f2f60614c9b9a7b959666dec2500ee (patch) (unidiff)
tree5f5cdbae8be03210fae087eecec2f6b2d070569c /noncore/multimedia/opieplayer2/mediawidget.h
parentabeed050bedee6e2697ea417ed74ab621361da48 (diff)
downloadopie-6cd1494f86f2f60614c9b9a7b959666dec2500ee.zip
opie-6cd1494f86f2f60614c9b9a7b959666dec2500ee.tar.gz
opie-6cd1494f86f2f60614c9b9a7b959666dec2500ee.tar.bz2
- the audiowidget and the videowidget don't rely on the mediaplayerstate
singleton anymore
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediawidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediawidget.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/mediawidget.h b/noncore/multimedia/opieplayer2/mediawidget.h
index fc5198e..64adba9 100644
--- a/noncore/multimedia/opieplayer2/mediawidget.h
+++ b/noncore/multimedia/opieplayer2/mediawidget.h
@@ -28,13 +28,16 @@ class MediaWidget : public QWidget
28{ 28{
29 Q_OBJECT 29 Q_OBJECT
30public: 30public:
31 MediaWidget( QWidget *parent = 0, const char *name = 0 ); 31 MediaWidget( MediaPlayerState &_mediaPlayerState, QWidget *parent = 0, const char *name = 0 );
32 virtual ~MediaWidget(); 32 virtual ~MediaWidget();
33 33
34public slots: 34public slots:
35 virtual void setDisplayType( MediaPlayerState::DisplayType displayType ) = 0; 35 virtual void setDisplayType( MediaPlayerState::DisplayType displayType ) = 0;
36 virtual void setLength( long length ) = 0; 36 virtual void setLength( long length ) = 0;
37 virtual void setPlaying( bool playing ) = 0; 37 virtual void setPlaying( bool playing ) = 0;
38
39protected:
40 MediaPlayerState &mediaPlayerState;
38}; 41};
39 42
40#endif // MEDIAWIDGET_H 43#endif // MEDIAWIDGET_H