Make Items in playlist clickable.

This commit is contained in:
Tobias Rundstrom 2006-02-26 22:07:58 -03:00
parent 072a53b219
commit 18f87d65d5
4 changed files with 29 additions and 0 deletions

View file

@ -62,6 +62,15 @@ XMMSHandler::requestPlaylistList (void)
r->connect (sigc::mem_fun (this, &XMMSHandler::playlist_list));
}
void
XMMSHandler::requestTrackChange (int pos)
{
XMMSResult *r = m_xmmsc->playlist_set_next (pos);
delete r;
XMMSResult *r2 = m_xmmsc->playback_tickle ();
delete r2;
}
void
XMMSHandler::playlist_list (XMMSResultValueList<uint> *res)
{