summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
Side-by-side diff
Diffstat (limited to 'noncore/multimedia/opieplayer2/mediaplayerstate.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/mediaplayerstate.cpp57
1 files changed, 0 insertions, 57 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
index 85d9bac..0d21027 100644
--- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
+++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp
@@ -79,81 +79,24 @@ void MediaPlayerState::readConfig( Config& cfg ) {
void MediaPlayerState::writeConfig( Config& cfg ) const {
cfg.setGroup( "Options" );
cfg.writeEntry( "FullScreen", fullscreen );
cfg.writeEntry( "Scaling", scaled );
cfg.writeEntry( "Looping", looping );
cfg.writeEntry( "Shuffle", shuffled );
cfg.writeEntry( "UsePlayList", usePlaylist );
cfg.writeEntry( "VideoGamma", videoGamma );
}
-
-// public stuff
-
-
-bool MediaPlayerState::isStreaming() const {
- return streaming;
-}
-
-bool MediaPlayerState::isSeekable() const {
- return seekable;
-}
-
-bool MediaPlayerState::isFullscreen() const {
- return fullscreen;
-}
-
-bool MediaPlayerState::isScaled() const {
- return scaled;
-}
-
-bool MediaPlayerState::isLooping() const {
- return looping;
-}
-
-bool MediaPlayerState::isShuffled() const {
- return shuffled;
-}
-
-
-bool MediaPlayerState::isUsingPlaylist() const {
- return usePlaylist;
-}
-
-bool MediaPlayerState::isPaused() const {
- return paused;
-}
-
-bool MediaPlayerState::isPlaying() const {
- return playing;
-}
-
-bool MediaPlayerState::isStop() const {
- return stoped;
-}
-
-long MediaPlayerState::position() const {
- return curPosition;
-}
-
-long MediaPlayerState::length() const {
- return curLength;
-}
-
-char MediaPlayerState::view() const {
- return curView;
-}
-
// slots
void MediaPlayerState::setIsStreaming( bool b ) {
if ( streaming == b ) {
return;
}
streaming = b;
}
void MediaPlayerState::setIsSeekable( bool b ) {
//if ( isSeekable == b ) {