You can now move entries around in the playlist.

This commit is contained in:
Tobias Rundstrom 2006-03-01 00:39:44 -03:00
parent ce54eaba15
commit 5965debcc8
3 changed files with 168 additions and 25 deletions

View file

@ -29,6 +29,7 @@ class XMMSHandler : public QObject, public sigc::trackable {
void playlistAddURL (QString);
void playlistClear (void);
void playlistRemove (uint pos) { delete m_xmmsc->playlist_remove (pos); }
void playlistMove (uint pos, uint newpos) { delete m_xmmsc->playlist_move (pos, newpos); }
const XMMSClient *getXMMS () { return m_xmmsc; }