summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/mediaplayerstate.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/mediaplayerstate.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/mediaplayerstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/multimedia/opieplayer/mediaplayerstate.h b/core/multimedia/opieplayer/mediaplayerstate.h
index 26185c5..1c65599 100644
--- a/core/multimedia/opieplayer/mediaplayerstate.h
+++ b/core/multimedia/opieplayer/mediaplayerstate.h
@@ -30,12 +30,13 @@ class Config;
30 30
31class MediaPlayerState : public QObject { 31class MediaPlayerState : public QObject {
32Q_OBJECT 32Q_OBJECT
33public: 33public:
34 MediaPlayerState( QObject *parent, const char *name ); 34 MediaPlayerState( QObject *parent, const char *name );
35 ~MediaPlayerState(); 35 ~MediaPlayerState();
36 bool isPaused;
36 37
37 bool isStreaming; 38 bool isStreaming;
38 bool fullscreen() { return isFullscreen; } 39 bool fullscreen() { return isFullscreen; }
39 bool scaled() { return isScaled; } 40 bool scaled() { return isScaled; }
40 bool looping() { return isLooping; } 41 bool looping() { return isLooping; }
41 bool shuffled() { return isShuffled; } 42 bool shuffled() { return isShuffled; }
@@ -98,13 +99,12 @@ signals:
98private: 99private:
99 bool isFullscreen; 100 bool isFullscreen;
100 bool isScaled; 101 bool isScaled;
101 bool isLooping; 102 bool isLooping;
102 bool isShuffled; 103 bool isShuffled;
103 bool usePlaylist; 104 bool usePlaylist;
104 bool isPaused;
105 bool isPlaying; 105 bool isPlaying;
106 long curPosition; 106 long curPosition;
107 long curLength; 107 long curLength;
108 char curView; 108 char curView;
109 109
110 MediaPlayerDecoder *decoder; 110 MediaPlayerDecoder *decoder;