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