Tizen Native API  5.0
Clock

clock_inheritance_tree.png

This is a digital clock widget. In its default theme, it has a vintage "flipping numbers clock" appearance, which will animate sheets of individual algorisms individually as time goes by.

A newly created clock will fetch system's time (already considering local time adjustments) to start with, and will tick accordingly. It may or may not show seconds.

Clocks have an edition mode. When in it, the sheets will display extra arrow indications on the top and bottom and the user may click on them to raise or lower the time values. After it's told to exit edition mode, it will keep ticking with that new time set (it keeps the difference from local time).

Also, when under edition mode, user clicks on the cited arrows which are held for some time will make the clock to flip the sheet, thus editing the time, continuously and automatically for the user. The interval between sheet flips will keep reducing in time, so that it helps the user to reach a time which is distant from the one set.

The time display is, by default, in military mode (24h), but an am/pm indicator may be optionally shown, too, when it will switch to 12h.

This widget inherits from the Layout one, so that all the functions acting on it also work for clock objects.

This widget emits the following signals, besides the ones sent from Layout:

  • "changed" - the clock's user changed the time
  • "focused" - When the clock ehas received focus. (since 1.8)
  • "unfocused" - When the clock has lost focus. (since 1.8)
  • "language,changed" - the program's language changed (since 1.9)

Supported elm_object common APIs.

Here is an example on its usage:


Enumeration Type Documentation

Identifiers for which clock digits should be editable, when a clock widget is in editing mode. Values may be OR-ed together to make a mask, naturally.

See also elm_clock_edit_set, elm_clock_edit_mode_set.

Enumerator:
ELM_CLOCK_EDIT_DEFAULT 

Default value. Means that all digits are editable, when in editing mode.

ELM_CLOCK_EDIT_HOUR_DECIMAL 

Decimal digit of hours value should be editable.

ELM_CLOCK_EDIT_HOUR_UNIT 

Unit digit of hours value should be editable.

ELM_CLOCK_EDIT_MIN_DECIMAL 

Decimal digit of minutes value should be editable.

ELM_CLOCK_EDIT_MIN_UNIT 

Unit digit of minutes value should be editable.

ELM_CLOCK_EDIT_SEC_DECIMAL 

Decimal digit of seconds value should be editable.

ELM_CLOCK_EDIT_SEC_UNIT 

Unit digit of seconds value should be editable.

ELM_CLOCK_EDIT_ALL 

All digits should be editable.