Efl.Ui.Popup_* (from Efl.Ui.Popup.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
This commit is contained in:
Xavi Artigas 2018-04-09 15:31:05 +02:00 committed by Cedric Bail
parent bf4156b1c7
commit f01b82cf51
7 changed files with 17 additions and 17 deletions

View File

@ -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;

View File

@ -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]]
}
}

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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]]
}
}
}

View File

@ -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;