1 #ifndef _HORIZONTAL_LIST_SERVICE_PROVIDER_
2 #define _HORIZONTAL_LIST_SERVICE_PROVIDER_
3 
4 class screen_generator; // forward reference
5 
6 class horizontal_list_service_provider : public window_service_provider
7 {
8     public:
9         horizontal_list_service_provider();
10 
GetType()11         virtual int GetType() {return GX_TYPE_HORIZONTAL_LIST;}
GetTypeName(widget_info *)12         virtual CString GetTypeName(widget_info *) {return CString("GX_TYPE_HORIZONTAL_LIST");}
GetShortName()13         virtual CString GetShortName() {return CString("horizontal_list");}
14         virtual CString GetVarDeclaration();
GetControlBlockName()15         virtual CString GetControlBlockName() {return CString("GX_HORIZONTAL_LIST");}
16 
17         virtual CString DeclarePropertiesStruct();
18         virtual CString WriteExtendedProperties(screen_generator *gen, CString &scope, widget_info *info);
19         virtual CString GetCreateFromDefFunctionName();
20         virtual CString GetCreateFromDefFunction(int version);
21 
22         virtual widget_info *CreateNewInstance(GX_WIDGET *parent);
23         virtual GX_WIDGET *GenerateFromInfo(GX_WIDGET *parent, widget_info *info);
24 
25         virtual void SaveToProject(xml_writer &, studiox_project *project, int display, widget_info *);
26         virtual void ReadFromProject(xml_reader &, studiox_project *project, int display, widget_info *info, ULONG valid_styles);
27 };
28 
29 #endif
30