return NULL;
}
+ type = efl_class_name_get(conform);
+
+ //C# FIXME: consider Efl.Ui.Stack more
+ if (type && (!strcmp(type, "Efl.Ui.Win")))
+ {
+ surface = _eext_circle_surface_add(conform, EEXT_CIRCLE_SURFACE_TYPE_DEFAULT);
+
+ if (!surface->main_obj)
+ {
+ ERR("Surface doesn't have image widget for drawing. It returns NULL.");
+ return NULL;
+ }
+
+ INF("Put the surface[%p]'s widget[%p] to elm_conformant widget[%p]", surface, surface->main_obj, conform);
+
+ efl_content_set(efl_part(conform, "efl.content.circle"), surface->main_obj);
+
+ return surface;
+ }
+
type = evas_object_type_get(conform);
if (type && (!strcmp(type, "Elm_Conformant") || !strcmp(type, "elm_conformant")))