Enlightenment CVS committal Author : sebastid Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/lib Modified Files: Ewl.h.in Makefile.am ewl_border.c ewl_box.c ewl_button.c ewl_button_stock.c ewl_calendar.c ewl_callback.c ewl_cell.c ewl_check.c ewl_checkbutton.c ewl_colordialog.c ewl_colorpicker.c ewl_combo.c ewl_config.c ewl_container.c ewl_datepicker.c ewl_dialog.c ewl_embed.c ewl_entry.c ewl_events.c ewl_filedialog.c ewl_fileselector.c ewl_floater.c ewl_grid.c ewl_iconbox.c ewl_image.c ewl_imenu.c ewl_label.c ewl_macros.h ewl_media.c ewl_menu.c ewl_menu_base.c ewl_menubar.c ewl_misc.c ewl_notebook.c ewl_object.c ewl_overlay.c ewl_paned.c ewl_password.c ewl_progressbar.c ewl_radiobutton.c ewl_row.c ewl_scrollbar.c ewl_scrollpane.c ewl_seeker.c ewl_selectionbar.c ewl_selectionbook.c ewl_separator.c ewl_spacer.c ewl_spectrum.c ewl_spinner.c ewl_statusbar.c ewl_table.c ewl_text.c ewl_theme.c ewl_tooltip.c ewl_tree.c ewl_widget.c ewl_window.c Added Files: ewl_private.h Log Message: Header cleanup. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/Ewl.h.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- Ewl.h.in 5 Sep 2005 11:05:13 -0000 1.15 +++ Ewl.h.in 5 Sep 2005 14:12:15 -0000 1.16 @@ -255,31 +255,9 @@ #endif #include <Evas.h> -#include <Edje.h> #include <Ecore.h> #include <Ecore_Data.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <limits.h> -#include <ctype.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <unistd.h> - -#ifndef PATH_MAX -#define PATH_MAX 4096 -#endif - -#ifndef TRUE -#define TRUE 1 -#endif - -#ifndef FALSE -#define FALSE 0 -#endif - #include <ewl_enums.h> #include <ewl_object.h> =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/Makefile.am,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- Makefile.am 3 Sep 2005 20:01:54 -0000 1.9 +++ Makefile.am 5 Sep 2005 14:12:15 -0000 1.10 @@ -133,6 +133,7 @@ ewl_tooltip.c \ ewl_widget.c \ ewl_window.c \ + ewl_private.h \ $(EWLHEADERS) if BUILD_EMOTION_SUPPORT =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_border.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_border.c 28 Mar 2005 07:04:27 -0000 1.3 +++ ewl_border.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param label: the initial label to display on the border =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_box.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_box.c 21 Aug 2005 06:08:53 -0000 1.5 +++ ewl_box.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" typedef struct { =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_button.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_button.c 16 Jun 2005 02:10:53 -0000 1.3 +++ ewl_button.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param label: the string to use as a label for the button =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_button_stock.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_button_stock.c 28 Mar 2005 07:04:27 -0000 1.4 +++ ewl_button_stock.c 5 Sep 2005 14:12:15 -0000 1.5 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static const Ewl_Stock_Item builtin_items [] = { =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_calendar.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_calendar.c 11 Jul 2005 11:52:06 -0000 1.5 +++ ewl_calendar.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,10 +1,7 @@ #include <Ewl.h> -#include <time.h> #include "ewl_debug.h" -#include <Evas.h> #include "ewl_macros.h" -#include <stdlib.h> -#include <assert.h> +#include "ewl_private.h" char *months[] = { "January","February","March","April","May","June","July","August","September","October","November","December" }; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_callback.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_callback.c 28 Mar 2005 07:04:27 -0000 1.2 +++ ewl_callback.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static unsigned int ewl_callback_hash(void *key); static int ewl_callback_compare(void *key1, void *key2); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_cell.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_cell.c 28 Mar 2005 07:04:27 -0000 1.2 +++ ewl_cell.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns a newly allocated cell on success, NULL on failure. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_check.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_check.c 28 Mar 2005 07:04:27 -0000 1.2 +++ ewl_check.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns the newly allocated check on success, NULL on failure. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_checkbutton.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_checkbutton.c 28 Mar 2005 07:04:27 -0000 1.2 +++ ewl_checkbutton.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param label: the label to display with the checkbutton, NULL for no label =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_colordialog.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- ewl_colordialog.c 6 Jul 2005 13:44:39 -0000 1.9 +++ ewl_colordialog.c 5 Sep 2005 14:12:15 -0000 1.10 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns NULL on failure, otherwise a newly allocated color dialog. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_colorpicker.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_colorpicker.c 20 Jun 2005 01:53:32 -0000 1.5 +++ ewl_colorpicker.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns NULL on failure, otherwise a newly allocated color picker. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_combo.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_combo.c 21 Jun 2005 02:15:51 -0000 1.4 +++ ewl_combo.c 5 Sep 2005 14:12:15 -0000 1.5 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param title: the text to place in the combo =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_config.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_config.c 28 Mar 2005 07:04:27 -0000 1.4 +++ ewl_config.c 5 Sep 2005 14:12:15 -0000 1.5 @@ -1,11 +1,7 @@ #include <Ewl.h> -#include <Ecore_Config.h> #include "ewl_debug.h" #include "ewl_macros.h" - -#ifdef HAVE_CONFIG_H -#include "ewl-config.h" -#endif +#include "ewl_private.h" enum Ewl_Config_Types { EWL_CONFIG_DEBUG_ENABLE, =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_container.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- ewl_container.c 25 Aug 2005 02:18:19 -0000 1.11 +++ ewl_container.c 5 Sep 2005 14:12:15 -0000 1.12 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param c: the container to initialize =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_datepicker.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_datepicker.c 11 Jul 2005 01:33:59 -0000 1.2 +++ ewl_datepicker.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,10 +1,7 @@ #include <Ewl.h> -#include <time.h> #include "ewl_debug.h" -#include <Evas.h> #include "ewl_macros.h" -#include <stdlib.h> -#include <assert.h> +#include "ewl_private.h" /** * @return Returns NULL on failure, a new Ewl_DatePicker on success =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_dialog.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_dialog.c 20 Jul 2005 00:30:27 -0000 1.3 +++ ewl_dialog.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param pos: the position of the action area. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_embed.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_embed.c 19 Aug 2005 18:14:21 -0000 1.5 +++ ewl_embed.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" extern Ewl_Widget *last_selected; extern Ewl_Widget *last_key; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_entry.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -3 -r1.23 -r1.24 --- ewl_entry.c 17 Aug 2005 16:52:57 -0000 1.23 +++ ewl_entry.c 5 Sep 2005 14:12:15 -0000 1.24 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static int ewl_entry_selection_clear(Ewl_Entry *e); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_events.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_events.c 19 Aug 2005 18:14:21 -0000 1.5 +++ ewl_events.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,18 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" - -#ifdef HAVE_CONFIG_H -#include "ewl-config.h" -#endif - -#ifdef HAVE_EVAS_ENGINE_FB_H -#include "Ecore_Fb.h" -#endif - -#ifdef HAVE_EVAS_ENGINE_SOFTWARE_X11_H -#include "Ecore_X.h" -#endif +#include "ewl_private.h" unsigned int key_modifiers = 0; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_filedialog.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_filedialog.c 28 May 2005 19:01:41 -0000 1.3 +++ ewl_filedialog.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,12 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" - -#include <stdio.h> -#include <stdlib.h> -#include <sys/stat.h> -#include <dirent.h> -#include <string.h> +#include "ewl_private.h" /** * @return Returns a new open filedialog if successful, NULL on failure. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_fileselector.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -3 -r1.19 -r1.20 --- ewl_fileselector.c 31 Jul 2005 18:01:49 -0000 1.19 +++ ewl_fileselector.c 5 Sep 2005 14:12:15 -0000 1.20 @@ -1,14 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" -#include <Ecore_File.h> - -#include <sys/stat.h> -#include <stdio.h> -#include <stdlib.h> -#include <dirent.h> -#include <string.h> -#include <regex.h> +#include "ewl_private.h" /* * Internally used functions =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_floater.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_floater.c 28 Mar 2005 07:04:28 -0000 1.2 +++ ewl_floater.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param parent: the parent widget to follow if desired =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_grid.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_grid.c 28 Mar 2005 07:04:28 -0000 1.3 +++ ewl_grid.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static void ewl_grid_resize(Ewl_Grid * g); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_iconbox.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -3 -r1.20 -r1.21 --- ewl_iconbox.c 25 Aug 2005 11:40:05 -0000 1.20 +++ ewl_iconbox.c 5 Sep 2005 14:12:15 -0000 1.21 @@ -1,8 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" -#include <Evas.h> #include "ewl_macros.h" -#include <stdlib.h> +#include "ewl_private.h" int mouse_state = 0; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_image.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- ewl_image.c 25 Aug 2005 02:18:19 -0000 1.12 +++ ewl_image.c 5 Sep 2005 14:12:15 -0000 1.13 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static Ewl_Image_Type ewl_image_type_get(const char *i); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_imenu.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_imenu.c 28 Mar 2005 07:04:28 -0000 1.2 +++ ewl_imenu.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param image: the image icon to use for this menu =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_label.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- ewl_label.c 21 Jul 2005 15:27:29 -0000 1.6 +++ ewl_label.c 5 Sep 2005 14:12:15 -0000 1.7 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static void ewl_label_apply(Ewl_Label *la); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_macros.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_macros.h 28 Mar 2005 07:04:28 -0000 1.3 +++ ewl_macros.h 5 Sep 2005 14:12:15 -0000 1.4 @@ -58,11 +58,5 @@ */ #define ZERO(ptr, type, num) ptr = memset(ptr, 0, sizeof(type) * (num)) -#if HAVE___ATTRIBUTE__ -#define __UNUSED__ __attribute__((unused)) -#else -#define __UNUSED__ -#endif - #endif /* __EWL_MACROS_H__ */ =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_media.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_media.c 28 Mar 2005 07:04:28 -0000 1.2 +++ ewl_media.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,8 +1,7 @@ #include <Ewl.h> -#include "ewl-config.h" -#include <ewl_media.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static void ewl_media_size_update(Ewl_Media *m); static void ewl_media_update_timer_cb(void *data, Evas_Object *obj, void =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_menu.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_menu.c 25 Apr 2005 05:44:19 -0000 1.5 +++ ewl_menu.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param image: the image icon to use for this menu =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_menu_base.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_menu_base.c 25 Apr 2005 05:44:19 -0000 1.4 +++ ewl_menu_base.c 5 Sep 2005 14:12:15 -0000 1.5 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static int ewl_menu_item_image_create( Ewl_Menu_Item *item, char *image, char *text ); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_menubar.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_menubar.c 8 Jun 2005 02:11:12 -0000 1.3 +++ ewl_menubar.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param orientation: the desirec orientation of the menubar =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_misc.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -3 -r1.13 -r1.14 --- ewl_misc.c 25 Jul 2005 04:16:44 -0000 1.13 +++ ewl_misc.c 5 Sep 2005 14:12:15 -0000 1.14 @@ -1,22 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" - -#ifdef HAVE_CONFIG_H -#include "ewl-config.h" -#endif - -#ifdef HAVE_EVAS_ENGINE_FB_H -#include <Ecore_Fb.h> -#endif - -#ifdef HAVE_EVAS_ENGINE_SOFTWARE_X11_H -#include <Ecore_X.h> -#endif - -#ifdef HAVE_EVAS_ENGINE_SOFTWARE_X11_H -#include <Evas_Engine_Software_X11.h> -#endif +#include "ewl_private.h" extern Ecore_List *ewl_embed_list; extern Ecore_List *ewl_window_list; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_notebook.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_notebook.c 28 Mar 2005 07:04:28 -0000 1.3 +++ ewl_notebook.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static int ewl_notebook_page_index_get(Ewl_Notebook *n, Ewl_Notebook_Page *p); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_object.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_object.c 17 Jul 2005 16:08:02 -0000 1.5 +++ ewl_object.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param o: the object to initialize =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_overlay.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_overlay.c 20 May 2005 05:02:59 -0000 1.5 +++ ewl_overlay.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns a new overlay container on success, or NULL on failure. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_paned.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_paned.c 28 Mar 2005 07:04:29 -0000 1.2 +++ ewl_paned.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static void ewl_paned_grabber_mouse_down_cb(Ewl_Widget *w, void *ev, void *user_data); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_password.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_password.c 6 Jul 2005 13:44:39 -0000 1.3 +++ ewl_password.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param text: the initial text to display in the widget =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_progressbar.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_progressbar.c 28 Mar 2005 07:04:29 -0000 1.2 +++ ewl_progressbar.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static void ewl_progressbar_child_handle(Ewl_Container *c, Ewl_Widget *w); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_radiobutton.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_radiobutton.c 28 Mar 2005 07:04:29 -0000 1.2 +++ ewl_radiobutton.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param label: the label to associate with the radio button =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_row.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- ewl_row.c 22 Jun 2005 19:08:48 -0000 1.6 +++ ewl_row.c 5 Sep 2005 14:12:15 -0000 1.7 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns a newly allocated row on success, NULL on failure. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_scrollbar.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_scrollbar.c 28 Mar 2005 07:04:29 -0000 1.2 +++ ewl_scrollbar.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static int ewl_scrollbar_timer(void *data); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_scrollpane.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_scrollpane.c 22 Jun 2005 19:00:39 -0000 1.4 +++ ewl_scrollpane.c 5 Sep 2005 14:12:15 -0000 1.5 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns a new scrollpane on success, NULL on failure. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_seeker.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_seeker.c 28 Mar 2005 07:04:29 -0000 1.3 +++ ewl_seeker.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param o: the orientation for the new seeker =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_selectionbar.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_selectionbar.c 28 Mar 2005 07:04:29 -0000 1.3 +++ ewl_selectionbar.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static int ewl_selectionbar_open_bar_timer(void *ev_data); static int ewl_selectionbar_close_bar_timer(void *ev_data); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_selectionbook.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_selectionbook.c 28 Mar 2005 07:04:29 -0000 1.4 +++ ewl_selectionbook.c 5 Sep 2005 14:12:15 -0000 1.5 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * ewl_selectionbook_new - create a new selectionbook =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_separator.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_separator.c 28 Mar 2005 07:04:29 -0000 1.2 +++ ewl_separator.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param o: the orientation of the newly allocated separator widget =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_spacer.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- ewl_spacer.c 28 Mar 2005 07:04:29 -0000 1.2 +++ ewl_spacer.c 5 Sep 2005 14:12:15 -0000 1.3 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns NULL on failure, a pointer to a new spacer on success =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_spectrum.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- ewl_spectrum.c 20 Jun 2005 01:52:19 -0000 1.6 +++ ewl_spectrum.c 5 Sep 2005 14:12:15 -0000 1.7 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static void ewl_spectrum_color_coord_map2d(Ewl_Spectrum *sp, int x, int y, int *r, int *g, int *b, int *a); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_spinner.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_spinner.c 6 Jul 2005 13:44:39 -0000 1.3 +++ ewl_spinner.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" static void ewl_spinner_calc_value(Ewl_Spinner *s, double val); static int ewl_spinner_timer(void *data); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_statusbar.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- ewl_statusbar.c 5 Jun 2005 22:06:23 -0000 1.3 +++ ewl_statusbar.c 5 Sep 2005 14:12:15 -0000 1.4 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @return Returns NULL on failure, or a pointer to a new statusbar on success. =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_table.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- ewl_table.c 22 Jul 2005 00:03:04 -0000 1.5 +++ ewl_table.c 5 Sep 2005 14:12:15 -0000 1.6 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param cols: the number of columns =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_text.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -3 -r1.21 -r1.22 --- ewl_text.c 27 Aug 2005 14:48:33 -0000 1.21 +++ ewl_text.c 5 Sep 2005 14:12:15 -0000 1.22 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /* This counts how many deletes we have before trigger a condense operation * on the btree */ =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_theme.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -3 -r1.13 -r1.14 --- ewl_theme.c 21 Jul 2005 04:23:42 -0000 1.13 +++ ewl_theme.c 5 Sep 2005 14:12:15 -0000 1.14 @@ -1,10 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" - -#ifdef HAVE_CONFIG_H -#include "ewl-config.h" -#endif +#include "ewl_private.h" #define NOMATCH ((char *)0xdeadbeef) =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_tooltip.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- ewl_tooltip.c 19 Apr 2005 03:39:34 -0000 1.4 +++ ewl_tooltip.c 5 Sep 2005 14:12:15 -0000 1.5 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param parent: the widget this tooltip relates =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_tree.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- ewl_tree.c 19 Aug 2005 17:50:51 -0000 1.12 +++ ewl_tree.c 5 Sep 2005 14:12:15 -0000 1.13 @@ -1,6 +1,7 @@ -#include "Ewl.h" +#include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" /** * @param columns: the number of columns to display =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_widget.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -3 -r1.13 -r1.14 --- ewl_widget.c 22 Jul 2005 00:03:04 -0000 1.13 +++ ewl_widget.c 5 Sep 2005 14:12:15 -0000 1.14 @@ -1,6 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" +#include "ewl_private.h" Ewl_Widget *last_selected = NULL; Ewl_Widget *last_key = NULL; =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/lib/ewl_window.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -3 -r1.13 -r1.14 --- ewl_window.c 21 Aug 2005 06:08:53 -0000 1.13 +++ ewl_window.c 5 Sep 2005 14:12:15 -0000 1.14 @@ -1,27 +1,7 @@ #include <Ewl.h> #include "ewl_debug.h" #include "ewl_macros.h" - -#ifdef HAVE_CONFIG_H -#include "ewl-config.h" -#endif - -#ifdef HAVE_EVAS_ENGINE_FB_H -#include <Ecore_Fb.h> -#include <Evas_Engine_FB.h> -#endif - -#ifdef HAVE_EVAS_ENGINE_SOFTWARE_X11_H -#include <Ecore_X.h> -#endif - -#ifdef HAVE_EVAS_ENGINE_GL_X11_H -#include <Evas_Engine_GL_X11.h> -#endif - -#ifdef HAVE_EVAS_ENGINE_SOFTWARE_X11_H -#include <Evas_Engine_Software_X11.h> -#endif +#include "ewl_private.h" Ecore_List *ewl_window_list = NULL; ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs