summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediaplayerstate.h
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediaplayerstate.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h
index c887bb8..6fe6d76 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.h
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h
@@ -61,6 +61,7 @@ public:
61 bool isPaused() const { return paused; } 61 bool isPaused() const { return paused; }
62 bool isPlaying() const { return playing; } 62 bool isPlaying() const { return playing; }
63 bool isStopped() const { return stopped; } 63 bool isStopped() const { return stopped; }
64 bool isInitialized() const;
64 long position() const { return curPosition; } 65 long position() const { return curPosition; }
65 long length() const { return curLength; } 66 long length() const { return curLength; }
66 DisplayType displayType() const; 67 DisplayType displayType() const;
@@ -97,6 +98,7 @@ public slots:
97 void toggleBlank(); 98 void toggleBlank();
98 void writeConfig( Config& cfg ) const; 99 void writeConfig( Config& cfg ) const;
99 100
101 void setBackendInitialized();
100 102
101signals: 103signals:
102 void fullscreenToggled( bool ); 104 void fullscreenToggled( bool );
@@ -116,6 +118,8 @@ signals:
116 void prev(); 118 void prev();
117 void next(); 119 void next();
118 120
121 void initialized();
122
119private: 123private:
120 bool streaming : 1; 124 bool streaming : 1;
121 bool seekable : 1; 125 bool seekable : 1;
@@ -128,6 +132,7 @@ private:
128 bool paused : 1; 132 bool paused : 1;
129 bool playing : 1; 133 bool playing : 1;
130 bool stopped : 1; 134 bool stopped : 1;
135 bool backendInitialized : 1;
131 long curPosition; 136 long curPosition;
132 long curLength; 137 long curLength;
133 DisplayType m_displayType; 138 DisplayType m_displayType;