summaryrefslogtreecommitdiff
path: root/src/lib/elm_bubble.eo
blob: 900f40b1a2aa3091de969f6b2c9d3542b6c8cb32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
class Elm_Bubble (Elm_Layout)
{
   eo_prefix: elm_obj_bubble;
   properties {
      pos {
         set {
            /*@
            Set the corner of the bubble

            This function sets the corner of the bubble. The corner will be used to
            determine where the arrow in the frame points to and where label, icon and
            info are shown.


            @ingroup Bubble */
         }
         get {
            /*@
            Get the corner of the bubble

            @return The given corner for the bubble.

            This function gets the selected corner of the bubble.

            @ingroup Bubble */
         }
         values {
            Elm_Bubble_Pos pos; /*@ The given corner for the bubble. */
         }
      }
   }
   implements {
      class.constructor;
      Eo.Base.constructor;
      Evas.Object_Smart.add;
      Elm_Widget.focus_direction;
      Elm_Widget.focus_next_manager_is;
      Elm_Widget.focus_next;
      Elm_Widget.focus_direction_manager_is;
      Elm_Widget.access;
      Elm_Layout.text_set;
      Elm_Layout.text_aliases.get;
      Elm_Layout.content_aliases.get;
      Elm_Layout.sizing_eval;
   }
   events {
      clicked;
      focused;
      unfocused;
   }

}