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:
34
Src/Wasabi/api/skin/widgets/xuiaddparams.h
Normal file
34
Src/Wasabi/api/skin/widgets/xuiaddparams.h
Normal file
@ -0,0 +1,34 @@
|
||||
#ifndef __ADDPARAMS_H
|
||||
#define __ADDPARAMS_H
|
||||
|
||||
#include <api/skin/objectactuator.h>
|
||||
#include <bfc/pair.h>
|
||||
|
||||
#define ADDPARAMS_PARENT ObjectActuator
|
||||
|
||||
extern const wchar_t AddParamsXuiObjectStr[];
|
||||
extern char AddParamsXuiSvcName[];
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// Your wnd object class
|
||||
class AddParams: public ADDPARAMS_PARENT {
|
||||
public:
|
||||
|
||||
AddParams();
|
||||
virtual ~AddParams();
|
||||
|
||||
virtual int setXmlParam(const wchar_t *param, const wchar_t *value);
|
||||
virtual void actuator_onPerform(GuiObject *target);
|
||||
virtual const wchar_t *getActuatorTag() { return AddParamsXuiObjectStr; } // for error msgs purposes
|
||||
|
||||
private:
|
||||
int myxuihandle;
|
||||
PtrList< Pair<StringW, StringW> > pastlist;
|
||||
};
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// This defines the svc_xuiObject that exposes your wnd object
|
||||
|
||||
class AddParamsXuiSvc : public XuiObjectSvc<AddParams, AddParamsXuiObjectStr, AddParamsXuiSvcName> {};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user