Fix music dir being set in bad place again. Update web calls that backend calls to match const requirements. Have playlist and player part of backend class now for better handling. Set up getting first vote list and sending.
This commit is contained in:
@@ -32,10 +32,11 @@ public:
|
||||
~WebInterface();
|
||||
void loginCompleted();
|
||||
void playPauseActionFromServer(User* userPausing);
|
||||
void songChangedFromServer(AudioTrack* nextTrack);
|
||||
void songChangedFromServer(const AudioTrack* nextTrack);
|
||||
void voteTracksUpdatedFromServer(std::list<const AudioTrack*> voteableTracks);
|
||||
void skipVotedFromServer(User* userRequestingToSkipCurrentTrack);
|
||||
void voteUpdateFromServer(User* userVoting, bool forSkip);
|
||||
void voteNextSongFromServer(User* userVoting, AudioTrack* trackVoted);
|
||||
void voteNextSongFromServer(User* userVoting, const AudioTrack* trackVoted);
|
||||
void voteNextPollClosedFromServer();
|
||||
private:
|
||||
struct internal;
|
||||
|
||||
Reference in New Issue
Block a user