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:
21
Src/Wasabi/api/skin/widgets/xuieditbox.h
Normal file
21
Src/Wasabi/api/skin/widgets/xuieditbox.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef __EDITBOX_H
|
||||
#define __EDITBOX_H
|
||||
|
||||
#include <api/wnd/wndclass/embeddedxui.h>
|
||||
|
||||
#define EDITBOX_PARENT EmbeddedXuiObject
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
class EditBox : public EDITBOX_PARENT {
|
||||
public:
|
||||
|
||||
virtual const wchar_t *embeddedxui_getContentId() { return "wasabi.edit"; }
|
||||
virtual const wchar_t *embeddedxui_getEmbeddedObjectId() { return "wasabi.edit.box"; }
|
||||
};
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
extern char EditBoxXuiObjectStr[];
|
||||
extern char EditBoxXuiSvcName[];
|
||||
class EditBoxXuiSvc : public XuiObjectSvc<EditBox, EditBoxXuiObjectStr, EditBoxXuiSvcName> {};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user