tizen 2.3 release
[framework/uifw/elementary.git] / src / lib / elm_widget_hoversel.h
1 #ifndef ELM_WIDGET_HOVERSEL_H
2 #define ELM_WIDGET_HOVERSEL_H
3
4 #include "elm_widget_button.h"
5
6 #ifdef HAVE_EIO
7 # include <Eio.h>
8 #endif
9
10 /**
11  * @addtogroup Widget
12  * @{
13  *
14  * @section elm-hoversel-class The Elementary Hoversel Class
15  *
16  * Elementary, besides having the @ref Hoversel widget, exposes its
17  * foundation -- the Elementary Hoversel Class -- in order to create other
18  * widgets which are a hoversel with some more logic on top.
19  */
20
21 /**
22  * @def ELM_HOVERSEL_CLASS
23  *
24  * Use this macro to cast whichever subclass of
25  * #Elm_Hoversel_Smart_Class into it, so to access its fields.
26  *
27  * @ingroup Widget
28  */
29 #define ELM_HOVERSEL_CLASS(x) ((Elm_Hoversel_Smart_Class *)x)
30
31 /**
32  * @def ELM_HOVERSEL_DATA
33  *
34  * Use this macro to cast whichever subdata of
35  * #Elm_Hoversel_Smart_Data into it, so to access its fields.
36  *
37  * @ingroup Widget
38  */
39 #define ELM_HOVERSEL_DATA(x)  ((Elm_Hoversel_Smart_Data *)x)
40
41 /**
42  * @def ELM_HOVERSEL_SMART_CLASS_VERSION
43  *
44  * Current version for Elementary hoversel @b base smart class, a value
45  * which goes to _Elm_Hoversel_Smart_Class::version.
46  *
47  * @ingroup Widget
48  */
49 #define ELM_HOVERSEL_SMART_CLASS_VERSION 1
50
51 /**
52  * @def ELM_HOVERSEL_SMART_CLASS_INIT
53  *
54  * Initializer for a whole #Elm_Hoversel_Smart_Class structure, with
55  * @c NULL values on its specific fields.
56  *
57  * @param smart_class_init initializer to use for the "base" field
58  * (#Evas_Smart_Class).
59  *
60  * @see EVAS_SMART_CLASS_INIT_NULL
61  * @see EVAS_SMART_CLASS_INIT_NAME_VERSION
62  * @see ELM_HOVERSEL_SMART_CLASS_INIT_NULL
63  * @see ELM_HOVERSEL_SMART_CLASS_INIT_NAME_VERSION
64  *
65  * @ingroup Widget
66  */
67 #define ELM_HOVERSEL_SMART_CLASS_INIT(smart_class_init) \
68   {smart_class_init, ELM_HOVERSEL_SMART_CLASS_VERSION}
69
70 /**
71  * @def ELM_HOVERSEL_SMART_CLASS_INIT_NULL
72  *
73  * Initializer to zero out a whole #Elm_Hoversel_Smart_Class structure.
74  *
75  * @see ELM_HOVERSEL_SMART_CLASS_INIT_NAME_VERSION
76  * @see ELM_HOVERSEL_SMART_CLASS_INIT
77  *
78  * @ingroup Widget
79  */
80 #define ELM_HOVERSEL_SMART_CLASS_INIT_NULL \
81   ELM_HOVERSEL_SMART_CLASS_INIT(EVAS_SMART_CLASS_INIT_NULL)
82
83 /**
84  * @def ELM_HOVERSEL_SMART_CLASS_INIT_NAME_VERSION
85  *
86  * Initializer to zero out a whole #Elm_Hoversel_Smart_Class structure and
87  * set its name and version.
88  *
89  * This is similar to #ELM_HOVERSEL_SMART_CLASS_INIT_NULL, but it will
90  * also set the version field of #Elm_Hoversel_Smart_Class (base field)
91  * to the latest #ELM_HOVERSEL_SMART_CLASS_VERSION and name it to the
92  * specific value.
93  *
94  * It will keep a reference to the name field as a <c>"const char *"</c>,
95  * i.e., the name must be available while the structure is
96  * used (hint: static or global variable!) and must not be modified.
97  *
98  * @see ELM_HOVERSEL_SMART_CLASS_INIT_NULL
99  * @see ELM_HOVERSEL_SMART_CLASS_INIT
100  *
101  * @ingroup Widget
102  */
103 #define ELM_HOVERSEL_SMART_CLASS_INIT_NAME_VERSION(name) \
104   ELM_HOVERSEL_SMART_CLASS_INIT                          \
105     (ELM_BUTTON_SMART_CLASS_INIT_NAME_VERSION(name))
106
107 /**
108  * Elementary hoversel base smart class. This inherits directly from
109  * #Elm_Button_Smart_Class and is meant to build widgets extending the
110  * behavior of a hoversel.
111  *
112  * All of the functions listed on @ref Hoversel namespace will work for
113  * objects deriving from #Elm_Hoversel_Smart_Class.
114  */
115 typedef struct _Elm_Hoversel_Smart_Class
116 {
117    Elm_Button_Smart_Class base;
118
119    int                    version;    /**< Version of this smart class definition */
120 } Elm_Hoversel_Smart_Class;
121
122 /**
123  * Base button smart data extended with hoversel instance data.
124  */
125 typedef struct _Elm_Hoversel_Smart_Data Elm_Hoversel_Smart_Data;
126 struct _Elm_Hoversel_Smart_Data
127 {
128    Elm_Button_Smart_Data base;
129
130    /* aggregates a hover */
131    Evas_Object          *hover;
132    Evas_Object          *hover_parent;
133
134    Eina_List            *items;
135
136    Eina_Bool             horizontal : 1;
137    Eina_Bool             expanded   : 1;
138 };
139
140 typedef struct _Elm_Hoversel_Item Elm_Hoversel_Item;
141 struct _Elm_Hoversel_Item
142 {
143    ELM_WIDGET_ITEM;
144
145    const char   *label;
146    const char   *icon_file;
147    const char   *icon_group;
148
149    Elm_Icon_Type icon_type;
150    Evas_Smart_Cb func;
151 };
152
153 /**
154  * @}
155  */
156
157 EAPI extern const char ELM_HOVERSEL_SMART_NAME[];
158 EAPI const Elm_Hoversel_Smart_Class *elm_hoversel_smart_class_get(void);
159
160 #define ELM_HOVERSEL_DATA_GET(o, sd) \
161   Elm_Hoversel_Smart_Data * sd = evas_object_smart_data_get(o)
162
163 #define ELM_HOVERSEL_DATA_GET_OR_RETURN(o, ptr)      \
164   ELM_HOVERSEL_DATA_GET(o, ptr);                     \
165   if (!ptr)                                          \
166     {                                                \
167        CRITICAL("No widget data for object %p (%s)", \
168                 o, evas_object_type_get(o));         \
169        return;                                       \
170     }
171
172 #define ELM_HOVERSEL_DATA_GET_OR_RETURN_VAL(o, ptr, val) \
173   ELM_HOVERSEL_DATA_GET(o, ptr);                         \
174   if (!ptr)                                              \
175     {                                                    \
176        CRITICAL("No widget data for object %p (%s)",     \
177                 o, evas_object_type_get(o));             \
178        return val;                                       \
179     }
180
181 #define ELM_HOVERSEL_CHECK(obj)                     \
182   if (!obj || !elm_widget_type_check                \
183         ((obj), ELM_HOVERSEL_SMART_NAME, __func__)) \
184     return
185
186 #define ELM_HOVERSEL_ITEM_CHECK(it)                         \
187   ELM_WIDGET_ITEM_CHECK_OR_RETURN((Elm_Widget_Item *)it, ); \
188   ELM_HOVERSEL_CHECK(it->base.widget);
189
190 #define ELM_HOVERSEL_ITEM_CHECK_OR_RETURN(it, ...)                     \
191   ELM_WIDGET_ITEM_CHECK_OR_RETURN((Elm_Widget_Item *)it, __VA_ARGS__); \
192   ELM_HOVERSEL_CHECK(it->base.widget) __VA_ARGS__;
193
194 #endif