mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
35
Src/Wasabi/api/skin/widgets.h
Normal file
35
Src/Wasabi/api/skin/widgets.h
Normal file
@@ -0,0 +1,35 @@
|
||||
#ifndef __WIDGETS_H
|
||||
#define __WIDGETS_H
|
||||
|
||||
#include <wasabicfg.h>
|
||||
#include <bfc/ptrlist.h>
|
||||
#include <api/syscb/callbacks/skincb.h>
|
||||
|
||||
class waServiceFactoryI;
|
||||
|
||||
#ifdef WASABI_COMPILE_STATSWND
|
||||
class StatsWnd;
|
||||
#endif
|
||||
|
||||
class Widgets : public SkinCallbackI {
|
||||
public:
|
||||
Widgets();
|
||||
virtual ~Widgets();
|
||||
|
||||
void registerService(waServiceFactoryI *f);
|
||||
int skincb_onBeforeLoadingElements();
|
||||
|
||||
void loadResources();
|
||||
private:
|
||||
|
||||
|
||||
PtrList<waServiceFactoryI> factories;
|
||||
int count;
|
||||
#ifdef WASABI_COMPILE_STATSWND
|
||||
StatsWnd *statswnd;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user