news: Updated recent news in Korean.

SVN revision: 75161
This commit is contained in:
Daniel Juyung Seo 2012-08-12 07:23:51 +00:00
parent 1de06d4f20
commit b3319660b6
2 changed files with 11 additions and 1 deletions

View File

@ -525,6 +525,7 @@ test_genlist2(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_in
evas_object_show(bx);
gl = elm_genlist_add(win);
elm_genlist_mode_set(gl, ELM_LIST_COMPRESS);
evas_object_size_hint_align_set(gl, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_size_hint_weight_set(gl, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_show(gl);

View File

@ -577,23 +577,31 @@ _elm_genlist_smart_sizing_eval(Evas_Object *obj)
ELM_GENLIST_DATA_GET(obj, sd);
static int i = 0;
/* parent class' early call */
if (!sd->s_iface) return;
if (sd->on_sub_del) return;;
evas_object_size_hint_min_get(obj, &minw, NULL);
fprintf(stderr, "%s %d\t", __func__, i++);
evas_object_size_hint_min_get(obj, &minw, &minh);
evas_object_size_hint_max_get(obj, &maxw, &maxh);
fprintf(stderr, "minw %d minh %d maxw %d maxh %d\t", minw, minh, maxw, maxh);
edje_object_size_min_calc(ELM_WIDGET_DATA(sd)->resize_obj, &vmw, &vmh);
fprintf(stderr, "edje vmw %d vmh %d\t", vmw, vmh);
if (sd->mode == ELM_LIST_COMPRESS)
{
Evas_Coord vw, vh;
sd->s_iface->content_viewport_size_get(obj, &vw, &vh);
fprintf(stderr, "viewport vw %d vh %d", vw, vh);
if ((vw != 0) && (vw != sd->prev_viewport_w))
{
fprintf(stderr, "\n\t prev_viewport_w %d", sd->prev_viewport_w);
Item_Block *itb;
sd->prev_viewport_w = vw;
@ -621,6 +629,7 @@ _elm_genlist_smart_sizing_eval(Evas_Object *obj)
evas_object_size_hint_min_set(obj, minw, minh);
evas_object_size_hint_max_set(obj, maxw, maxh);
fprintf(stderr, "\n\tminw %d minh %d", minw, minh);
}
static void