summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_clock.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_ui_clock.eo')
-rw-r--r--src/lib/elementary/efl_ui_clock.eo17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/lib/elementary/efl_ui_clock.eo b/src/lib/elementary/efl_ui_clock.eo
index a18a0af599..962b7bac19 100644
--- a/src/lib/elementary/efl_ui_clock.eo
+++ b/src/lib/elementary/efl_ui_clock.eo
@@ -1,6 +1,6 @@
import efl_types;
-enum Efl.Ui.Clock.Type
+enum Efl.Ui.Clock_Type
{
[[Identifies a clock field, The widget supports 6 fields : Year, month,
Date, Hour, Minute, AM/PM
@@ -16,7 +16,7 @@ enum Efl.Ui.Clock.Type
ampm = 7, [[Indicates AM/PM field .]]
}
-class Efl.Ui.Clock (Efl.Ui.Layout)
+class Efl.Ui.Clock (Efl.Ui.Layout.Object)
{
[[Efl UI clock class]]
methods {
@@ -179,7 +179,7 @@ class Efl.Ui.Clock (Efl.Ui.Layout)
[[ The field to be visible/not.]]
set{} get{}
keys {
- fieldtype: Efl.Ui.Clock.Type; [[Type of the field. #EFL_UI_CLOCK_TYPE_YEAR etc.]]
+ fieldtype: Efl.Ui.Clock_Type; [[Type of the field. #EFL_UI_CLOCK_TYPE_YEAR etc.]]
}
values {
visible: bool; [[$true field can be visible, $false otherwise.]]
@@ -213,7 +213,7 @@ class Efl.Ui.Clock (Efl.Ui.Layout)
]]
}
keys {
- fieldtype: Efl.Ui.Clock.Type; [[Type of the field. #EFL_UI_CLOCK_TYPE_YEAR etc.]]
+ fieldtype: Efl.Ui.Clock_Type; [[Type of the field. #EFL_UI_CLOCK_TYPE_YEAR etc.]]
}
values {
min: int; [[Reference to field's minimum value.]]
@@ -222,14 +222,13 @@ class Efl.Ui.Clock (Efl.Ui.Layout)
}
}
implements {
- class.constructor;
Efl.Object.constructor;
- Elm.Widget.theme_apply;
- Elm.Widget.on_disabled_update;
- Elm.Widget.on_focus_update;
+ Efl.Ui.Widget.theme_apply;
+ Efl.Ui.Widget.on_disabled_update;
+ Efl.Ui.Focus.Object.on_focus_update;
Efl.Ui.Translatable.translation_update;
}
events {
- changed; [[Called when clock changed]]
+ changed: void; [[Called when clock changed]]
}
}