summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_bubble.eo
blob: 89057593035e061724978e9bc9058db75635c3d2 (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
enum Elm.Bubble.Pos
{
  [[Defines the corner values for a bubble.

    The corner will be used to determine where the arrow of the
    bubble points to.
  ]]
  invalid = -1, [[Invalid corner.]]
  top_left, [[The arrow of the bubble points to the top left corner.]]
  top_right, [[The arrow of the bubble points to the top right corner.]]
  bottom_left, [[The arrow of the bubble points to the bottom left corner.]]
  bottom_right [[The arrow of the bubble points to the bottom right corner.]]
}

class Elm.Bubble (Efl.Ui.Layout.Object, Efl.Ui.Clickable, Efl.Ui.Legacy)
{
   [[Speech bubble widget used in messaging applications]]

   legacy_prefix: elm_bubble;
   eo_prefix: elm_obj_bubble;
   methods {
      @property pos {
         [[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. See @Elm.Bubble.Pos
            ]]
         set {
         }
         get {
         }
         values {
            pos: Elm.Bubble.Pos; [[The given corner for the bubble.]]
         }
      }
   }
   implements {
      class.constructor;
      Efl.Object.constructor;
      Efl.Ui.Widget.on_access_update;
      Efl.Part.part_get;
   }
}