Implement creation, deletion and switching of playlists (Idlists)
This commit is contained in:
parent
0da2995880
commit
d93f2ee188
14 changed files with 517 additions and 3 deletions
|
@ -32,6 +32,7 @@ class XClient;
|
|||
#include "xconfig.h"
|
||||
|
||||
class XConfig;
|
||||
class XCollection;
|
||||
|
||||
/*
|
||||
class XSettings : public QObject
|
||||
|
@ -73,6 +74,10 @@ class XClient : public QObject {
|
|||
return m_config;
|
||||
};
|
||||
|
||||
XCollection *xcollection () const {
|
||||
return m_collection;
|
||||
}
|
||||
|
||||
const Xmms::Client *sync () const {
|
||||
return &m_sync;
|
||||
};
|
||||
|
@ -106,6 +111,7 @@ class XClient : public QObject {
|
|||
// Xmms::Client *m_client;
|
||||
XClientCache *m_cache;
|
||||
XConfig *m_config;
|
||||
XCollection *m_collection;
|
||||
bool m_isconnected;
|
||||
|
||||
Xmms::Client m_sync;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue