Add ELM_INPUT_PANEL_LAYOUT_DATETIME

This commit is contained in:
Jihoon Kim 2013-05-27 16:20:18 +09:00
parent 10a212a709
commit e9692aa769
3 changed files with 7 additions and 1 deletions

View File

@ -1368,3 +1368,7 @@
2013-05-27 Tae-Hwan Kim (bluezery)
* Add support elm_object_item_signal_emit() for elm_list.
2013-05-27 Jihoon Kim (jihoon)
* Add ELM_INPUT_PANEL_LAYOUT_DATETIME.

View File

@ -70,6 +70,7 @@ Additions:
* Add elm_entry smart callback - "text,set,done".
* Add selection handlers to entry.
* Add support elm_object_item_signal_emit() for elm_list.
* Add ELM_INPUT_PANEL_LAYOUT_DATETIME.
Improvements:

View File

@ -47,7 +47,8 @@ typedef enum
ELM_INPUT_PANEL_LAYOUT_INVALID, /**< Never use this */
ELM_INPUT_PANEL_LAYOUT_HEX, /**< Hexadecimal layout */
ELM_INPUT_PANEL_LAYOUT_TERMINAL, /**< Command-line terminal layout including esc, alt, ctrl key, so on (no auto-correct, no auto-capitalization) */
ELM_INPUT_PANEL_LAYOUT_PASSWORD /**< Like normal, but no auto-correct, no auto-capitalization etc. */
ELM_INPUT_PANEL_LAYOUT_PASSWORD, /**< Like normal, but no auto-correct, no auto-capitalization etc. */
ELM_INPUT_PANEL_LAYOUT_DATETIME /**< Date and time layout @since 1.8 */
} Elm_Input_Panel_Layout; /**< Type of input panel (virtual keyboard) to use - this is a hint and may not provide exactly what is desired. */
enum