Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue