efl/legacy/elementary/src/lib/elm_widget_clock.h

81 lines
2.2 KiB
C

#ifndef ELM_WIDGET_CLOCK_H
#define ELM_WIDGET_CLOCK_H
#include "Elementary.h"
#ifdef HAVE_EIO
# include <Eio.h>
#endif
/**
* @addtogroup Widget
* @{
*
* @section elm-clock-class The Elementary Clock Class
*
* Elementary, besides having the @ref Clock widget, exposes its
* foundation -- the Elementary Clock Class -- in order to create other
* widgets which are a clock with some more logic on top.
*/
/**
* Base layout smart data extended with clock instance data.
*/
typedef struct _Elm_Clock_Smart_Data Elm_Clock_Smart_Data;
struct _Elm_Clock_Smart_Data
{
double interval, first_interval;
Elm_Clock_Edit_Mode digedit;
int hrs, min, sec, timediff;
Evas_Object *digit[6];
Evas_Object *am_pm_obj;
Evas_Object *sel_obj;
Ecore_Timer *ticker, *spin;
struct
{
int hrs, min, sec;
char ampm;
Elm_Clock_Edit_Mode digedit;
Eina_Bool seconds : 1;
Eina_Bool am_pm : 1;
Eina_Bool edit : 1;
} cur;
Eina_Bool seconds : 1;
Eina_Bool am_pm : 1;
Eina_Bool edit : 1;
};
/**
* @}
*/
#define ELM_CLOCK_DATA_GET(o, sd) \
Elm_Clock_Smart_Data * sd = eo_data_scope_get(o, ELM_OBJ_CLOCK_CLASS)
#define ELM_CLOCK_DATA_GET_OR_RETURN(o, ptr) \
ELM_CLOCK_DATA_GET(o, ptr); \
if (!ptr) \
{ \
CRITICAL("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return; \
}
#define ELM_CLOCK_DATA_GET_OR_RETURN_VAL(o, ptr, val) \
ELM_CLOCK_DATA_GET(o, ptr); \
if (!ptr) \
{ \
CRITICAL("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
return val; \
}
#define ELM_CLOCK_CHECK(obj) \
if (!eo_isa((obj), ELM_OBJ_CLOCK_CLASS)) \
return
#endif