Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_config.h e_config.c 


Log Message:
Added config options for cfgdlg_auto_apply and cfgdlg_default_mode. Bumped 
config version
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_config.h,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -3 -r1.79 -r1.80
--- e_config.h  13 Feb 2006 13:39:24 -0000      1.79
+++ e_config.h  15 Feb 2006 20:28:31 -0000      1.80
@@ -47,7 +47,7 @@
  * versioning feature. the value of this is really irrelevant - just as
  * long as it increases every time we change something
  */
-#define E_CONFIG_FILE_VERSION 136
+#define E_CONFIG_FILE_VERSION 137
 
 #define E_EVAS_ENGINE_DEFAULT      0
 #define E_EVAS_ENGINE_SOFTWARE_X11 1
@@ -204,6 +204,8 @@
    int         exebuf_pos_max_h; // GUI
    Evas_List  *color_classes;
    int         use_app_icon; // GUI
+   int         cfgdlg_auto_apply; // GUI
+   int         cfgdlg_default_mode; // GUI   
    Evas_List  *gadcons;
 };
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_config.c,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -3 -r1.142 -r1.143
--- e_config.c  13 Feb 2006 06:32:26 -0000      1.142
+++ e_config.c  15 Feb 2006 20:28:31 -0000      1.143
@@ -425,7 +425,10 @@
    E_CONFIG_VAL(D, T, exebuf_pos_max_h, INT);
    E_CONFIG_LIST(D, T, color_classes, _e_config_color_class_edd);
    E_CONFIG_VAL(D, T, use_app_icon, INT);
+   E_CONFIG_VAL(D, T, cfgdlg_auto_apply, INT);
+   E_CONFIG_VAL(D, T, cfgdlg_default_mode, INT);   
    E_CONFIG_LIST(D, T, gadcons, _e_config_gadcon_edd);
+
    e_config = e_config_domain_load("e", _e_config_edd);
    if (e_config)
      {
@@ -573,6 +576,8 @@
        e_config->exebuf_pos_max_h = 320;
        e_config->color_classes = NULL;
        e_config->use_app_icon = 0;
+       e_config->cfgdlg_auto_apply = 0;
+       e_config->cfgdlg_default_mode = 0;
        e_config->gadcons = NULL;
        
        /* FIXME: fill up default gadcons! */
@@ -1599,6 +1604,8 @@
    E_CONFIG_LIMIT(e_config->menu_eap_generic_show, 0, 1);
    E_CONFIG_LIMIT(e_config->menu_eap_comment_show, 0, 1);
    E_CONFIG_LIMIT(e_config->use_app_icon, 0, 1);
+   E_CONFIG_LIMIT(e_config->cfgdlg_auto_apply, 0, 1);
+   E_CONFIG_LIMIT(e_config->cfgdlg_default_mode, 0, 1);
    return 1;
 }
 




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to