Lines Matching refs:out
22 CString out(""); in DeclarePropertiesStruct() local
37 out.Format( in DeclarePropertiesStruct()
49 out.Format( in DeclarePropertiesStruct()
59 return out; in DeclarePropertiesStruct()
65 CString out; in WriteExtendedProperties() local
85 out.Format(_T("GX_CONST CHAR *%s[]={\n"), string_list); in WriteExtendedProperties()
99 out.Append(temp); in WriteExtendedProperties()
101 out.Append(_T("};\n")); in WriteExtendedProperties()
106 out.Format(_T("GX_CONST GX_RESOURCE_ID %s[]={\n"), string_list); in WriteExtendedProperties()
119 out.Append(temp); in WriteExtendedProperties()
121 out.Append(_T("};\n")); in WriteExtendedProperties()
146 out.Append(temp); in WriteExtendedProperties()
147 return out; in WriteExtendedProperties()
159 CString out; in GetCreateFromDefFunction() local
160 MakeCreatePreamble("string_scroll_wheel", version, out); in GetCreateFromDefFunction()
166 return out; in GetCreateFromDefFunction()
169 out += "{\n" in GetCreateFromDefFunction()
178 …out += " status = gx_string_scroll_wheel_create_ext(wheel, info->widget_name, parent, props->to… in GetCreateFromDefFunction()
183 …out += " status = gx_string_scroll_wheel_create(wheel, info->widget_name, parent, props->total_… in GetCreateFromDefFunction()
186 out += " if (status == GX_SUCCESS)\n" in GetCreateFromDefFunction()
195 …out += " status = gx_string_scroll_wheel_create(wheel, info->widget_name, parent, props->total_… in GetCreateFromDefFunction()
201 out += " if (props->wallpaper_id)\n" in GetCreateFromDefFunction()
216 out += "#if defined(GUIX_5_4_0_COMPATIBILITY)\n" in GetCreateFromDefFunction()
224 …out += " gx_text_scroll_wheel_text_color_set((GX_TEXT_SCROLL_WHEEL *)wheel, props->normal_t… in GetCreateFromDefFunction()
227 out += " if(props->callback)\n" in GetCreateFromDefFunction()
231 …out += " gx_text_scroll_wheel_callback_set_ext((GX_TEXT_SCROLL_WHEEL *)wheel, (UINT (*)… in GetCreateFromDefFunction()
235 …out += " gx_text_scroll_wheel_callback_set((GX_TEXT_SCROLL_WHEEL *)wheel, (GX_CONST GX_… in GetCreateFromDefFunction()
238 out += " }\n" in GetCreateFromDefFunction()
243 return out; in GetCreateFromDefFunction()