summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_radio.eo
blob: ce51b183e1b2d008f5918964183379d5449cd266 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
class Efl.Ui.Radio (Efl.Ui.Check, Efl.Access.Widget.Action, Efl.Content)
{
   [[Elementary radio class]]
   legacy_prefix: elm_radio;
   methods {
      @property state_value {
         set {
            [[Set the integer value that this radio object represents.

              This sets the value of the radio.
            ]]
         }
         get {
            [[Get the integer value that this radio object represents.

              This gets the value of the radio.
            ]]
         }
         values {
            value: int; [[The value to use if this radio object is selected.]]
         }
      }
      @property value_pointer {
         set {
            [[Set a convenience pointer to an integer, which changes when radio group
              value changes.

              This sets a pointer to an integer that in addition to the radio
              object state will also be modified directly. To stop setting the
              object pointed to, simply use NULL as the valuep argument. If
              valuep is not NULL then when called, the radio object
              state will also be modified to reflect the value of the integer
              valuep points to, just like calling elm_radio_value_set().
            ]]
         }
         values {
            valuep: ptr(int) @nullable; [[Pointer to the integer to modify]]
         }
      }
      @property selected_object {
         get {
            [[Get the selected radio object.]]
            return: Efl.Canvas.Object; [[The selected radio object]]
         }
      }
      group_add {
         [[Add this radio to a group of other radio objects

           Radio objects work in groups. Each member should have a different
           integer value assigned. In order to have them work as a group, they
           need to know about each other. This adds the given radio object to
           the group of which the group object indicated is a member.
         ]]

         params {
            @in group: Efl.Ui.Radio; [[Any radio object whose group the obj is
                                    to join.]]
         }
      }
   }
   implements {
      class.constructor;
      Efl.Object.constructor;
      Efl.Object.destructor;
      Elm.Widget.theme_apply;
      Elm.Widget.on_access_activate;
      Elm.Widget.widget_event;
      Efl.Access.state_set { get; }
      Efl.Access.Widget.Action.elm_actions { get; }
      Efl.Content.content { get; set; }
      Efl.Content.content_unset;
      Efl.Ui.Nstate.value { set; get; }
   }
}