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