1import efl_types;
2
3class @beta Efl.Datetime.Manager extends Efl.Object
4{
5   [[Efl datetime manager class for Datepicker and Timepicker]]
6   methods {
7      @property value {
8         [[The value of a date, time for Datepicker or Timepicker.
9
10           The value for Datepicker contains year, month, and day. (tm_year, tm_mon, and tm_mday in Efl_Time)
11           The value for Timepicker contains hour, and min. (tm_hour, and tm_min in Efl_Time)
12         ]]
13         set {
14         }
15         get {
16         }
17         values {
18            newtime: Efl.Time; [[Time structure containing date or time value.]]
19         }
20      }
21      @property format {
22         [[The format of date or time.
23
24           Default format is taken as per the system locale settings.
25         ]]
26         set {
27         }
28         get {
29         }
30         values {
31            fmt: string; [[The format string]]
32         }
33      }
34      @property string {
35         [[Get the string that matches with the format.]]
36         get {
37         }
38         keys {
39            fmt: string; [[The format string]]
40         }
41         values {
42            string: string; [[The string that matches with the format]]
43         }
44      }
45   }
46   implements {
47      Efl.Object.constructor;
48      Efl.Object.destructor;
49   }
50}
51