Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
36
Src/Wasabi/api/skin/widgets/xuibookmarklist.h
Normal file
36
Src/Wasabi/api/skin/widgets/xuibookmarklist.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
#ifndef __BOOKMARKLIST_H
|
||||
#define __BOOKMARKLIST_H
|
||||
|
||||
#include <api/wnd/wndclass/guiobjwnd.h>
|
||||
|
||||
#define BOOKMARKLIST_PARENT GuiObjectWnd
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
class BookmarkList : public BOOKMARKLIST_PARENT {
|
||||
|
||||
public:
|
||||
|
||||
BookmarkList();
|
||||
virtual ~BookmarkList();
|
||||
|
||||
virtual int setXuiParam(int xuihandle, int xmlattributeid, const wchar_t *xmlattributename, const wchar_t *value);
|
||||
|
||||
void set(const wchar_t *elementname);
|
||||
|
||||
protected:
|
||||
/*static */void CreateXMLParameters(int master_handle);
|
||||
private:
|
||||
|
||||
enum {
|
||||
BOOKMARKLIST_SET = 0,
|
||||
};
|
||||
static XMLParamPair params[];
|
||||
int myxuihandle;
|
||||
};
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
extern const wchar_t BookmarkListXuiObjectStr[];
|
||||
extern char BookmarkListXuiSvcName[];
|
||||
class BookmarkListXuiSvc : public XuiObjectSvc<BookmarkList, BookmarkListXuiObjectStr, BookmarkListXuiSvcName> {};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue