|
From: Enlightenment C. <no...@cv...> - 2007-07-04 15:09:56
|
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_wallpaper.c e_int_config_wallpaper.h
e_int_config_wallpaper_gradient.c
e_int_config_wallpaper_gradient.h
e_int_config_wallpaper_import.c
e_int_config_wallpaper_import.h
Log Message:
first module makes its way into a module of its own.
this
1. allows different config dialogs to do the same thing - eg replace it with
a different ui or idea.
2. allows people to switch off cofngi they dont need or want and even not ship
the ui to configure it
3. is a nice proof of concept that modules cna do more than just be the
things at the bottom of your screen in a "panel".
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/Makefile.am,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -3 -r1.188 -r1.189
--- Makefile.am 16 Jun 2007 16:18:44 -0000 1.188
+++ Makefile.am 4 Jul 2007 15:09:24 -0000 1.189
@@ -170,9 +170,6 @@
e_widget_cslider.h \
e_widget_csel.h \
e_widget_color_well.h \
-e_int_config_wallpaper.h \
-e_int_config_wallpaper_import.h \
-e_int_config_wallpaper_gradient.h \
e_color_dialog.h \
e_sys.h \
e_obj_dialog.h \
@@ -336,9 +333,6 @@
e_widget_cslider.c \
e_widget_csel.c \
e_widget_color_well.c \
-e_int_config_wallpaper.c \
-e_int_config_wallpaper_import.c \
-e_int_config_wallpaper_gradient.c \
e_color_dialog.c \
e_sys.c \
e_int_config_transitions.c \
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_config.c,v
retrieving revision 1.246
retrieving revision 1.247
diff -u -3 -r1.246 -r1.247
--- e_config.c 12 Jun 2007 19:00:15 -0000 1.246
+++ e_config.c 4 Jul 2007 15:09:24 -0000 1.247
@@ -754,6 +754,7 @@
CFG_MODULE("cpufreq", 1);
CFG_MODULE("temperature", 1);
CFG_MODULE("pager", 1);
+ CFG_MODULE("conf_wallpaper", 1);
}
#if 0
{
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_configure.c,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -3 -r1.101 -r1.102
--- e_configure.c 4 Jul 2007 11:11:02 -0000 1.101
+++ e_configure.c 4 Jul 2007 15:09:24 -0000 1.102
@@ -422,7 +422,7 @@
{
/* 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/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);
@@ -486,7 +486,7 @@
*/
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/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);
e_configure_registry_item_add("internal/ibar_other", -1, _("IBar Other"), NULL, "enlightenment/windows", e_int_config_apps_ibar_other);
}
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_includes.h,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -3 -r1.158 -r1.159
--- e_includes.h 7 Jun 2007 01:09:24 -0000 1.158
+++ e_includes.h 4 Jul 2007 15:09:24 -0000 1.159
@@ -139,9 +139,6 @@
#include "e_widget_framelist.h"
#include "e_widget_fsel.h"
#include "e_fm_mime.h"
-#include "e_int_config_wallpaper.h"
-#include "e_int_config_wallpaper_import.h"
-#include "e_int_config_wallpaper_gradient.h"
#include "e_color.h"
#include "e_spectrum.h"
#include "e_widget_spectrum.h"
|