Volume slider now 100% operational. Setting volume from promoe works!

This commit is contained in:
Chris Gilbert 2006-03-16 04:51:40 +01:00 committed by Tobias Rundstrom
parent 2c20ddf6fc
commit 8807e630f1
3 changed files with 33 additions and 3 deletions

View file

@ -37,6 +37,7 @@ class XMMSHandler : public QObject, public sigc::trackable {
uint medialibQuery (QString);
void medialibQueryAdd (QString q) { delete m_xmmsc->medialib_add_to_playlist (q.toUtf8 ()); }
void volumeGet (void);
void volumeSet (uint volume);
const XMMSClient *getXMMS () { return m_xmmsc; }
@ -80,6 +81,7 @@ class XMMSHandler : public QObject, public sigc::trackable {
XMMSClient *m_xmmsc;
static XMMSHandler *singleton;
int m_currentid;
bool m_masterchan;
};
#endif