docs: fill in missing docs for efl_ui_popup_alert eo class

This commit is contained in:
Stefan Schmidt 2017-12-04 15:42:36 +01:00
parent 5ee90bcd04
commit 0d0e677431
1 changed files with 4 additions and 3 deletions

View File

@ -12,16 +12,17 @@ struct Efl.Ui.Popup.Alert.Clicked_Event {
class Efl.Ui.Popup.Alert(Efl.Ui.Popup) class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
{ {
[[EFL UI Popup Alert class]]
methods { methods {
@property button { @property button {
set { set {
[[Set popup buttons.]] [[Set popup buttons.]]
} }
keys { keys {
type: Efl.Ui.Popup.Alert.Button; type: Efl.Ui.Popup.Alert.Button; [[Alert popup button type]]
} }
values { values {
text: string; text: string; [[Alert string on button]]
} }
} }
} }
@ -31,6 +32,6 @@ class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
Efl.Part.part; Efl.Part.part;
} }
events { events {
clicked: Efl.Ui.Popup.Alert.Clicked_Event; clicked: Efl.Ui.Popup.Alert.Clicked_Event; [[Called when alert popup was clicked]]
} }
} }