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_focus.c e_int_config_focus.h 
        e_int_config_keybindings.c e_int_config_keybindings.h 
        e_int_config_mouse.c e_int_config_mouse.h 
        e_int_config_mousebindings.c e_int_config_mousebindings.h 
        e_int_config_shelf.c e_int_config_shelf.h 
        e_int_config_window_display.c e_int_config_window_display.h 
        e_int_config_window_manipulation.c 
        e_int_config_window_manipulation.h 


Log Message:


and move yet more config dialogs to modules

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/Makefile.am,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -3 -r1.194 -r1.195
--- Makefile.am 28 Jul 2007 03:50:13 -0000      1.194
+++ Makefile.am 29 Jul 2007 02:12:49 -0000      1.195
@@ -97,7 +97,6 @@
 e_widget_entry.h \
 e_widget_image.h \
 e_config_dialog.h \
-e_int_config_focus.h \
 e_configure.h \
 e_int_border_locks.h \
 e_thumb.h \
@@ -113,11 +112,7 @@
 e_widget_config_list.h \
 e_slider.h \
 e_widget_slider.h \
-e_int_config_window_manipulation.h \
-e_int_config_window_display.h \
 e_int_config_menus.h \
-e_int_config_keybindings.h \
-e_int_config_mousebindings.h \
 e_int_config_performance.h \
 e_int_config_winlist.h \
 e_int_config_exebuf.h \
@@ -138,7 +133,6 @@
 e_widget_preview.h \
 e_int_config_paths.h \
 e_int_shelf_config.h \
-e_int_config_shelf.h \
 e_int_gadcon_config.h \
 e_confirm_dialog.h \
 e_int_border_prop.h \
@@ -168,8 +162,7 @@
 e_exec.h \
 e_widget_font_preview.h \
 e_fm_custom.h \
-e_fm_shared.h \
-e_int_config_mouse.h
+e_fm_shared.h
  
 enlightenment_src = \
 e_user.c \
@@ -241,7 +234,6 @@
 e_widget_entry.c \
 e_widget_image.c \
 e_config_dialog.c \
-e_int_config_focus.c \
 e_configure.c \
 e_int_border_locks.c \
 e_thumb.c \
@@ -257,11 +249,7 @@
 e_widget_config_list.c \
 e_slider.c \
 e_widget_slider.c \
-e_int_config_window_manipulation.c \
-e_int_config_window_display.c \
 e_int_config_menus.c \
-e_int_config_keybindings.c \
-e_int_config_mousebindings.c \
 e_int_config_performance.c \
 e_int_config_winlist.c \
 e_int_config_exebuf.c \
@@ -282,7 +270,6 @@
 e_widget_preview.c \
 e_int_config_paths.c \
 e_int_shelf_config.c \
-e_int_config_shelf.c \
 e_int_gadcon_config.c \
 e_confirm_dialog.c \
 e_int_border_prop.c \
@@ -312,7 +299,6 @@
 e_exec.c \
 e_widget_font_preview.c \
 e_fm_custom.c \
-e_int_config_mouse.c \
 $(ENLIGHTENMENTHEADERS)
 
 enlightenment_SOURCES = \
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_config.c,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -3 -r1.255 -r1.256
--- e_config.c  28 Jul 2007 03:50:13 -0000      1.255
+++ e_config.c  29 Jul 2007 02:12:49 -0000      1.256
@@ -772,6 +772,13 @@
        CFG_MODULE("conf_desklock", 1);
        CFG_MODULE("conf_screensaver", 1);
        CFG_MODULE("conf_dpms", 1);
+       CFG_MODULE("conf_shelves", 1);
+       CFG_MODULE("conf_keybindings", 1);
+       CFG_MODULE("conf_mousebindings", 1);
+       CFG_MODULE("conf_mouse", 1);
+       CFG_MODULE("conf_window_display", 1);
+       CFG_MODULE("conf_window_focus", 1);
+       CFG_MODULE("conf_window_manipulation", 1);
      }
 #if 0
      {
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_configure.c,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -3 -r1.109 -r1.110
--- e_configure.c       28 Jul 2007 03:50:13 -0000      1.109
+++ e_configure.c       29 Jul 2007 02:12:49 -0000      1.110
@@ -445,20 +445,20 @@
 //   e_configure_registry_item_add("screen/screen_saver", 40, _("Screen 
Saver"), NULL, "enlightenment/screensaver", e_int_config_screensaver);
 //   e_configure_registry_item_add("screen/power_management", 50, _("Power 
Management"), NULL, "enlightenment/power_management", e_int_config_dpms);
    
-   e_configure_registry_category_add("keyboard_and_mouse", 40, _("Keyboard & 
Mouse"), NULL, "enlightenment/behavior");
-   e_configure_registry_item_add("keyboard_and_mouse/key_bindings", 10, _("Key 
Bindings"), NULL, "enlightenment/keys", e_int_config_keybindings);
-   e_configure_registry_item_add("keyboard_and_mouse/mouse_bindings", 20, 
_("Mouse Bindings"), NULL, "enlightenment/mouse_clean", 
e_int_config_mousebindings);
-   e_configure_registry_item_add("keyboard_and_mouse/mouse_acceleration", 30, 
_("Mouse Acceleration"), NULL, "enlightenment/mouse_clean", e_int_config_mouse);
+//   e_configure_registry_category_add("keyboard_and_mouse", 40, _("Keyboard & 
Mouse"), NULL, "enlightenment/behavior");
+//   e_configure_registry_item_add("keyboard_and_mouse/key_bindings", 10, 
_("Key Bindings"), NULL, "enlightenment/keys", e_int_config_keybindings);
+//   e_configure_registry_item_add("keyboard_and_mouse/mouse_bindings", 20, 
_("Mouse Bindings"), NULL, "enlightenment/mouse_clean", 
e_int_config_mousebindings);
+//   e_configure_registry_item_add("keyboard_and_mouse/mouse_acceleration", 
30, _("Mouse Acceleration"), NULL, "enlightenment/mouse_clean", 
e_int_config_mouse);
    
-   e_configure_registry_category_add("windows", 50, _("Windows"), NULL, 
"enlightenment/windows");
-   e_configure_registry_item_add("windows/window_display", 10, _("Window 
Display"), NULL, "enlightenment/windows", e_int_config_window_display);
-   e_configure_registry_item_add("windows/window_focus", 20, _("Window 
Focus"), NULL, "enlightenment/focus", e_int_config_focus);
-   e_configure_registry_item_add("windows/window_manipulation", 30, _("Window 
Manipulation"), NULL, "enlightenment/window_manipulation", 
e_int_config_window_manipulation);
+//   e_configure_registry_category_add("windows", 50, _("Windows"), NULL, 
"enlightenment/windows");
+//   e_configure_registry_item_add("windows/window_display", 10, _("Window 
Display"), NULL, "enlightenment/windows", e_int_config_window_display);
+//   e_configure_registry_item_add("windows/window_focus", 20, _("Window 
Focus"), NULL, "enlightenment/focus", e_int_config_focus);
+//   e_configure_registry_item_add("windows/window_manipulation", 30, 
_("Window Manipulation"), NULL, "enlightenment/window_manipulation", 
e_int_config_window_manipulation);
    
    e_configure_registry_category_add("menus", 60, _("Menus"), NULL, 
"enlightenment/menus");
-//   e_configure_registry_item_add("menus/favorites_menu", 10, _("Favorites 
Menu"), NULL, "enlightenment/favorites", e_int_config_apps_favs);   
+////   e_configure_registry_item_add("menus/favorites_menu", 10, _("Favorites 
Menu"), NULL, "enlightenment/favorites", e_int_config_apps_favs);   
 #if 0
-//   e_configure_registry_item_add("menus/applications_menu", 20, 
_("Application Menus"), NULL, "enlightenment/applications", e_int_config_apps);
+////   e_configure_registry_item_add("menus/applications_menu", 20, 
_("Application Menus"), NULL, "enlightenment/applications", e_int_config_apps);
 #endif
    e_configure_registry_item_add("menus/menu_settings", 30, _("Menu 
Settings"), NULL, "enlightenment/menu_settings", e_int_config_menus);
    e_configure_registry_item_add("menus/client_list_menu", 40, _("Client List 
Menu"), NULL, "enlightenment/windows", e_int_config_clientlist);
@@ -473,14 +473,14 @@
    
    e_configure_registry_category_add("extensions", 90, _("Extensions"), NULL, 
"enlightenment/extensions");
    e_configure_registry_item_add("extensions/modules", 10, _("Modules"), NULL, 
"enlightenment/modules", e_int_config_modules);
-   e_configure_registry_item_add("extensions/shelves", 20, _("Shelves"), NULL, 
"enlightenment/shelf", e_int_config_shelf);
+//   e_configure_registry_item_add("extensions/shelves", 20, _("Shelves"), 
NULL, "enlightenment/shelf", e_int_config_shelf);
 
    /* internal calls - not in config dialog but accessible from other code
     * that knows these config dialogs exist and how to interact. they require
     * parameters to be passed and will not work without them being set and
     * set properly
     */
-   e_configure_registry_category_add("internal", -1, _("Internal"), NULL, 
"enlightenment/internal");
+//   e_configure_registry_category_add("internal", -1, _("Internal"), NULL, 
"enlightenment/internal");
 //   e_configure_registry_item_add("internal/borders_border", -1, _("Border"), 
NULL, "enlightenment/windows", e_int_config_borders_border);
 //   e_configure_registry_item_add("internal/wallpaper_desk", -1, 
_("Wallpaper"), NULL, "enlightenment/windows", e_int_config_wallpaper_desk);
 //   e_configure_registry_item_add("internal/desk", -1, _("Desk"), NULL, 
"enlightenment/windows", e_int_config_desk);
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_includes.h,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -3 -r1.164 -r1.165
--- e_includes.h        28 Jul 2007 03:50:13 -0000      1.164
+++ e_includes.h        29 Jul 2007 02:12:49 -0000      1.165
@@ -72,7 +72,6 @@
 #include "e_widget_entry.h"
 #include "e_widget_image.h"
 #include "e_config_dialog.h"
-#include "e_int_config_focus.h"
 #include "e_int_border_locks.h"
 #include "e_thumb.h"
 #include "e_int_border_remember.h"
@@ -85,11 +84,7 @@
 #include "e_widget_config_list.h"
 #include "e_slider.h"
 #include "e_widget_slider.h"
-#include "e_int_config_window_manipulation.h"
-#include "e_int_config_window_display.h"
 #include "e_int_config_menus.h"
-#include "e_int_config_keybindings.h"
-#include "e_int_config_mousebindings.h"
 #include "e_int_config_performance.h"
 #include "e_int_config_winlist.h"
 #include "e_int_config_exebuf.h"
@@ -112,7 +107,6 @@
 #include "e_widget_preview.h"
 #include "e_int_config_paths.h"
 #include "e_int_shelf_config.h"
-#include "e_int_config_shelf.h"
 #include "e_int_gadcon_config.h"
 #include "e_confirm_dialog.h"
 #include "e_int_border_prop.h"
@@ -139,7 +133,6 @@
 #include "e_int_config_clientlist.h"
 #include "e_fm_prop.h"
 #include "e_mouse.h"
-#include "e_int_config_mouse.h"
 #include "e_order.h"
 #include "e_exec.h"
 #include "e_widget_font_preview.h"



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to