summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediaplayerstate.h
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediaplayerstate.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h
index 7aa0ff2..dbbb0f2 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.h
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h
@@ -32,25 +32,25 @@ public slots:
32 void setFullscreen( bool b ); 32 void setFullscreen( bool b );
33 void setScaled( bool b ); 33 void setScaled( bool b );
34 void setLooping( bool b ); 34 void setLooping( bool b );
35 void setShuffled( bool b ); 35 void setShuffled( bool b );
36 void setPlaylist( bool b ); 36 void setPlaylist( bool b );
37 void setPaused( bool b ); 37 void setPaused( bool b );
38 void setPlaying( bool b ); 38 void setPlaying( bool b );
39 void setPosition( long p ); 39 void setPosition( long p );
40 void updatePosition( long p ); 40 void updatePosition( long p );
41 void setLength( long l ); 41 void setLength( long l );
42 void setView( char v ); 42 void setView( char v );
43 43
44 void setPrev() ; 44 void setPrev();
45 void setNext(); 45 void setNext();
46 void setList(); 46 void setList();
47 void setVideo(); 47 void setVideo();
48 void setAudio(); 48 void setAudio();
49 49
50 void toggleFullscreen(); 50 void toggleFullscreen();
51 void toggleScaled(); 51 void toggleScaled();
52 void toggleLooping(); 52 void toggleLooping();
53 void toggleShuffled(); 53 void toggleShuffled();
54 void togglePlaylist(); 54 void togglePlaylist();
55 void togglePaused(); 55 void togglePaused();
56 void togglePlaying(); 56 void togglePlaying();
@@ -76,17 +76,19 @@ private:
76 bool isScaled; 76 bool isScaled;
77 bool isLooping; 77 bool isLooping;
78 bool isShuffled; 78 bool isShuffled;
79 bool usePlaylist; 79 bool usePlaylist;
80 bool isPaused; 80 bool isPaused;
81 bool isPlaying; 81 bool isPlaying;
82 long curPosition; 82 long curPosition;
83 long curLength; 83 long curLength;
84 char curView; 84 char curView;
85 85
86 void readConfig( Config& cfg ); 86 void readConfig( Config& cfg );
87 void writeConfig( Config& cfg ) const; 87 void writeConfig( Config& cfg ) const;
88
89
88}; 90};
89 91
90 92
91#endif // MEDIA_PLAYER_STATE_H 93#endif // MEDIA_PLAYER_STATE_H
92 94