Enlightenment CVS committal Author : raster Project : e17 Module : apps/e
Dir : e17/apps/e/src/bin Modified Files: Makefile.am e_config.c e_configure.c e_includes.h Removed Files: e_int_config_color_classes.c e_int_config_color_classes.h e_int_config_fonts.c e_int_config_fonts.h e_int_config_theme.c e_int_config_theme.h e_int_config_theme_import.c e_int_config_theme_import.h Log Message: move more config dialogs to modules. =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/Makefile.am,v retrieving revision 1.189 retrieving revision 1.190 diff -u -3 -r1.189 -r1.190 --- Makefile.am 4 Jul 2007 15:09:24 -0000 1.189 +++ Makefile.am 7 Jul 2007 15:44:00 -0000 1.190 @@ -119,14 +119,11 @@ e_widget_slider.h \ e_int_config_window_manipulation.h \ e_int_config_window_display.h \ -e_int_config_theme.h \ -e_int_config_theme_import.h \ e_int_config_icon_themes.h \ e_int_config_menus.h \ e_int_config_keybindings.h \ e_int_config_mousebindings.h \ e_int_config_cursor.h \ -e_int_config_fonts.h \ e_int_config_startup.h \ e_int_config_performance.h \ e_int_config_winlist.h \ @@ -135,7 +132,6 @@ e_int_config_exebuf.h \ e_int_config_apps.h \ e_int_config_dialogs.h \ -e_int_config_color_classes.h \ e_int_config_mime.h \ e_int_config_mime_edit.h \ e_int_config_screensaver.h \ @@ -279,14 +275,11 @@ e_widget_slider.c \ e_int_config_window_manipulation.c \ e_int_config_window_display.c \ -e_int_config_theme.c \ -e_int_config_theme_import.c \ e_int_config_icon_themes.c \ e_int_config_menus.c \ e_int_config_keybindings.c \ e_int_config_mousebindings.c \ e_int_config_cursor.c \ -e_int_config_fonts.c \ e_int_config_startup.c \ e_int_config_performance.c \ e_int_config_winlist.c \ @@ -298,7 +291,6 @@ e_int_config_intl.c \ e_int_config_imc.c \ e_int_config_imc_import.c \ -e_int_config_color_classes.c \ e_int_config_mime.c \ e_int_config_mime_edit.c \ e_int_config_screensaver.c \ =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_config.c,v retrieving revision 1.247 retrieving revision 1.248 diff -u -3 -r1.247 -r1.248 --- e_config.c 4 Jul 2007 15:09:24 -0000 1.247 +++ e_config.c 7 Jul 2007 15:44:00 -0000 1.248 @@ -755,6 +755,9 @@ CFG_MODULE("temperature", 1); CFG_MODULE("pager", 1); CFG_MODULE("conf_wallpaper", 1); + CFG_MODULE("conf_theme", 1); + CFG_MODULE("conf_colors", 1); + CFG_MODULE("conf_fonts", 1); } #if 0 { =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_configure.c,v retrieving revision 1.102 retrieving revision 1.103 diff -u -3 -r1.102 -r1.103 --- e_configure.c 4 Jul 2007 15:09:24 -0000 1.102 +++ e_configure.c 7 Jul 2007 15:44:00 -0000 1.103 @@ -423,9 +423,9 @@ /* FIXME: hardcoded - need to move these into modules - except modules config */ e_configure_registry_category_add("appearance", 10, _("Appearance"), NULL, "enlightenment/appearance"); // e_configure_registry_item_add("appearance/wallpaper", 10, _("Wallpaper"), NULL, "enlightenment/background", e_int_config_wallpaper); - e_configure_registry_item_add("appearance/theme", 20, _("Theme"), NULL, "enlightenment/themes", e_int_config_theme); - e_configure_registry_item_add("appearance/colors", 30, _("Colors"), NULL, "enlightenment/colors", e_int_config_color_classes); - e_configure_registry_item_add("appearance/fonts", 40, _("Fonts"), NULL, "enlightenment/fonts", e_int_config_fonts); +// e_configure_registry_item_add("appearance/theme", 20, _("Theme"), NULL, "enlightenment/themes", e_int_config_theme); +// e_configure_registry_item_add("appearance/colors", 30, _("Colors"), NULL, "enlightenment/colors", e_int_config_color_classes); +// e_configure_registry_item_add("appearance/fonts", 40, _("Fonts"), NULL, "enlightenment/fonts", e_int_config_fonts); e_configure_registry_item_add("appearance/borders", 50, _("Borders"), NULL, "enlightenment/windows", e_int_config_borders); e_configure_registry_item_add("appearance/icon_theme", 60, _("Icon Theme"), NULL, "enlightenment/icon_theme", e_int_config_icon_themes); e_configure_registry_item_add("appearance/mouse_cursor", 70, _("Mouse Cursor"), NULL, "enlightenment/mouse", e_int_config_cursor); =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_includes.h,v retrieving revision 1.159 retrieving revision 1.160 diff -u -3 -r1.159 -r1.160 --- e_includes.h 4 Jul 2007 15:09:24 -0000 1.159 +++ e_includes.h 7 Jul 2007 15:44:00 -0000 1.160 @@ -88,14 +88,11 @@ #include "e_widget_slider.h" #include "e_int_config_window_manipulation.h" #include "e_int_config_window_display.h" -#include "e_int_config_theme.h" -#include "e_int_config_theme_import.h" #include "e_int_config_icon_themes.h" #include "e_int_config_menus.h" #include "e_int_config_keybindings.h" #include "e_int_config_mousebindings.h" #include "e_int_config_cursor.h" -#include "e_int_config_fonts.h" #include "e_int_config_startup.h" #include "e_int_config_performance.h" #include "e_int_config_winlist.h" @@ -109,7 +106,6 @@ #include "e_int_config_intl.h" #include "e_int_config_imc.h" #include "e_int_config_imc_import.h" -#include "e_int_config_color_classes.h" #include "e_int_config_mime.h" #include "e_int_config_mime_edit.h" #include "e_exebuf.h" ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs