even more reordering, also convert some evas coords to int

SVN revision: 64269
This commit is contained in:
Mike Blumenkrantz 2011-10-21 21:04:06 +00:00
parent 72700795f2
commit ffed36961e
3 changed files with 6 additions and 6 deletions

View File

@ -17,6 +17,8 @@ struct _Widget_Data
Pan *pan; /* pan_smart object's smart data */
Ecore_Job *calc_job;
int walking;
int item_width, item_height;
int group_item_width, group_item_height;
Evas_Coord pan_x, pan_y;
Eina_Bool reorder_mode : 1;
Eina_Bool on_hold : 1;

View File

@ -38,6 +38,8 @@ struct _Widget_Data
Pan *pan; /* pan_smart object's smart data */
Ecore_Job *calc_job;
int walking;
int item_width, item_height;
int group_item_width, group_item_height;
Evas_Coord pan_x, pan_y;
Eina_Bool reorder_mode : 1;
Eina_Bool on_hold : 1;
@ -49,8 +51,6 @@ struct _Widget_Data
double align_x, align_y;
Evas_Coord old_pan_x, old_pan_y;
Evas_Coord item_width, item_height; /* Each it size */
Evas_Coord group_item_width, group_item_height; /* Each group it size */
Evas_Coord minw, minh; /* Total obj size */
Evas_Coord reorder_item_x, reorder_item_y;
unsigned int nmax;

View File

@ -58,6 +58,8 @@ struct _Widget_Data
Pan *pan; /* pan_smart object's smart data */
Ecore_Job *calc_job;
int walking;
int item_width, item_height;
int group_item_width, group_item_height;
Evas_Coord pan_x, pan_y;
Eina_Bool reorder_mode : 1;
Eina_Bool on_hold : 1;
@ -106,10 +108,6 @@ struct _Widget_Data
int item_cache_count;
int item_cache_max; /* maximum number of cached items */
int movements;
int item_width;
int item_height;
int group_item_width;
int group_item_height;
int max_items_per_block; /* maximum number of items per block */
double longpress_timeout; /* longpress timeout. this value comes from _elm_config by default. this can be changed by elm_genlist_longpress_timeout_set() */
};