diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Wasabi/api/skin/groupmgr.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/Wasabi/api/skin/groupmgr.h')
-rw-r--r-- | Src/Wasabi/api/skin/groupmgr.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Src/Wasabi/api/skin/groupmgr.h b/Src/Wasabi/api/skin/groupmgr.h new file mode 100644 index 00000000..4e4457ca --- /dev/null +++ b/Src/Wasabi/api/skin/groupmgr.h @@ -0,0 +1,42 @@ +#ifndef __GROUPMGR_H +#define __GROUPMGR_H + +#include <bfc/ptrlist.h> +#include <bfc/string/bfcstring.h> +#include <api/skin/skinparse.h> +#include <bfc/critsec.h> + +class Group; +class CfgItem; + +class ifc_window; +class SkinItem; + +class CfgGroupEntry +{ + public: + CfgGroupEntry(const wchar_t *_id, int _type) : id(_id), type(_type) {} + ~CfgGroupEntry() {} + + StringW id; + int type; +}; + +class GroupMgr +{ + public: + static Group *instantiate(const wchar_t *groupid, int grouptype=GROUP_GROUP, SkinItem *specific_item=NULL, int scripts_enabled=1); +#ifdef WASABI_COMPILE_CONFIG + static Group *instantiate(const wchar_t *groupid, CfgItem *i, const wchar_t *name, int scripts_enabled); +#endif + static int destroy(Group *group); + static int hasGroup(Group *g) { return grouplist.haveItem(g); } + static int getNumGroups() { return grouplist.getNumItems(); } + static int exists(const wchar_t *groupid); + + private: + static PtrList<Group> grouplist; + static CriticalSection cs_grp; +}; + +#endif |