Description

Identifies a clock field, The widget supports 6 fields : Year, month, Date, Hour, Minute, AM/PM

Fields

  • year - Indicates Year field.
  • month - Indicates Month field.
  • date - Indicates Date field.
  • hour - Indicates Hour field.
  • minute - Indicates Minute field.
  • second - Indicates Second field.
  • day - Indicated Day field.
  • ampm - Indicates AM/PM field .

Signature

enum Efl.Ui.Clock_Type {
    year: 0,
    month: 1,
    date: 2,
    hour: 3,
    minute: 4,
    second: 5,
    day: 6,
    ampm: 7
}

C signature

typedef enum {
    EFL_UI_CLOCK_TYPE_YEAR = 0,
    EFL_UI_CLOCK_TYPE_MONTH = 1,
    EFL_UI_CLOCK_TYPE_DATE = 2,
    EFL_UI_CLOCK_TYPE_HOUR = 3,
    EFL_UI_CLOCK_TYPE_MINUTE = 4,
    EFL_UI_CLOCK_TYPE_SECOND = 5,
    EFL_UI_CLOCK_TYPE_DAY = 6,
    EFL_UI_CLOCK_TYPE_AMPM = 7
} Efl_Ui_Clock_Type;