summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_page_indicator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_page_indicator.h')
-rw-r--r--src/lib/elementary/efl_page_indicator.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_page_indicator.h b/src/lib/elementary/efl_page_indicator.h
new file mode 100644
index 0000000000..42dc88651d
--- /dev/null
+++ b/src/lib/elementary/efl_page_indicator.h
@@ -0,0 +1,23 @@
+#ifndef EFL_PAGE_INDICATOR_H
+#define EFL_PAGE_INDICATOR_H
+
+typedef struct _Efl_Page_Indicator_Data Efl_Page_Indicator_Data;
+
+struct _Efl_Page_Indicator_Data
+{
+ struct {
+ Efl_Object *obj;
+ Efl_Object *group;
+ Evas_Coord x, y, w, h;
+ } pager;
+
+ Efl_Ui_Box *idbox;
+
+ int cnt;
+};
+
+#define EFL_PAGE_INDICATOR_DATA_GET(o, pd) \
+ Efl_Page_Indicator_Data *pd = \
+ efl_data_scope_get(o, EFL_PAGE_INDICATOR_CLASS)
+
+#endif