Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_int_config_icon_themes.c 


Log Message:
Put a framelist around the icon list widget in Basic mode.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_icon_themes.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- e_int_config_icon_themes.c  27 Nov 2006 15:47:21 -0000      1.16
+++ e_int_config_icon_themes.c  28 Nov 2006 11:54:03 -0000      1.17
@@ -110,7 +110,6 @@
    free(cfdata);
 }
 
-
 static int
 _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata)
 {
@@ -126,7 +125,6 @@
    return 1; /* Apply was OK */
 }
 
-
 static void
 _cb_button_up(void *data1, void *data2)
 {
@@ -160,7 +158,6 @@
      e_widget_scrollframe_child_pos_set(cfdata->gui.o_frame, 0, 0);
 }
 
-
 static Evas_Object *
 _advanced_create_widgets(E_Config_Dialog *cfd, Evas *evas, 
E_Config_Dialog_Data *cfdata)
 {
@@ -283,15 +280,15 @@
    return o;
 }
 
-
 static Evas_Object *
 _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data 
*cfdata)
 {
-   Evas_Object *o, *ilist;
+   Evas_Object *o, *ilist, *of;
    Evas_List *l;
    int i;
 
    o = e_widget_list_add(evas, 1, 0);
+   of = e_widget_framelist_add(evas, _("Icon Themes"), 0);
    ilist = e_widget_ilist_add(evas, 24, 24, &(cfdata->themename));
    cfdata->gui.list = ilist;
    e_widget_on_change_hook_set(ilist, _ilist_cb_change, cfdata);
@@ -333,8 +330,9 @@
    e_widget_ilist_thaw(ilist);
    edje_thaw();
    evas_event_thaw(evas_object_evas_get(ilist));
-   
-   e_widget_list_object_append(o, ilist, 1, 1, 0.5);
+
+   e_widget_framelist_object_append(of, ilist);
+   e_widget_list_object_append(o, of, 1, 1, 0.5);
 
    e_dialog_resizable_set(cfd->dia, 1);
 
@@ -401,7 +399,6 @@
         cfdata->icon_themes = evas_list_append(cfdata->icon_themes, m);
       }
 }
-
 
 static int
 _sort_icon_themes(void *data1, void *data2)



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to