status: split NcmpcppStatusChanged into smaller pieces
This commit is contained in:
36
src/status.h
36
src/status.h
@@ -24,18 +24,34 @@
|
||||
#include "interfaces.h"
|
||||
#include "mpdpp.h"
|
||||
|
||||
#ifndef USE_PDCURSES
|
||||
void WindowTitle(const std::string &);
|
||||
#else
|
||||
# define WindowTitle(x);
|
||||
#endif // USE_PDCURSES
|
||||
namespace Status {//
|
||||
|
||||
void DrawNowPlayingTitle();
|
||||
void trace();
|
||||
|
||||
void TraceMpdStatus();
|
||||
void NcmpcppStatusChanged(MPD::Connection *, MPD::StatusChanges, void *);
|
||||
void NcmpcppErrorCallback(MPD::Connection *, int, const char *, void *);
|
||||
void handleError(MPD::Connection * , int errorid, const char *msg, void *);
|
||||
|
||||
void DrawHeader();
|
||||
void update(MPD::Connection *, MPD::StatusChanges changes, void *);
|
||||
|
||||
namespace Changes {//
|
||||
|
||||
void playlist();
|
||||
void storedPlaylists();
|
||||
void database();
|
||||
void playerState();
|
||||
void songID();
|
||||
void elapsedTime();
|
||||
void repeat();
|
||||
void random();
|
||||
void single();
|
||||
void consume();
|
||||
void crossfade();
|
||||
void dbUpdateState();
|
||||
void flags();
|
||||
void mixer();
|
||||
void outputs();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user