summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_widget_scroller.h
blob: 4fdfa32989a9ae2597363ff3bf1225f01bcf52d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef EFL_UI_WIDGET_SCROLLER_H
#define EFL_UI_WIDGET_SCROLLER_H

#include "Elementary.h"

typedef struct _Efl_Ui_Scroller_Data
{
   Eo *content;
   Eo *pan_obj;
   Eo *smanager;

   Eina_Bool  freeze_want : 1;
   Eina_Bool  match_content_w: 1;
   Eina_Bool  match_content_h: 1;
} Efl_Ui_Scroller_Data;

#endif