Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_gadcon.c e_shelf.c 


Log Message:
Some formatting love for the ohh so friendly e_gadcon :)

Icons in the shelf menu for Config Contents and Shelf Config.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_gadcon.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -3 -r1.52 -r1.53
--- e_gadcon.c  29 Nov 2006 11:24:54 -0000      1.52
+++ e_gadcon.c  20 Dec 2006 22:40:01 -0000      1.53
@@ -654,13 +654,11 @@
    gc->clients = evas_list_append(gc->clients, gcc);
    if ((gc->frame_request.func) && (style))
      {
-       gcc->o_frame = gc->frame_request.func(gc->frame_request.data, gcc,
-                                             style);
+       gcc->o_frame = gc->frame_request.func(gc->frame_request.data, gcc, 
style);
        gcc->style = evas_stringshare_add(style);
        if (gcc->o_frame)
          {
-            edje_object_size_min_calc(gcc->o_frame,
-                                      &(gcc->pad.w), &(gcc->pad.h));
+            edje_object_size_min_calc(gcc->o_frame, &(gcc->pad.w), 
&(gcc->pad.h));
             gcc->o_box = e_box_add(gcc->gadcon->evas);
             switch (gcc->gadcon->orient)
               {
@@ -731,8 +729,7 @@
      evas_object_geometry_get(gcc->o_base, &x, &y, &w, &h);
    evas_object_move(gcc->o_control, x, y);
    evas_object_resize(gcc->o_control, w, h);
-   e_theme_edje_object_set(gcc->o_control, "base/theme/gadman",
-                          "e/gadman/control");
+   e_theme_edje_object_set(gcc->o_control, "base/theme/gadman", 
"e/gadman/control");
 
    if ((gcc->autoscroll) || (gcc->resizable))
      {
@@ -1196,6 +1193,7 @@
    
    ev = event_info;
    gcc = data;
+   
    if (gcc->menu) return;
    if (ev->button == 3)
      {
@@ -1541,9 +1539,7 @@
        gcc->menu = mn;
        
        if (gcc->gadcon->menu_attach.func)
-         {
-            gcc->gadcon->menu_attach.func(gcc->gadcon->menu_attach.data, mn);
-         }
+         gcc->gadcon->menu_attach.func(gcc->gadcon->menu_attach.data, mn);
        else
          {
             mi = e_menu_item_new(mn);
@@ -1784,24 +1780,16 @@
    if (e_gadcon_layout_orientation_get(gcc->gadcon->o_container))
      {
        if (x > 0)
-         {
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_INC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_INC;
        else if (x < 0)
-         {
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_DEC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_DEC;
      }
    else
      {
        if (y > 0)
-         {
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_INC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_INC;
        else if (y < 0)
-         {
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_DEC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MIN_END_DEC;
      }
 
    if (e_gadcon_layout_orientation_get(gcc->gadcon->o_container))
@@ -1871,24 +1859,16 @@
    if (e_gadcon_layout_orientation_get(gcc->gadcon->o_container))
      {
        if (x > 0)
-         { 
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_INC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_INC;
        else if (x < 0)
-         {
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_DEC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_DEC;
      }
    else
      {
        if (y > 0)
-         {
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_INC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_INC;
        else if (y < 0)
-         {
-            gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_INC;
-         }
+         gcc->state_info.state = E_LAYOUT_ITEM_STATE_SIZE_MAX_END_INC;
      }
 
    if (e_gadcon_layout_orientation_get(gcc->gadcon->o_container))
@@ -1921,8 +1901,6 @@
    gcc->dy += y;
 }
 
-
-
 /* a smart object JUST for gadcon */
 
 typedef struct _E_Gadcon_Layout_Item  E_Gadcon_Layout_Item;
@@ -2090,7 +2068,6 @@
    E_Smart_Data *sd;
    Evas_Coord tw = 0, th = 0;
 
-
    if (!obj) return;
    
    sd = evas_object_smart_data_get(obj);
@@ -2183,9 +2160,7 @@
                  bi->ask.size = size;
               }
             else
-              {
-                 bi->ask.size = size;
-              }
+              bi->ask.size = size;
          }
         bi->ask.size = size;
      }
@@ -2922,9 +2897,7 @@
             need = max_size - sd->w;
          }
        else
-         { 
-            return;
-         }
+         return;
      }
    else
      {
@@ -2937,10 +2910,7 @@
             need = max_size - sd->h;
          }
        else
-         { 
-            return;
-         }
-
+         return;
      } 
 
    sd->items = evas_list_sort(sd->items, evas_list_count(sd->items), 
@@ -3032,7 +3002,6 @@
      }
 }
 
-
 static int 
 _e_gadcon_layout_smart_sort_by_sequence_number_cb(void *d1, void *d2)
 {
@@ -4197,9 +4166,6 @@
             create_new = 1; 
             new_state = E_LAYOUT_ITEM_CONTAINER_STATE_POS_LOCKED;
          }
-       else
-         {
-         }
      }
 
    if (create_new)
@@ -4345,8 +4311,6 @@
    E_Gadcon_Layout_Item *bi, *bi2;
    E_Layout_Item_Container *lc, *lc2, *lc3;
 
-
-
    (*lc_moving)->pos = (*lc_moving)->prev_pos;
    if (((*lc_moving)->state == E_LAYOUT_ITEM_CONTAINER_STATE_SIZE_MIN_END_INC) 
|| 
        ((*lc_moving)->state == E_LAYOUT_ITEM_CONTAINER_STATE_SIZE_MIN_END_DEC) 
|| 
@@ -4364,7 +4328,6 @@
    _e_gadcon_layout_smart_position_items_inside_container(sd, (*lc_moving));
    (*lc_moving)->state = E_LAYOUT_ITEM_CONTAINER_STATE_POS_LOCKED;
    _e_gadcon_layout_smart_gadcons_position_static(sd, con_list);
-
 
    lc2 = NULL;
    lc3 = NULL;
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_shelf.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -3 -r1.44 -r1.45
--- e_shelf.c   14 Dec 2006 19:42:21 -0000      1.44
+++ e_shelf.c   20 Dec 2006 22:40:01 -0000      1.45
@@ -804,7 +804,7 @@
    
    mi = e_menu_item_new(mn);
    e_menu_item_label_set(mi, _("Shelf Configuration"));
-   e_util_menu_item_edje_icon_set(mi, "enlightenment/config");
+   e_util_menu_item_edje_icon_set(mi, "enlightenment/shelf");
    e_menu_item_callback_set(mi, _e_shelf_cb_menu_config, es);
    
    mi = e_menu_item_new(mn);
@@ -817,7 +817,7 @@
    
    mi = e_menu_item_new(mn);
    e_menu_item_label_set(mi, _("Configure Shelf Contents"));
-   e_util_menu_item_edje_icon_set(mi, "enlightenment/config");
+   e_util_menu_item_edje_icon_set(mi, "enlightenment/shelf");
    e_menu_item_callback_set(mi, _e_shelf_cb_menu_contents, es);
    
    mi = e_menu_item_new(mn);



-------------------------------------------------------------------------
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