summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_datepicker.eo
blob: 11df7c45cceb574e55ee6f16a2f6688eb790cce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
class @beta Efl.Ui.Datepicker extends Efl.Ui.Layout_Base
{
   [[Datepicker widget

     This is a widget which allows the user to pick a date using internal spinner.
     User can use the internal spinner to select year, month, day or user can input
     value using internal entry.
   ]]
   methods {
      @property date_min {
         [[The lower boundary of date.

           $year: Year. The year range is from 1900 to 2137.

           $month: Month. The month range is from 1 to 12.

           $day: Day. The day range is from 1 to 31 according to $month.
         ]]
         set {
         }
         get{
         }
         values {
            year: int; [[The year value.]]
            month: int; [[The month value from 1 to 12.]]
            day: int; [[The day value from 1 to 31.]]
         }
      }
      @property date_max {
         [[The upper boundary of date.

           $year: Year. The year range is from 1900 to 2137.

           $month: Month. The month range is from 1 to 12.

           $day: Day. The day range is from 1 to 31 according to $month.
         ]]
         set {
         }
         get {
         }
         values {
            year: int; [[The year value.]]
            month: int; [[The month value from 1 to 12.]]
            day: int; [[The day value from 1 to 31.]]
         }
      }
      @property date {
         [[The current value of date.

           $year: Year. The year range is from 1900 to 2137.

           $month: Month. The month range is from 0 to 11.

           $day: Day. The day range is from 1 to 31 according to $month.
         ]]
         set {
         }
         get{
         }
         values {
            year: int; [[The year value.]]
            month: int; [[The month value from 1 to 12.]]
            day: int; [[The day value from 1 to 31.]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Object.destructor;
   }
   events {
      date,changed: void; [[Called when date value is changed]]
   }
}