summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_widget_part.eo
blob: 5329f7c6c0b5fbbd630ea488e9a62e0168289b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Efl.Ui.Widget_Part extends Efl.Object implements Efl.Ui.Property_Bind, Efl.Gfx.Entity, Efl.Canvas.Layout_Part_Type_Provider
{
   [[This is the base class for all "Part" handles in Efl.Ui widgets.

     Since objects of this type are returned by @Efl.Part.part_get, their lifetime
     is limited to exactly one function call only. Each widget class should
     expose more specific types for their API-defined parts.

     @since 1.23
   ]]
   data: Elm_Part_Data;
   implements {
      Efl.Object.destructor;
      Efl.Ui.Property_Bind.property_bind;
      @empty Efl.Gfx.Entity.visible { get; set; }
      Efl.Gfx.Entity.geometry { get; set @empty ; }
      @empty Efl.Gfx.Entity.position { get; set; }
      @empty Efl.Gfx.Entity.size { get; set; }
      @empty Efl.Gfx.Entity.scale { set; get; }
      Efl.Canvas.Layout_Part_Type_Provider.part_type { get; }
   }
}