author | simon <simon> | 2002-12-02 13:46:23 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-02 13:46:23 (UTC) |
commit | b992707037f3bbf4573c52b34b3d25cbbf07bad0 (patch) (side-by-side diff) | |
tree | b5a5866cda4b3e059001e3159cdae374777d4a72 | |
parent | 6e883bf60ea91cc6b0624c7307edc27ea3db291b (diff) | |
download | opie-b992707037f3bbf4573c52b34b3d25cbbf07bad0.zip opie-b992707037f3bbf4573c52b34b3d25cbbf07bad0.tar.gz opie-b992707037f3bbf4573c52b34b3d25cbbf07bad0.tar.bz2 |
- made the accessor functions constant
-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.cpp | 26 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediaplayerstate.h | 26 |
2 files changed, 26 insertions, 26 deletions
diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp index 0b33dfd..a80d8fd 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.cpp +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.cpp @@ -83,74 +83,74 @@ void MediaPlayerState::writeConfig( Config& cfg ) const { cfg.writeEntry( "FullScreen", isFullscreen ); cfg.writeEntry( "Scaling", isScaled ); cfg.writeEntry( "Looping", isLooping ); cfg.writeEntry( "Shuffle", isShuffled ); cfg.writeEntry( "UsePlayList", usePlaylist ); cfg.writeEntry( "VideoGamma", videoGamma ); } // public stuff -bool MediaPlayerState::streaming() { +bool MediaPlayerState::streaming() const { return isStreaming; } -bool MediaPlayerState::seekable() { +bool MediaPlayerState::seekable() const { return isSeekable; } -bool MediaPlayerState::fullscreen() { +bool MediaPlayerState::fullscreen() const { return isFullscreen; } -bool MediaPlayerState::scaled() { +bool MediaPlayerState::scaled() const { return isScaled; } -bool MediaPlayerState::looping() { +bool MediaPlayerState::looping() const { return isLooping; } -bool MediaPlayerState::shuffled() { +bool MediaPlayerState::shuffled() const { return isShuffled; } -bool MediaPlayerState::playlist() { +bool MediaPlayerState::playlist() const { return usePlaylist; } -bool MediaPlayerState::paused() { +bool MediaPlayerState::paused() const { return isPaused; } -bool MediaPlayerState::playing() { +bool MediaPlayerState::playing() const { return isPlaying; } -bool MediaPlayerState::stop() { +bool MediaPlayerState::stop() const { return isStoped; } -long MediaPlayerState::position() { +long MediaPlayerState::position() const { return curPosition; } -long MediaPlayerState::length() { +long MediaPlayerState::length() const { return curLength; } -char MediaPlayerState::view() { +char MediaPlayerState::view() const { return curView; } // slots void MediaPlayerState::setIsStreaming( bool b ) { if ( isStreaming == b ) { return; } isStreaming = b; } diff --git a/noncore/multimedia/opieplayer2/mediaplayerstate.h b/noncore/multimedia/opieplayer2/mediaplayerstate.h index 154e3b0..f9c1eeb 100644 --- a/noncore/multimedia/opieplayer2/mediaplayerstate.h +++ b/noncore/multimedia/opieplayer2/mediaplayerstate.h @@ -41,37 +41,37 @@ class MediaPlayerDecoder; class Config; class MediaPlayerState : public QObject { Q_OBJECT public: MediaPlayerState( QObject *parent, const char *name ); ~MediaPlayerState(); - bool streaming(); - bool seekable(); - bool fullscreen(); - bool scaled(); - bool looping(); - bool shuffled(); - bool playlist(); - bool paused(); - bool playing(); - bool stop(); - long position(); - long length(); - char view(); + bool streaming() const; + bool seekable() const; + bool fullscreen() const; + bool scaled() const; + bool looping() const; + bool shuffled() const; + bool playlist() const; + bool paused() const; + bool playing() const; + bool stop() const; + long position() const; + long length() const; + char view() const; public slots: void setIsStreaming( bool b ); void setIsSeekable( bool b ); void setFullscreen( bool b ); void setScaled( bool b ); void setLooping( bool b ); void setShuffled( bool b ); void setPlaylist( bool b ); void setPaused( bool b ); void setPlaying( bool b ); void setStop( bool b ); |