-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.cpp | 6 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.h | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp index 586870c..22451b7 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp | |||
@@ -87,2 +87,7 @@ void MediaPlayerState::writeConfig( Config& cfg ) const { | |||
87 | 87 | ||
88 | MediaPlayerState::MediaType MediaPlayerState::mediaType() const | ||
89 | { | ||
90 | return view() == 'a' ? MediaPlayerState::Audio : MediaPlayerState::Video; | ||
91 | } | ||
92 | |||
88 | // slots | 93 | // slots |
@@ -205,2 +210,3 @@ void MediaPlayerState::setView( char v ) { | |||
205 | emit viewChanged(v); | 210 | emit viewChanged(v); |
211 | emit mediaTypeChanged( mediaType() ); | ||
206 | } | 212 | } |
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h index fc4e6cb..9474882 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.h +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h | |||
@@ -49,2 +49,4 @@ Q_OBJECT | |||
49 | public: | 49 | public: |
50 | enum MediaType { Audio, Video }; | ||
51 | |||
50 | MediaPlayerState( QObject *parent, const char *name ); | 52 | MediaPlayerState( QObject *parent, const char *name ); |
@@ -64,2 +66,3 @@ public: | |||
64 | char view() const { return curView; } | 66 | char view() const { return curView; } |
67 | MediaType mediaType() const; | ||
65 | 68 | ||
@@ -110,2 +113,3 @@ signals: | |||
110 | void viewChanged( char ); | 113 | void viewChanged( char ); |
114 | void mediaTypeChanged( MediaType type ); | ||
111 | void isSeekableToggled( bool ); | 115 | void isSeekableToggled( bool ); |