diff options
author | Daniel Kolesa <d.kolesa@samsung.com> | 2014-07-22 16:36:29 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2014-07-22 16:36:29 +0100 |
commit | 5031c8f20fc0a3a1a2b9f547816030fa41be5556 (patch) | |
tree | 4d36f647a88e6eaf4deffdeb084372af8701b956 /src/lib | |
parent | 3c3323716dfd6bfce17a9848f310584b8bc5f5bf (diff) |
update according to EFL
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elm_interface_atspi_accessible.eo | 20 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_action.eo | 12 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_component.eo | 16 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_editable_text.eo | 14 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_image.eo | 4 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_selection.eo | 16 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_text.eo | 32 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_value.eo | 6 | ||||
-rw-r--r-- | src/lib/elm_interface_atspi_widget_action.eo | 2 |
9 files changed, 61 insertions, 61 deletions
diff --git a/src/lib/elm_interface_atspi_accessible.eo b/src/lib/elm_interface_atspi_accessible.eo index f7e3a2b49..1bd61ba9f 100644 --- a/src/lib/elm_interface_atspi_accessible.eo +++ b/src/lib/elm_interface_atspi_accessible.eo | |||
@@ -4,7 +4,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
4 | eo_prefix: elm_interface_atspi_accessible; | 4 | eo_prefix: elm_interface_atspi_accessible; |
5 | data: null; | 5 | data: null; |
6 | properties { | 6 | properties { |
7 | protected localized_role_name { | 7 | localized_role_name @protected { |
8 | get { | 8 | get { |
9 | /*@ Gets an localized string describing ATSPI widget role name. */ | 9 | /*@ Gets an localized string describing ATSPI widget role name. */ |
10 | } | 10 | } |
@@ -12,7 +12,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
12 | const(char)* localized_name; | 12 | const(char)* localized_name; |
13 | } | 13 | } |
14 | } | 14 | } |
15 | protected name { | 15 | name @protected { |
16 | get { | 16 | get { |
17 | /*@ Gets an string describing ATSPI widget role name. */ | 17 | /*@ Gets an string describing ATSPI widget role name. */ |
18 | } | 18 | } |
@@ -22,7 +22,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
22 | const(char)* name; /*@ obj name */ | 22 | const(char)* name; /*@ obj name */ |
23 | } | 23 | } |
24 | } | 24 | } |
25 | protected relation_set { | 25 | relation_set @protected { |
26 | get { | 26 | get { |
27 | /*@ Gets an string describing ATSPI widget role name. Lists and | 27 | /*@ Gets an string describing ATSPI widget role name. Lists and |
28 | elements Should be free by a user. */ | 28 | elements Should be free by a user. */ |
@@ -31,7 +31,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
31 | Eina_List *relations; | 31 | Eina_List *relations; |
32 | } | 32 | } |
33 | } | 33 | } |
34 | protected role { | 34 | role @protected { |
35 | get { | 35 | get { |
36 | /*@ Gets the role of the widget in ATSPI Accessibility domain. */ | 36 | /*@ Gets the role of the widget in ATSPI Accessibility domain. */ |
37 | } | 37 | } |
@@ -41,7 +41,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
41 | Elm_Atspi_Role role; | 41 | Elm_Atspi_Role role; |
42 | } | 42 | } |
43 | } | 43 | } |
44 | protected children { | 44 | children @protected { |
45 | get { | 45 | get { |
46 | /*@ Gets widget's accessible children. */ | 46 | /*@ Gets widget's accessible children. */ |
47 | } | 47 | } |
@@ -49,7 +49,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
49 | Eina_List *children; | 49 | Eina_List *children; |
50 | } | 50 | } |
51 | } | 51 | } |
52 | protected role_name { | 52 | role_name @protected { |
53 | get { | 53 | get { |
54 | /*@ Gets human-readable string indentifying widget accessibility | 54 | /*@ Gets human-readable string indentifying widget accessibility |
55 | role. */ | 55 | role. */ |
@@ -58,7 +58,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
58 | const(char)* role_name; | 58 | const(char)* role_name; |
59 | } | 59 | } |
60 | } | 60 | } |
61 | protected attributes { | 61 | attributes @protected { |
62 | get { | 62 | get { |
63 | /*@ Gets key-value pairs indentifying widget extra | 63 | /*@ Gets key-value pairs indentifying widget extra |
64 | attributes. Must be free by a user. */ | 64 | attributes. Must be free by a user. */ |
@@ -67,7 +67,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
67 | Eina_List *attributes; | 67 | Eina_List *attributes; |
68 | } | 68 | } |
69 | } | 69 | } |
70 | protected index_in_parent { | 70 | index_in_parent @protected { |
71 | get { | 71 | get { |
72 | /*@ Gets index of the child in parent's children list. */ | 72 | /*@ Gets index of the child in parent's children list. */ |
73 | } | 73 | } |
@@ -86,7 +86,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
86 | const(char)* description; | 86 | const(char)* description; |
87 | } | 87 | } |
88 | } | 88 | } |
89 | protected parent { | 89 | parent @protected { |
90 | get { | 90 | get { |
91 | /*@ Gets widget accessible parent. */ | 91 | /*@ Gets widget accessible parent. */ |
92 | } | 92 | } |
@@ -97,7 +97,7 @@ mixin Elm_Interface_Atspi_Accessible () | |||
97 | Eo *parent; | 97 | Eo *parent; |
98 | } | 98 | } |
99 | } | 99 | } |
100 | protected state_set { | 100 | state_set @protected { |
101 | get { | 101 | get { |
102 | /*@ Gets set describing widget accessible states. */ | 102 | /*@ Gets set describing widget accessible states. */ |
103 | } | 103 | } |
diff --git a/src/lib/elm_interface_atspi_action.eo b/src/lib/elm_interface_atspi_action.eo index b1b43544e..0f876e729 100644 --- a/src/lib/elm_interface_atspi_action.eo +++ b/src/lib/elm_interface_atspi_action.eo | |||
@@ -4,7 +4,7 @@ mixin Elm_Interface_Atspi_Action () | |||
4 | eo_prefix: elm_interface_atspi_action; | 4 | eo_prefix: elm_interface_atspi_action; |
5 | data: null; | 5 | data: null; |
6 | properties { | 6 | properties { |
7 | protected name { | 7 | name @protected { |
8 | get { | 8 | get { |
9 | /*@ Gets action name for given id */ | 9 | /*@ Gets action name for given id */ |
10 | } | 10 | } |
@@ -15,7 +15,7 @@ mixin Elm_Interface_Atspi_Action () | |||
15 | int id; | 15 | int id; |
16 | } | 16 | } |
17 | } | 17 | } |
18 | protected localized_name { | 18 | localized_name @protected { |
19 | get { | 19 | get { |
20 | /*@ Gets localized action name for given id */ | 20 | /*@ Gets localized action name for given id */ |
21 | } | 21 | } |
@@ -26,7 +26,7 @@ mixin Elm_Interface_Atspi_Action () | |||
26 | int id; | 26 | int id; |
27 | } | 27 | } |
28 | } | 28 | } |
29 | protected description { | 29 | description @protected { |
30 | get { | 30 | get { |
31 | /*@ Gets action description for given id */ | 31 | /*@ Gets action description for given id */ |
32 | } | 32 | } |
@@ -41,7 +41,7 @@ mixin Elm_Interface_Atspi_Action () | |||
41 | int id; | 41 | int id; |
42 | } | 42 | } |
43 | } | 43 | } |
44 | protected actions { | 44 | actions @protected { |
45 | get { | 45 | get { |
46 | /*@ Get list of available widget actions */ | 46 | /*@ Get list of available widget actions */ |
47 | } | 47 | } |
@@ -51,14 +51,14 @@ mixin Elm_Interface_Atspi_Action () | |||
51 | } | 51 | } |
52 | } | 52 | } |
53 | methods { | 53 | methods { |
54 | protected action_do { | 54 | action_do @protected { |
55 | /*@ Performs action on given widget. */ | 55 | /*@ Performs action on given widget. */ |
56 | params { | 56 | params { |
57 | @in int id; | 57 | @in int id; |
58 | } | 58 | } |
59 | return bool; | 59 | return bool; |
60 | } | 60 | } |
61 | protected keybinding_get { | 61 | keybinding_get @protected { |
62 | /*@ Gets configured keybinding for specific action and widget. */ | 62 | /*@ Gets configured keybinding for specific action and widget. */ |
63 | params { | 63 | params { |
64 | @in int id; | 64 | @in int id; |
diff --git a/src/lib/elm_interface_atspi_component.eo b/src/lib/elm_interface_atspi_component.eo index 525463453..6ec1b8a75 100644 --- a/src/lib/elm_interface_atspi_component.eo +++ b/src/lib/elm_interface_atspi_component.eo | |||
@@ -4,7 +4,7 @@ mixin Elm_Interface_Atspi_Component () | |||
4 | eo_prefix: elm_interface_atspi_component; | 4 | eo_prefix: elm_interface_atspi_component; |
5 | data: null; | 5 | data: null; |
6 | properties { | 6 | properties { |
7 | protected size { | 7 | size @protected { |
8 | set { | 8 | set { |
9 | /*@ Sets size of accessible widget. */ | 9 | /*@ Sets size of accessible widget. */ |
10 | return bool; | 10 | return bool; |
@@ -17,7 +17,7 @@ mixin Elm_Interface_Atspi_Component () | |||
17 | int h; | 17 | int h; |
18 | } | 18 | } |
19 | } | 19 | } |
20 | protected layer { | 20 | layer @protected { |
21 | get { | 21 | get { |
22 | /*@ Sets evas layer of accessible widget. */ | 22 | /*@ Sets evas layer of accessible widget. */ |
23 | } | 23 | } |
@@ -25,7 +25,7 @@ mixin Elm_Interface_Atspi_Component () | |||
25 | int layer; | 25 | int layer; |
26 | } | 26 | } |
27 | } | 27 | } |
28 | protected alpha { | 28 | alpha @protected { |
29 | get { | 29 | get { |
30 | /*@ Gets alpha of accessible widget. */ | 30 | /*@ Gets alpha of accessible widget. */ |
31 | } | 31 | } |
@@ -33,7 +33,7 @@ mixin Elm_Interface_Atspi_Component () | |||
33 | double alpha; /*@ alpha value in [0, 1] range. */ | 33 | double alpha; /*@ alpha value in [0, 1] range. */ |
34 | } | 34 | } |
35 | } | 35 | } |
36 | protected z_order { | 36 | z_order @protected { |
37 | get { | 37 | get { |
38 | /*@ Gets the depth at which the component is shown in relation to | 38 | /*@ Gets the depth at which the component is shown in relation to |
39 | other components in the same container. */ | 39 | other components in the same container. */ |
@@ -42,7 +42,7 @@ mixin Elm_Interface_Atspi_Component () | |||
42 | int z_order; | 42 | int z_order; |
43 | } | 43 | } |
44 | } | 44 | } |
45 | protected extents { | 45 | extents @protected { |
46 | get { | 46 | get { |
47 | /*@ Gets geometry of accessible widget. */ | 47 | /*@ Gets geometry of accessible widget. */ |
48 | } | 48 | } |
@@ -62,7 +62,7 @@ mixin Elm_Interface_Atspi_Component () | |||
62 | int h; | 62 | int h; |
63 | } | 63 | } |
64 | } | 64 | } |
65 | protected position { | 65 | position @protected { |
66 | set { | 66 | set { |
67 | /*@ Sets position of accessible widget. */ | 67 | /*@ Sets position of accessible widget. */ |
68 | return bool; | 68 | return bool; |
@@ -82,7 +82,7 @@ mixin Elm_Interface_Atspi_Component () | |||
82 | } | 82 | } |
83 | } | 83 | } |
84 | methods { | 84 | methods { |
85 | protected contains { | 85 | contains @protected { |
86 | params { | 86 | params { |
87 | bool screen_coords; /*@ If true x and y values will be relative | 87 | bool screen_coords; /*@ If true x and y values will be relative |
88 | to screen origin, otherwise relative to | 88 | to screen origin, otherwise relative to |
@@ -99,7 +99,7 @@ mixin Elm_Interface_Atspi_Component () | |||
99 | 99 | ||
100 | return bool; | 100 | return bool; |
101 | } | 101 | } |
102 | protected accessible_at_point_get { | 102 | accessible_at_point_get @protected { |
103 | /*@ Gets top component object occupying space at given coordinates. */ | 103 | /*@ Gets top component object occupying space at given coordinates. */ |
104 | params { | 104 | params { |
105 | bool screen_coords; /*@ If true x and y values will be relative | 105 | bool screen_coords; /*@ If true x and y values will be relative |
diff --git a/src/lib/elm_interface_atspi_editable_text.eo b/src/lib/elm_interface_atspi_editable_text.eo index 2f431e2cd..35eac3c88 100644 --- a/src/lib/elm_interface_atspi_editable_text.eo +++ b/src/lib/elm_interface_atspi_editable_text.eo | |||
@@ -3,7 +3,7 @@ interface Elm_Interface_Atspi_Editable_Text () | |||
3 | legacy_prefix: null; | 3 | legacy_prefix: null; |
4 | eo_prefix: elm_interface_atspi_editable_text; | 4 | eo_prefix: elm_interface_atspi_editable_text; |
5 | properties { | 5 | properties { |
6 | protected content { | 6 | content @protected { |
7 | set { | 7 | set { |
8 | return bool; | 8 | return bool; |
9 | } | 9 | } |
@@ -13,35 +13,35 @@ interface Elm_Interface_Atspi_Editable_Text () | |||
13 | } | 13 | } |
14 | } | 14 | } |
15 | methods { | 15 | methods { |
16 | protected insert { | 16 | insert @protected { |
17 | params { | 17 | params { |
18 | @in const(char)* string; | 18 | @in const(char)* string; |
19 | @in int position; | 19 | @in int position; |
20 | } | 20 | } |
21 | return bool; | 21 | return bool; |
22 | } | 22 | } |
23 | protected copy { | 23 | copy @protected { |
24 | params { | 24 | params { |
25 | @in int start; | 25 | @in int start; |
26 | @in int end; | 26 | @in int end; |
27 | } | 27 | } |
28 | return bool; | 28 | return bool; |
29 | } | 29 | } |
30 | protected cut { | 30 | cut @protected { |
31 | params { | 31 | params { |
32 | @in int start; | 32 | @in int start; |
33 | @in int end; | 33 | @in int end; |
34 | } | 34 | } |
35 | return bool; | 35 | return bool; |
36 | } | 36 | } |
37 | protected delete { | 37 | delete @protected { |
38 | params { | 38 | params { |
39 | @in int start; | 39 | @in int start; |
40 | @in int end; | 40 | @in int end; |
41 | } | 41 | } |
42 | return bool; | 42 | return bool; |
43 | } | 43 | } |
44 | protected paste { | 44 | paste @protected { |
45 | params { | 45 | params { |
46 | @in int position; | 46 | @in int position; |
47 | } | 47 | } |
diff --git a/src/lib/elm_interface_atspi_image.eo b/src/lib/elm_interface_atspi_image.eo index 16ab1678c..1bc406623 100644 --- a/src/lib/elm_interface_atspi_image.eo +++ b/src/lib/elm_interface_atspi_image.eo | |||
@@ -4,7 +4,7 @@ mixin Elm_Interface_Atspi_Image () | |||
4 | eo_prefix: elm_interface_atspi_image; | 4 | eo_prefix: elm_interface_atspi_image; |
5 | data: null; | 5 | data: null; |
6 | properties { | 6 | properties { |
7 | protected extents { | 7 | extents @protected { |
8 | get { | 8 | get { |
9 | /*@ Gets an image extents. */ | 9 | /*@ Gets an image extents. */ |
10 | } | 10 | } |
@@ -28,7 +28,7 @@ mixin Elm_Interface_Atspi_Image () | |||
28 | const(char)* description; | 28 | const(char)* description; |
29 | } | 29 | } |
30 | } | 30 | } |
31 | protected locale { | 31 | locale @protected { |
32 | get { | 32 | get { |
33 | /* Gets locale of the image description. */ | 33 | /* Gets locale of the image description. */ |
34 | } | 34 | } |
diff --git a/src/lib/elm_interface_atspi_selection.eo b/src/lib/elm_interface_atspi_selection.eo index 0269cac81..91b0c5a65 100644 --- a/src/lib/elm_interface_atspi_selection.eo +++ b/src/lib/elm_interface_atspi_selection.eo | |||
@@ -3,13 +3,13 @@ interface Elm_Interface_Atspi_Selection () | |||
3 | legacy_prefix: null; | 3 | legacy_prefix: null; |
4 | eo_prefix: elm_interface_atspi_selection; | 4 | eo_prefix: elm_interface_atspi_selection; |
5 | properties { | 5 | properties { |
6 | protected selected_children_count { | 6 | selected_children_count @protected { |
7 | get { | 7 | get { |
8 | /* Gets the number of currently selected children */ | 8 | /* Gets the number of currently selected children */ |
9 | return int; | 9 | return int; |
10 | } | 10 | } |
11 | } | 11 | } |
12 | protected selected_child { | 12 | selected_child @protected { |
13 | /* Gets child for given child index */ | 13 | /* Gets child for given child index */ |
14 | get { | 14 | get { |
15 | return Eo*; | 15 | return Eo*; |
@@ -20,36 +20,36 @@ interface Elm_Interface_Atspi_Selection () | |||
20 | } | 20 | } |
21 | } | 21 | } |
22 | methods { | 22 | methods { |
23 | protected child_select { | 23 | child_select @protected { |
24 | /* Adds selection for given child index */ | 24 | /* Adds selection for given child index */ |
25 | params { | 25 | params { |
26 | @in int child_index; | 26 | @in int child_index; |
27 | } | 27 | } |
28 | return bool; | 28 | return bool; |
29 | } | 29 | } |
30 | protected selected_child_deselect { | 30 | selected_child_deselect @protected { |
31 | /* Removes selection for given child index */ | 31 | /* Removes selection for given child index */ |
32 | params { | 32 | params { |
33 | @in int child_index; | 33 | @in int child_index; |
34 | } | 34 | } |
35 | return bool; | 35 | return bool; |
36 | } | 36 | } |
37 | protected is_child_selected { | 37 | is_child_selected @protected { |
38 | /* Determines if child specified by index is selected */ | 38 | /* Determines if child specified by index is selected */ |
39 | params { | 39 | params { |
40 | @in int child_index; | 40 | @in int child_index; |
41 | } | 41 | } |
42 | return bool; | 42 | return bool; |
43 | } | 43 | } |
44 | protected all_children_select { | 44 | all_children_select @protected { |
45 | /* Adds selection for all children */ | 45 | /* Adds selection for all children */ |
46 | return bool; | 46 | return bool; |
47 | } | 47 | } |
48 | protected clear { | 48 | clear @protected { |
49 | /* Clears the current selection */ | 49 | /* Clears the current selection */ |
50 | return bool; | 50 | return bool; |
51 | } | 51 | } |
52 | protected child_deselect { | 52 | child_deselect @protected { |
53 | /* Removes selection for given child index */ | 53 | /* Removes selection for given child index */ |
54 | params { | 54 | params { |
55 | @in int child_index; | 55 | @in int child_index; |
diff --git a/src/lib/elm_interface_atspi_text.eo b/src/lib/elm_interface_atspi_text.eo index 44e79dbe4..83df4f6a7 100644 --- a/src/lib/elm_interface_atspi_text.eo +++ b/src/lib/elm_interface_atspi_text.eo | |||
@@ -3,7 +3,7 @@ interface Elm_Interface_Atspi_Text () | |||
3 | legacy_prefix: null; | 3 | legacy_prefix: null; |
4 | eo_prefix: elm_interface_atspi_text; | 4 | eo_prefix: elm_interface_atspi_text; |
5 | properties { | 5 | properties { |
6 | protected character { | 6 | character @protected { |
7 | get { | 7 | get { |
8 | /*@ Gets single character present in accessible widget's text | 8 | /*@ Gets single character present in accessible widget's text |
9 | at given offset. */ | 9 | at given offset. */ |
@@ -18,7 +18,7 @@ interface Elm_Interface_Atspi_Text () | |||
18 | that string includes invalid UTF8 chars. */ | 18 | that string includes invalid UTF8 chars. */ |
19 | } | 19 | } |
20 | } | 20 | } |
21 | protected string { | 21 | string @protected { |
22 | get { | 22 | get { |
23 | /*@ Gets string, start and end offset in text according to | 23 | /*@ Gets string, start and end offset in text according to |
24 | given initial offset and granulatity. */ | 24 | given initial offset and granulatity. */ |
@@ -36,7 +36,7 @@ interface Elm_Interface_Atspi_Text () | |||
36 | Must be free by a user. */ | 36 | Must be free by a user. */ |
37 | } | 37 | } |
38 | } | 38 | } |
39 | protected text { | 39 | text @protected { |
40 | get { | 40 | get { |
41 | /*@ Gets text of accessible widget. */ | 41 | /*@ Gets text of accessible widget. */ |
42 | } | 42 | } |
@@ -48,7 +48,7 @@ interface Elm_Interface_Atspi_Text () | |||
48 | char *text; /*@ UTF-8 encoded text. */ | 48 | char *text; /*@ UTF-8 encoded text. */ |
49 | } | 49 | } |
50 | } | 50 | } |
51 | protected caret_offset { | 51 | caret_offset @protected { |
52 | get { | 52 | get { |
53 | /*@ Gets offset position of caret (cursor) */ | 53 | /*@ Gets offset position of caret (cursor) */ |
54 | } | 54 | } |
@@ -60,7 +60,7 @@ interface Elm_Interface_Atspi_Text () | |||
60 | int offset; | 60 | int offset; |
61 | } | 61 | } |
62 | } | 62 | } |
63 | protected attribute { | 63 | attribute @protected { |
64 | get { | 64 | get { |
65 | /*@ Indicate if a text attribute with a given name is set */ | 65 | /*@ Indicate if a text attribute with a given name is set */ |
66 | return bool; | 66 | return bool; |
@@ -76,7 +76,7 @@ interface Elm_Interface_Atspi_Text () | |||
76 | char *value; /* Value of text attribute. Should be free() */ | 76 | char *value; /* Value of text attribute. Should be free() */ |
77 | } | 77 | } |
78 | } | 78 | } |
79 | protected attributes { | 79 | attributes @protected { |
80 | get { | 80 | get { |
81 | /* Gets list of all text attributes. */ | 81 | /* Gets list of all text attributes. */ |
82 | } | 82 | } |
@@ -88,14 +88,14 @@ interface Elm_Interface_Atspi_Text () | |||
88 | own(Eina_List*) attributes; | 88 | own(Eina_List*) attributes; |
89 | } | 89 | } |
90 | } | 90 | } |
91 | protected default_attributes { | 91 | default_attributes @protected { |
92 | get { | 92 | get { |
93 | } | 93 | } |
94 | values { | 94 | values { |
95 | own(Eina_List*) attributes; | 95 | own(Eina_List*) attributes; |
96 | } | 96 | } |
97 | } | 97 | } |
98 | protected character_extents { | 98 | character_extents @protected { |
99 | get { | 99 | get { |
100 | return bool; | 100 | return bool; |
101 | } | 101 | } |
@@ -107,14 +107,14 @@ interface Elm_Interface_Atspi_Text () | |||
107 | Eina_Rectangle rect; | 107 | Eina_Rectangle rect; |
108 | } | 108 | } |
109 | } | 109 | } |
110 | protected character_count { | 110 | character_count @protected { |
111 | get { | 111 | get { |
112 | } | 112 | } |
113 | values { | 113 | values { |
114 | int count; | 114 | int count; |
115 | } | 115 | } |
116 | } | 116 | } |
117 | protected offset_at_point { | 117 | offset_at_point @protected { |
118 | get { | 118 | get { |
119 | } | 119 | } |
120 | keys { | 120 | keys { |
@@ -126,7 +126,7 @@ interface Elm_Interface_Atspi_Text () | |||
126 | int offset; | 126 | int offset; |
127 | } | 127 | } |
128 | } | 128 | } |
129 | protected bounded_ranges { | 129 | bounded_ranges @protected { |
130 | get { | 130 | get { |
131 | } | 131 | } |
132 | keys { | 132 | keys { |
@@ -139,7 +139,7 @@ interface Elm_Interface_Atspi_Text () | |||
139 | Eina_List *ranges; | 139 | Eina_List *ranges; |
140 | } | 140 | } |
141 | } | 141 | } |
142 | protected range_extents { | 142 | range_extents @protected { |
143 | get { | 143 | get { |
144 | return bool; | 144 | return bool; |
145 | } | 145 | } |
@@ -154,14 +154,14 @@ interface Elm_Interface_Atspi_Text () | |||
154 | Eina_Rectangle rect; | 154 | Eina_Rectangle rect; |
155 | } | 155 | } |
156 | } | 156 | } |
157 | protected selections_count { | 157 | selections_count @protected { |
158 | get { | 158 | get { |
159 | } | 159 | } |
160 | values { | 160 | values { |
161 | int count; | 161 | int count; |
162 | } | 162 | } |
163 | } | 163 | } |
164 | protected selection { | 164 | selection @protected { |
165 | get { | 165 | get { |
166 | } | 166 | } |
167 | set { | 167 | set { |
@@ -177,14 +177,14 @@ interface Elm_Interface_Atspi_Text () | |||
177 | } | 177 | } |
178 | } | 178 | } |
179 | methods { | 179 | methods { |
180 | protected selection_add { | 180 | selection_add @protected { |
181 | params { | 181 | params { |
182 | @in int start_offset; | 182 | @in int start_offset; |
183 | @in int end_offset; | 183 | @in int end_offset; |
184 | } | 184 | } |
185 | return bool; | 185 | return bool; |
186 | } | 186 | } |
187 | protected selection_remove { | 187 | selection_remove @protected { |
188 | params { | 188 | params { |
189 | @in int selection_number; | 189 | @in int selection_number; |
190 | } | 190 | } |
diff --git a/src/lib/elm_interface_atspi_value.eo b/src/lib/elm_interface_atspi_value.eo index ded5a7b3c..91a12eacc 100644 --- a/src/lib/elm_interface_atspi_value.eo +++ b/src/lib/elm_interface_atspi_value.eo | |||
@@ -3,7 +3,7 @@ interface Elm_Interface_Atspi_Value () | |||
3 | legacy_prefix: null; | 3 | legacy_prefix: null; |
4 | eo_prefix: elm_interface_atspi_value; | 4 | eo_prefix: elm_interface_atspi_value; |
5 | properties { | 5 | properties { |
6 | protected value_and_text { | 6 | value_and_text @protected { |
7 | get { | 7 | get { |
8 | /*@ Gets value displayed by a accessible widget. */ | 8 | /*@ Gets value displayed by a accessible widget. */ |
9 | } | 9 | } |
@@ -17,7 +17,7 @@ interface Elm_Interface_Atspi_Value () | |||
17 | eg. small, enough */ | 17 | eg. small, enough */ |
18 | } | 18 | } |
19 | } | 19 | } |
20 | protected range { | 20 | range @protected { |
21 | get { | 21 | get { |
22 | /* Gets a range of all possible values and its description */ | 22 | /* Gets a range of all possible values and its description */ |
23 | } | 23 | } |
@@ -27,7 +27,7 @@ interface Elm_Interface_Atspi_Value () | |||
27 | const(char)* description; | 27 | const(char)* description; |
28 | } | 28 | } |
29 | } | 29 | } |
30 | protected increment { | 30 | increment @protected { |
31 | get { | 31 | get { |
32 | /* Gets an minimal incrementation value */ | 32 | /* Gets an minimal incrementation value */ |
33 | } | 33 | } |
diff --git a/src/lib/elm_interface_atspi_widget_action.eo b/src/lib/elm_interface_atspi_widget_action.eo index b7dd850f4..7d5d1a798 100644 --- a/src/lib/elm_interface_atspi_widget_action.eo +++ b/src/lib/elm_interface_atspi_widget_action.eo | |||
@@ -4,7 +4,7 @@ mixin Elm_Interface_Atspi_Widget_Action (Elm_Interface_Atspi_Action) | |||
4 | eo_prefix: elm_interface_atspi_widget_action; | 4 | eo_prefix: elm_interface_atspi_widget_action; |
5 | data: null; | 5 | data: null; |
6 | properties { | 6 | properties { |
7 | protected elm_actions { | 7 | elm_actions @protected { |
8 | get { | 8 | get { |
9 | } | 9 | } |
10 | values { | 10 | values { |