cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f01b82cf51b380f1b8ab1b3e0090ffaa3cf85762

commit f01b82cf51b380f1b8ab1b3e0090ffaa3cf85762
Author: Xavi Artigas <xavierarti...@yahoo.es>
Date:   Mon Apr 9 15:31:05 2018 +0200

    Efl.Ui.Popup_* (from Efl.Ui.Popup.*)
    
    Ref https://phab.enlightenment.org/T6847
    
    Reviewed-by: Cedric Bail <ced...@osg.samsung.com>
---
 src/lib/elementary/efl_ui_popup.eo                   |  6 +++---
 src/lib/elementary/efl_ui_popup_alert.eo             | 10 +++++-----
 src/lib/elementary/efl_ui_popup_alert_part.eo        |  2 +-
 src/lib/elementary/efl_ui_popup_alert_scroll_part.eo |  2 +-
 src/lib/elementary/efl_ui_popup_alert_text_part.eo   |  2 +-
 src/lib/elementary/efl_ui_popup_anchor.eo            | 10 +++++-----
 src/lib/elementary/efl_ui_popup_part.eo              |  2 +-
 7 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/src/lib/elementary/efl_ui_popup.eo 
b/src/lib/elementary/efl_ui_popup.eo
index 1038fab4b5..676f769ee7 100644
--- a/src/lib/elementary/efl_ui_popup.eo
+++ b/src/lib/elementary/efl_ui_popup.eo
@@ -1,4 +1,4 @@
-enum Efl.Ui.Popup.Align {
+enum Efl.Ui.Popup_Align {
     [[Popup alignment type]]
     none = 0, [[Popup not aligned]]
     center,   [[Popup aligned to center]]
@@ -20,7 +20,7 @@ class Efl.Ui.Popup(Efl.Ui.Layout.Object, Efl.Content)
             [[ Get the current popup alignment.]]
          }
          values {
-             type: Efl.Ui.Popup.Align; [[Alignment type]]
+             type: Efl.Ui.Popup_Align; [[Alignment type]]
          }
       }
       @property timeout {
@@ -49,7 +49,7 @@ class Efl.Ui.Popup(Efl.Ui.Layout.Object, Efl.Content)
       }
    }
    parts {
-      backwall: Efl.Ui.Popup.Part; [[A backwall behind the popup.]]
+      backwall: Efl.Ui.Popup_Part; [[A backwall behind the popup.]]
    }
    implements {
       Efl.Object.constructor;
diff --git a/src/lib/elementary/efl_ui_popup_alert.eo 
b/src/lib/elementary/efl_ui_popup_alert.eo
index 344eb8c106..3dc77fbb01 100644
--- a/src/lib/elementary/efl_ui_popup_alert.eo
+++ b/src/lib/elementary/efl_ui_popup_alert.eo
@@ -1,13 +1,13 @@
-enum Efl.Ui.Popup_Alert.Button {
+enum Efl.Ui.Popup_Alert_Button {
    [[Defines the type of the alert button.]]
    positive = 0, [[Button having positive meaning. e.g. "Yes"]]
    negative, [[Button having negative meaning. e.g. "No"]]
    user [[Button having user-defined meaning. e.g. "Cancel"]]
 }
 
-struct Efl.Ui.Popup_Alert.Button.Clicked_Event {
+struct Efl.Ui.Popup_Alert_Button_Clicked_Event {
    [[Information of clicked event]]
-   button_type: Efl.Ui.Popup_Alert.Button; [[Clicked button type]]
+   button_type: Efl.Ui.Popup_Alert_Button; [[Clicked button type]]
 }
 
 class Efl.Ui.Popup_Alert(Efl.Ui.Popup)
@@ -19,7 +19,7 @@ class Efl.Ui.Popup_Alert(Efl.Ui.Popup)
             [[Set popup buttons.]]
          }
          keys {
-            type: Efl.Ui.Popup_Alert.Button; [[Alert popup button type]]
+            type: Efl.Ui.Popup_Alert_Button; [[Alert popup button type]]
          }
          values {
             text: string; [[Alert string on button]]
@@ -32,6 +32,6 @@ class Efl.Ui.Popup_Alert(Efl.Ui.Popup)
       Efl.Part.part;
    }
    events {
-      button,clicked: Efl.Ui.Popup_Alert.Button.Clicked_Event; [[Called when 
alert popup was clicked]]
+      button,clicked: Efl.Ui.Popup_Alert_Button_Clicked_Event; [[Called when 
alert popup was clicked]]
    }
 }
diff --git a/src/lib/elementary/efl_ui_popup_alert_part.eo 
b/src/lib/elementary/efl_ui_popup_alert_part.eo
index 31198e1ce0..1ca02b96ff 100644
--- a/src/lib/elementary/efl_ui_popup_alert_part.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_part.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup_Alert.Part (Efl.Ui.Layout.Part_Text)
+class Efl.Ui.Popup_Alert_Part (Efl.Ui.Layout.Part_Text)
 {
    [[Efl UI Popup Alert internal part class]]
    data: null;
diff --git a/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo 
b/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo
index 1514b514df..b890b982a3 100644
--- a/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup_Alert_Scroll.Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
+class Efl.Ui.Popup_Alert_Scroll_Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
 {
    [[Efl UI Popup Alert Scroll internal part class]]
    data: null;
diff --git a/src/lib/elementary/efl_ui_popup_alert_text_part.eo 
b/src/lib/elementary/efl_ui_popup_alert_text_part.eo
index 6c2231aaca..236ef2fd0a 100644
--- a/src/lib/elementary/efl_ui_popup_alert_text_part.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_text_part.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup_Alert_Text.Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
+class Efl.Ui.Popup_Alert_Text_Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
 {
    [[Efl UI Popup Alert Text internal part class]]
    data: null;
diff --git a/src/lib/elementary/efl_ui_popup_anchor.eo 
b/src/lib/elementary/efl_ui_popup_anchor.eo
index 5aed56e322..b47a7b2ada 100644
--- a/src/lib/elementary/efl_ui_popup_anchor.eo
+++ b/src/lib/elementary/efl_ui_popup_anchor.eo
@@ -25,11 +25,11 @@ class Efl.Ui.Popup_Anchor(Efl.Ui.Popup)
             [[Get the align priority of a popup.]]
          }
          values {
-            first: Efl.Ui.Popup.Align;  [[First align priority]]
-            second: Efl.Ui.Popup.Align; [[Second align priority]]
-            third: Efl.Ui.Popup.Align;  [[Third align priority]]
-            fourth: Efl.Ui.Popup.Align; [[Fourth align priority]]
-            fifth: Efl.Ui.Popup.Align;  [[Fifth align priority]]
+            first: Efl.Ui.Popup_Align;  [[First align priority]]
+            second: Efl.Ui.Popup_Align; [[Second align priority]]
+            third: Efl.Ui.Popup_Align;  [[Third align priority]]
+            fourth: Efl.Ui.Popup_Align; [[Fourth align priority]]
+            fifth: Efl.Ui.Popup_Align;  [[Fifth align priority]]
          }
       }
    }
diff --git a/src/lib/elementary/efl_ui_popup_part.eo 
b/src/lib/elementary/efl_ui_popup_part.eo
index 2e4969826a..28255788d2 100644
--- a/src/lib/elementary/efl_ui_popup_part.eo
+++ b/src/lib/elementary/efl_ui_popup_part.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup.Part (Efl.Ui.Layout.Part, Efl.Canvas.Object, Efl.File)
+class Efl.Ui.Popup_Part (Efl.Ui.Layout.Part, Efl.Canvas.Object, Efl.File)
 {
    [[Efl UI Popup internal part class]]
    data: null;

-- 


Reply via email to