summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWoochanlee <wc0917.lee@samsung.com>2018-09-04 09:37:00 +0900
committerHermet Park <hermetpark@gmail.com>2018-09-04 09:37:01 +0900
commit7655a0d267ef59ba530cf7ad52bbc176049904da (patch)
tree372fad4d154df426d0544d7689ca9af485953a62
parentfb5431b7bcac3208a8ac196e16889561e6ce9099 (diff)
downloadefl-7655a0d267ef59ba530cf7ad52bbc176049904da.tar.gz
Clean up efl_ui_XXX eo files.
Summary: Delete unnecessary interface references. Delete unnecessary annotations. Reviewers: Hermet, Jaehyun_Cho, zmike Reviewed By: Hermet Subscribers: segfaultxavi, q66, cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D6945
-rw-r--r--src/lib/elementary/efl_ui_button.eo2
-rw-r--r--src/lib/elementary/efl_ui_check.c6
-rw-r--r--src/lib/elementary/efl_ui_check.eo1
-rw-r--r--src/lib/elementary/efl_ui_focus_layer.eo2
-rw-r--r--src/lib/elementary/efl_ui_image.eo1
-rw-r--r--src/lib/elementary/efl_ui_image_zoomable.eo2
-rw-r--r--src/lib/elementary/efl_ui_image_zoomable_pan.eo12
-rw-r--r--src/lib/elementary/efl_ui_scroller.eo3
-rw-r--r--src/lib/elementary/efl_ui_textpath.eo2
-rw-r--r--src/lib/elementary/efl_ui_video.eo3
-rw-r--r--src/lib/elementary/efl_ui_view_list_pan.eo6
-rw-r--r--src/lib/elementary/efl_ui_widget_part_shadow.eo2
-rw-r--r--src/lib/elementary/efl_ui_win.eo1
13 files changed, 7 insertions, 36 deletions
diff --git a/src/lib/elementary/efl_ui_button.eo b/src/lib/elementary/efl_ui_button.eo
index 3ce8c7dcc3..64c0b7f3a5 100644
--- a/src/lib/elementary/efl_ui_button.eo
+++ b/src/lib/elementary/efl_ui_button.eo
@@ -1,5 +1,5 @@
class Efl.Ui.Button (Efl.Ui.Layout.Object, Efl.Ui.Clickable, Efl.Ui.Autorepeat,
- Efl.Text, Efl.Text_Markup, Efl.Content,
+ Efl.Text, Efl.Content,
Efl.Access.Widget.Action, Efl.Ui.Translatable)
{
[[Push-button widget
diff --git a/src/lib/elementary/efl_ui_check.c b/src/lib/elementary/efl_ui_check.c
index 4b38992e3b..4e1d197cdf 100644
--- a/src/lib/elementary/efl_ui_check.c
+++ b/src/lib/elementary/efl_ui_check.c
@@ -306,12 +306,6 @@ _efl_ui_check_selected_set(Eo *obj, Efl_Ui_Check_Data *sd, Eina_Bool value)
}
EOLIAN static void
-_efl_ui_check_efl_ui_nstate_count_set(Eo *obj EINA_UNUSED, Efl_Ui_Check_Data *pd EINA_UNUSED, int nstate EINA_UNUSED)
-{
- //NOP;
-}
-
-EOLIAN static void
_efl_ui_check_efl_ui_nstate_value_set(Eo *obj, Efl_Ui_Check_Data *pd EINA_UNUSED, int state)
{
Eina_Bool _state = !!state;
diff --git a/src/lib/elementary/efl_ui_check.eo b/src/lib/elementary/efl_ui_check.eo
index 43b23fbcb5..ef0f76de79 100644
--- a/src/lib/elementary/efl_ui_check.eo
+++ b/src/lib/elementary/efl_ui_check.eo
@@ -25,7 +25,6 @@ class Efl.Ui.Check (Efl.Ui.Nstate, Efl.Access.Widget.Action)
Efl.Ui.Widget.on_access_activate;
Efl.Ui.Widget.theme_apply;
Efl.Ui.Widget.widget_event;
- Efl.Ui.Nstate.count { set; }
Efl.Ui.Nstate.value { set; }
Efl.Access.Object.state_set { get; }
Efl.Access.Widget.Action.elm_actions { get; }
diff --git a/src/lib/elementary/efl_ui_focus_layer.eo b/src/lib/elementary/efl_ui_focus_layer.eo
index 8650981425..a5a3564168 100644
--- a/src/lib/elementary/efl_ui_focus_layer.eo
+++ b/src/lib/elementary/efl_ui_focus_layer.eo
@@ -1,4 +1,4 @@
-mixin Efl.Ui.Focus.Layer (Efl.Interface, Efl.Ui.Widget, Efl.Gfx.Entity, Efl.Ui.Widget_Focus_Manager) {
+mixin Efl.Ui.Focus.Layer (Efl.Interface, Efl.Ui.Widget, Efl.Ui.Widget_Focus_Manager) {
[[This defines the inheriting widget as focus layer
A focus layer is the uppermost one which received input and handles all focus related events for as long as it exists and is visible. It's NOT possible to escape this layer with focus movement.
diff --git a/src/lib/elementary/efl_ui_image.eo b/src/lib/elementary/efl_ui_image.eo
index a572d468d0..94ed732b88 100644
--- a/src/lib/elementary/efl_ui_image.eo
+++ b/src/lib/elementary/efl_ui_image.eo
@@ -107,7 +107,6 @@ class Efl.Ui.Image (Efl.Ui.Widget, Efl.Ui.Clickable, Efl.Ui.Draggable,
Efl.Layout.Signal.signal_emit;
Efl.Layout.Group.group_size_min { get; }
Efl.Layout.Group.group_size_max { get; }
- //Efl.Canvas.Layout_Group.group_data { get; }
Efl.Layout.Calc.calc_size_min;
Efl.Layout.Calc.calc_force;
Efl.Canvas.Object.clip { set; }
diff --git a/src/lib/elementary/efl_ui_image_zoomable.eo b/src/lib/elementary/efl_ui_image_zoomable.eo
index 7695b592ac..1baeff1755 100644
--- a/src/lib/elementary/efl_ui_image_zoomable.eo
+++ b/src/lib/elementary/efl_ui_image_zoomable.eo
@@ -2,7 +2,7 @@
struct @extern Elm.Photocam.Error;
struct @extern Elm.Photocam.Progress;
-class Efl.Ui.Image_Zoomable (Efl.Ui.Widget, Efl.Ui.Image, Efl.Ui.Zoom,
+class Efl.Ui.Image_Zoomable (Efl.Ui.Image, Efl.Ui.Zoom,
Efl.Ui.Scrollable_Interactive,
Efl.Ui.Scrollbar)
{
diff --git a/src/lib/elementary/efl_ui_image_zoomable_pan.eo b/src/lib/elementary/efl_ui_image_zoomable_pan.eo
index a9c9cb3b4d..0f487138ea 100644
--- a/src/lib/elementary/efl_ui_image_zoomable_pan.eo
+++ b/src/lib/elementary/efl_ui_image_zoomable_pan.eo
@@ -13,16 +13,4 @@ class Efl.Ui.Image_Zoomable_Pan (Efl.Ui.Pan)
Efl.Ui.Pan.pan_position_min { get; }
Efl.Ui.Pan.pan_position_max { get; }
}
- events {
- /* FIXME: Nobody is emitting these
- load; [[Called when load started]]
- loaded; [[Called when load finished]]
- load,detail; [[Called when load details started]]
- loaded,detail; [[Called when load details finished]]
- download,start; [[Called when download started]]
- download,progress; [[Called with download progress updates]]
- download,done; [[Called when download finished]]
- download,error; [[Called when download failed with an error]]
- */
- }
}
diff --git a/src/lib/elementary/efl_ui_scroller.eo b/src/lib/elementary/efl_ui_scroller.eo
index 65c4f8a5fd..e9765166c2 100644
--- a/src/lib/elementary/efl_ui_scroller.eo
+++ b/src/lib/elementary/efl_ui_scroller.eo
@@ -1,8 +1,7 @@
class Efl.Ui.Scroller (Efl.Ui.Layout.Object,
Efl.Ui.Scrollable_Interactive,
Efl.Ui.Scrollbar,
- Efl.Content,
- Efl.Ui.Drag)
+ Efl.Content)
{
[[Efl ui scroller class]]
implements {
diff --git a/src/lib/elementary/efl_ui_textpath.eo b/src/lib/elementary/efl_ui_textpath.eo
index 23740856dd..8feca95bd5 100644
--- a/src/lib/elementary/efl_ui_textpath.eo
+++ b/src/lib/elementary/efl_ui_textpath.eo
@@ -4,7 +4,7 @@ enum Efl.Ui.Textpath_Direction {
ccw [[Counter-clockwise]]
}
-class Efl.Ui.Textpath (Efl.Ui.Layout.Object, Efl.Object, Efl.Text, Efl.Gfx.Path)
+class Efl.Ui.Textpath (Efl.Ui.Layout.Object, Efl.Text, Efl.Gfx.Path)
{
[[Efl Ui Textpath class]]
methods {
diff --git a/src/lib/elementary/efl_ui_video.eo b/src/lib/elementary/efl_ui_video.eo
index 47b19c139e..bbbfde69fe 100644
--- a/src/lib/elementary/efl_ui_video.eo
+++ b/src/lib/elementary/efl_ui_video.eo
@@ -1,5 +1,4 @@
-class Efl.Ui.Video (Efl.Ui.Layout.Object, Efl.File,
- Efl.Player, Efl.Access.Widget.Action)
+class Efl.Ui.Video (Efl.Ui.Layout.Object, Efl.Player, Efl.Access.Widget.Action)
{
[[Efl UI video class]]
legacy_prefix: elm_video;
diff --git a/src/lib/elementary/efl_ui_view_list_pan.eo b/src/lib/elementary/efl_ui_view_list_pan.eo
index ceca0744a2..b1ef036bb8 100644
--- a/src/lib/elementary/efl_ui_view_list_pan.eo
+++ b/src/lib/elementary/efl_ui_view_list_pan.eo
@@ -9,10 +9,4 @@ class Efl.Ui.View_List_Pan (Efl.Ui.Pan)
Efl.Ui.Pan.pan_position_max { get; }
Efl.Canvas.Group.group_calculate;
}
- events {
- /* FIXME: Nobody is emitting these
- item,focused: void; [[Called when item is focused.]]
- item,unfocused: void; [[Called when item has lost focus.]]
- */
- }
}
diff --git a/src/lib/elementary/efl_ui_widget_part_shadow.eo b/src/lib/elementary/efl_ui_widget_part_shadow.eo
index 970b93b2f9..4d611c3a04 100644
--- a/src/lib/elementary/efl_ui_widget_part_shadow.eo
+++ b/src/lib/elementary/efl_ui_widget_part_shadow.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Widget_Part_Shadow (Efl.Ui.Widget_Part, Efl.Gfx.Entity, Efl.Gfx.Color,
+class Efl.Ui.Widget_Part_Shadow (Efl.Ui.Widget_Part, Efl.Gfx.Color,
Efl.Gfx.Blur, Efl.Gfx.Filter)
{
[[A drop-shadow or glow effect around any widget.
diff --git a/src/lib/elementary/efl_ui_win.eo b/src/lib/elementary/efl_ui_win.eo
index 93a94577d6..567eb6e1e6 100644
--- a/src/lib/elementary/efl_ui_win.eo
+++ b/src/lib/elementary/efl_ui_win.eo
@@ -812,7 +812,6 @@ class Efl.Ui.Win (Efl.Ui.Widget, Efl.Canvas.Scene, Efl.Canvas.Pointer, Efl.Acces
Efl.Canvas.Scene.object_top_at_xy_get;
Efl.Canvas.Scene.objects_in_rectangle_get;
Efl.Canvas.Scene.object_top_in_rectangle_get;
- //Efl.Canvas.seats;
Efl.Canvas.Scene.device { get; }
Efl.Canvas.Scene.seat { get; }
Efl.Content.content { get; set; }