mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 03:55:46 -04:00
Initial community commit
This commit is contained in:
30
Src/Wasabi/api/skin/widgets/xuiradiogroup.h
Normal file
30
Src/Wasabi/api/skin/widgets/xuiradiogroup.h
Normal file
@ -0,0 +1,30 @@
|
||||
#ifndef __SCRIPTRADIOGROUP_H
|
||||
#define __SCRIPTRADIOGROUP_H
|
||||
|
||||
#include <api/skin/widgets/guiradiogroup.h>
|
||||
#include <api/script/objects/c_script/h_guiobject.h>
|
||||
|
||||
#define SCRIPTRADIOGROUP_PARENT GuiRadioGroup
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// Your wnd object class
|
||||
class ScriptRadioGroup : public SCRIPTRADIOGROUP_PARENT {
|
||||
|
||||
public:
|
||||
|
||||
ScriptRadioGroup();
|
||||
virtual ~ScriptRadioGroup();
|
||||
|
||||
private:
|
||||
|
||||
int myxuihandle;
|
||||
};
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// This defines the svc_xuiObject that exposes your wnd object
|
||||
|
||||
extern const wchar_t ScriptRadioGroupXuiObjectStr[];
|
||||
extern char ScriptRadioGroupXuiSvcName[];
|
||||
class ScriptRadioGroupXuiSvc : public XuiObjectSvc<ScriptRadioGroup, ScriptRadioGroupXuiObjectStr, ScriptRadioGroupXuiSvcName> {};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user