mirror of
https://github.com/azure-rtos/guix.git
synced 2025-02-04 07:13:17 +08:00
30 lines
1.3 KiB
C
30 lines
1.3 KiB
C
|
#ifndef _HORIZONTAL_LIST_SERVICE_PROVIDER_
|
||
|
#define _HORIZONTAL_LIST_SERVICE_PROVIDER_
|
||
|
|
||
|
class screen_generator; // forward reference
|
||
|
|
||
|
class horizontal_list_service_provider : public window_service_provider
|
||
|
{
|
||
|
public:
|
||
|
horizontal_list_service_provider();
|
||
|
|
||
|
virtual int GetType() {return GX_TYPE_HORIZONTAL_LIST;}
|
||
|
virtual CString GetTypeName(widget_info *) {return CString("GX_TYPE_HORIZONTAL_LIST");}
|
||
|
virtual CString GetShortName() {return CString("horizontal_list");}
|
||
|
virtual CString GetVarDeclaration();
|
||
|
virtual CString GetControlBlockName() {return CString("GX_HORIZONTAL_LIST");}
|
||
|
|
||
|
virtual CString DeclarePropertiesStruct();
|
||
|
virtual CString WriteExtendedProperties(screen_generator *gen, CString &scope, widget_info *info);
|
||
|
virtual CString GetCreateFromDefFunctionName();
|
||
|
virtual CString GetCreateFromDefFunction(int version);
|
||
|
|
||
|
virtual widget_info *CreateNewInstance(GX_WIDGET *parent);
|
||
|
virtual GX_WIDGET *GenerateFromInfo(GX_WIDGET *parent, widget_info *info);
|
||
|
|
||
|
virtual void SaveToProject(xml_writer &, studiox_project *project, int display, widget_info *);
|
||
|
virtual void ReadFromProject(xml_reader &, studiox_project *project, int display, widget_info *info, ULONG valid_styles);
|
||
|
};
|
||
|
|
||
|
#endif
|