aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/mediaplayer.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-12-14 15:12:20 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-12-14 15:12:20 +0000
commit92f1159a134f4d9dbd93176107afc48e4f77cb81 (patch)
tree4aa971c42e00d36cc8d588273f3ad0ff6b46fb16 /src/qmmpui/mediaplayer.h
parent8351bd6fbf8b9b6b3360a0cfd6546127794d0b89 (diff)
downloadqmmp-92f1159a134f4d9dbd93176107afc48e4f77cb81.tar.gz
qmmp-92f1159a134f4d9dbd93176107afc48e4f77cb81.tar.bz2
qmmp-92f1159a134f4d9dbd93176107afc48e4f77cb81.zip
fixed saving of the playlist settings (Fixes issue 622)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3960 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/mediaplayer.h')
-rw-r--r--src/qmmpui/mediaplayer.h36
1 files changed, 1 insertions, 35 deletions
diff --git a/src/qmmpui/mediaplayer.h b/src/qmmpui/mediaplayer.h
index 1e302ddb2..2d2162527 100644
--- a/src/qmmpui/mediaplayer.h
+++ b/src/qmmpui/mediaplayer.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2012 by Ilya Kotov *
+ * Copyright (C) 2008-2013 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -52,14 +52,6 @@ public:
* Returns playlist manager pointer
*/
PlayListManager *playListManager();
- /*!
- * Returns \b true if "Repeate Track" option is enabled, otherwise returns \b false
- */
- bool isRepeatable() const;
- /*!
- * Returns \b true if "No playlist advance" option is enabled, otherwise returns \b false
- */
- bool isNoPlaylistAdvance() const;
public slots:
/*!
@@ -78,30 +70,6 @@ public slots:
* Sets previous playlist item for playing.
*/
void previous();
- /*!
- * Toggles the current track repeat.
- * @param enable Repeate state of the current track (\b true - to repeat, \b false - to stop repeating)
- */
- void setRepeatable(bool enable);
- /*!
- * When finished playing a song, don't automatically advance to the next
- * @param enable State of the 'No playlist advance' option
- * (\b true - enabled, \b false - normal playback)
- */
- void setNoPlaylistAdvance(bool enable);
-
-signals:
- /*!
- * Tracks current track repeat state;
- * @param enabled New repeate state of the current track (\b true - enabled, \b false - disabled)
- */
- void repeatableChanged(bool enabled);
- /*!
- * Emitted when state of the "No playlist advance" option changes.
- * @param enabled New state of this option (\b true - no playlist advance,
- * \b false - normal playlist behaviour)
- */
- void noPlaylistAdvanceChanged(bool enabled);
private slots:
void playNext();
@@ -114,8 +82,6 @@ private:
PlayListManager *m_pl_manager;
SoundCore *m_core;
static MediaPlayer* m_instance;
- bool m_repeat;
- bool m_noPlaylistAdvance;
int m_skips;
QString m_nextUrl;
};