Enlightenment CVS committal
Author : rbdpngn
Project : e17
Module : libs/ewl
Dir : e17/libs/ewl/src
Modified Files:
Ewl.h ewl_box.h ewl_button.h ewl_callback.h ewl_cell.h
ewl_check.h ewl_checkbutton.h ewl_config.h ewl_container.h
ewl_cursor.h ewl_embed.h ewl_entry.h ewl_enums.h ewl_floater.h
ewl_image.c ewl_image.h ewl_imenu.h ewl_macros.h ewl_menu.h
ewl_menu_base.h ewl_misc.h ewl_object.h ewl_radiobutton.h
ewl_scrollbar.h ewl_scrollpane.h ewl_seeker.h ewl_separator.h
ewl_spacer.h ewl_spinner.h ewl_text.h ewl_textarea.h
ewl_theme.h ewl_tree.h ewl_widget.h ewl_window.h
Log Message:
Documentation fixes and cleanups. Build eet's if they are out of date with
their edc's. Install data files w/o tarring the whole data directory.
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/Ewl.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- Ewl.h 27 Aug 2003 06:55:38 -0000 1.34
+++ Ewl.h 16 Oct 2003 20:54:24 -0000 1.35
@@ -148,8 +148,7 @@
* ewl_window_set_title(EWL_WINDOW(main_win), "EWL Simple Image Viewer");
* ewl_callback_append(main_win, EWL_CALLBACK_DELETE_WINDOW,
* __destroy_main_window, NULL);
- * ewl_window_set_min_size(EWL_WINDOW(main_win), 100, 100);
- * ewl_window_set_auto_size(EWL_WINDOW(main_win), TRUE);
+ * ewl_object_set_minimum_size(EWL_OBJECT(main_win), 100, 100);
* ewl_widget_show(main_win);
* @endcode
*
@@ -158,8 +157,8 @@
* easier to add more widgets later.
*
* @code
- * main_box = *ewl_vbox_new();
- * ewl_container_append_child(EWL_CONTAINER(main_win), *main_box);
+ * main_box = ewl_vbox_new();
+ * ewl_container_append_child(EWL_CONTAINER(main_win), main_box);
* ewl_widget_show(main_box);
* @endcode
*
@@ -168,7 +167,7 @@
* box in the window.
*
* @code
- * image *= *ewl_image_load(argv[1]);
+ * image = ewl_image_new(argv[1]);
* ewl_container_append_child(EWL_CONTAINER(main_box), image);
* ewl_widget_show(image);
* @endcode
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_box.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- ewl_box.h 10 Oct 2003 21:42:28 -0000 1.26
+++ ewl_box.h 16 Oct 2003 20:54:24 -0000 1.27
@@ -2,7 +2,7 @@
#define __EWL_BOX_H__
/**
- * @defgroup Ewl_Box The Box Layout Widget.
+ * @defgroup Ewl_Box Box: The Box Layout Widget.
* @brief Defines the Ewl_Box class used for laying out Ewl_Widget's in a
* horizontal or vertical line.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_button.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- ewl_button.h 6 Oct 2003 17:39:53 -0000 1.19
+++ ewl_button.h 16 Oct 2003 20:54:25 -0000 1.20
@@ -2,7 +2,7 @@
#define __EWL_BUTTON_H__
/**
- * @defgroup Ewl_Button The Basic Button
+ * @defgroup Ewl_Button Button: The Basic Button
* @brief The button class is a basic button with a label. This class inherits
* from the Ewl_Box to allow for placing any other widget inside the button.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_callback.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- ewl_callback.h 3 Sep 2003 21:33:35 -0000 1.26
+++ ewl_callback.h 16 Oct 2003 20:54:25 -0000 1.27
@@ -2,7 +2,7 @@
#define __EWL_CALLBACK_H__
/**
- * @defgroup Ewl_Callback The Callback Mechanisms
+ * @defgroup Ewl_Callback Callback: The Callback Mechanisms
* Defines methods for creating and modifying callbacks on widgets
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_cell.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ewl_cell.h 6 Oct 2003 17:39:54 -0000 1.5
+++ ewl_cell.h 16 Oct 2003 20:54:25 -0000 1.6
@@ -2,7 +2,7 @@
#define _EWL_CELL_H
/**
- * @defgroup Ewl_Cell The Cell Container, Layout for a Single Widget
+ * @defgroup Ewl_Cell Cell: The Cell Container, Layout for a Single Widget
* Defines a container to layout a single child with all of it's available
* space.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_check.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ewl_check.h 6 Oct 2003 17:39:54 -0000 1.3
+++ ewl_check.h 16 Oct 2003 20:54:25 -0000 1.4
@@ -2,7 +2,7 @@
#define _EWL_CHECK_H_
/**
- * @defgroup Ewl_Check The Simple Check for a Checkbutton
+ * @defgroup Ewl_Check Check: The Simple Check for a Checkbutton
* Defines a widget with single purpose of providing a button with a checked
* state, without any extra decorating.
*/
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_checkbutton.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- ewl_checkbutton.h 6 Oct 2003 17:39:54 -0000 1.16
+++ ewl_checkbutton.h 16 Oct 2003 20:54:25 -0000 1.17
@@ -3,7 +3,7 @@
#define __EWL_CHECKBUTTON_H__
/**
- * @defgroup Ewl_CheckButton A CheckButton with Label
+ * @defgroup Ewl_CheckButton CheckButton: A CheckButton with Label
* @brief Defines an Ewl_CheckButton that inherits from Ewl_Widget and
* provides an Ewl_Check that changes value on each click.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_config.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- ewl_config.h 22 Sep 2003 06:09:24 -0000 1.20
+++ ewl_config.h 16 Oct 2003 20:54:25 -0000 1.21
@@ -2,7 +2,7 @@
#define __EWL_CONFIG_H__
/**
- * @defgroup Ewl_Config Functions for Manipulating Configuration Data
+ * @defgroup Ewl_Config Config: Functions for Manipulating Configuration Data
*
* @{
*/
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_container.h,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- ewl_container.h 7 Oct 2003 21:26:23 -0000 1.25
+++ ewl_container.h 16 Oct 2003 20:54:25 -0000 1.26
@@ -2,7 +2,7 @@
#define __EWL_CONTAINER_H__
/**
- * @defgroup Ewl_Container The Base Class for Widgets Holding Other Widgets
+ * @defgroup Ewl_Container Container: Widgets Holding Other Widgets
* @brief Define the Ewl_Container class which inherits from Ewl_Widget and adds
* the ability to nest Ewl_Widget's inside.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_cursor.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ewl_cursor.h 6 Oct 2003 17:39:54 -0000 1.11
+++ ewl_cursor.h 16 Oct 2003 20:54:25 -0000 1.12
@@ -2,7 +2,7 @@
#define __EWL_CURSOR_H__
/**
- * @defgroup Ewl_Cursor A Text Cursor
+ * @defgroup Ewl_Cursor Cursor: A Text Cursor
* Indicates cursor position in editable text and provides a visual selection
* highlighting.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_embed.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ewl_embed.h 6 Oct 2003 17:39:54 -0000 1.5
+++ ewl_embed.h 16 Oct 2003 20:54:25 -0000 1.6
@@ -2,7 +2,7 @@
#define __EWL_EMBED_H__
/**
- * @defgroup Ewl_Embed A Container for Displaying on an Evas
+ * @defgroup Ewl_Embed Embed: A Container for Displaying on an Evas
* Defines the Ewl_Embed class to provide EWL with the ability to work with an
* evas.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_entry.h,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- ewl_entry.h 6 Oct 2003 17:39:54 -0000 1.25
+++ ewl_entry.h 16 Oct 2003 20:54:25 -0000 1.26
@@ -2,7 +2,7 @@
#define __EWL_ENTRY_H__
/**
- * @defgroup Ewl_Entry A Single Line Text Entry Widget
+ * @defgroup Ewl_Entry Entry: A Single Line Text Entry Widget
* @brief Defines the Ewl_Entry class to allow for single line editable text.
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_enums.h,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -3 -r1.40 -r1.41
--- ewl_enums.h 29 Sep 2003 21:46:50 -0000 1.40
+++ ewl_enums.h 16 Oct 2003 20:54:25 -0000 1.41
@@ -2,8 +2,10 @@
#define __EWL_ENUMS_H__
/**
- * @defgroup Ewl_Enums Various Flags and Enumerations used in EWL
+ * @defgroup Ewl_Enums Enums: Various Flags and Enumerations used in EWL
* Provides bitmasks, flags, and other enumerations for use by widgets in EWL.
+ *
+ * @{
*/
/**
@@ -202,5 +204,9 @@
EWL_FILEDIALOG_TYPE_OPEN,
EWL_FILEDIALOG_TYPE_CLOSE
};
+
+/**
+ * @}
+ */
#endif /* __EWL_ENUMS_H__ */
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_floater.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ewl_floater.h 6 Oct 2003 17:39:54 -0000 1.6
+++ ewl_floater.h 16 Oct 2003 20:54:25 -0000 1.7
@@ -3,7 +3,7 @@
#define __EWL_FLOATER_H__
/**
- * @defgroup Ewl_Floater A Floating Container
+ * @defgroup Ewl_Floater Floater: A Floating Container
* @brief Defines a widget for layering above other widgets in EWL's drawing
* area, with the ability to follow the movement of another widget.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_image.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- ewl_image.c 7 Oct 2003 21:26:23 -0000 1.31
+++ ewl_image.c 16 Oct 2003 20:54:25 -0000 1.32
@@ -313,8 +313,22 @@
emb = ewl_embed_find_by_widget(w);
- ww = CURRENT_W(w) - (INSET_LEFT(w) + INSET_RIGHT(w));
- hh = CURRENT_H(w) - (INSET_TOP(w) + INSET_BOTTOM(w));
+ ww = CURRENT_W(w);
+ hh = CURRENT_H(w);
+
+ if (i->proportional) {
+ double op, np;
+
+ op = (double)i->ow / (double)i->oh;
+ np = (double)ww / (double)hh;
+
+ if (op < np) {
+ hh *= op;
+ }
+ else {
+ ww *= np;
+ }
+ }
/*
* Move the image into place based on type.
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_image.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- ewl_image.h 6 Oct 2003 17:39:54 -0000 1.16
+++ ewl_image.h 16 Oct 2003 20:54:25 -0000 1.17
@@ -2,7 +2,7 @@
#define __EWL_IMAGE_H__
/**
- * @defgroup Ewl_Image An Image Display Widget
+ * @defgroup Ewl_Image Image: An Image Display Widget
* Provides a widget for displaying evas loadable images, and edjes.
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_imenu.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ewl_imenu.h 6 Oct 2003 17:39:55 -0000 1.5
+++ ewl_imenu.h 16 Oct 2003 20:54:25 -0000 1.6
@@ -2,7 +2,7 @@
#define __EWL_IMENU_H__
/**
- * @defgroup Ewl_Imenu A Simple Internal Menu
+ * @defgroup Ewl_Imenu Imenu: A Simple Internal Menu
* Defines a menu used internally. The contents on the menu are not drawn
* outside of the Evas.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_macros.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ewl_macros.h 1 Sep 2003 04:57:07 -0000 1.17
+++ ewl_macros.h 16 Oct 2003 20:54:25 -0000 1.18
@@ -3,7 +3,7 @@
#define __EWL_MACROS_H__
/**
- * @defgroup Ewl_Macros Useful Macros Used Internally and Available Externally
+ * @defgroup Ewl_Macros Macros: Useful Macros Used Internally and Available Externally
* Defines a variety of utility macros.
*/
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_menu.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- ewl_menu.h 6 Oct 2003 17:39:55 -0000 1.4
+++ ewl_menu.h 16 Oct 2003 20:54:25 -0000 1.5
@@ -2,7 +2,7 @@
#define __EWL_MENU_H__
/**
- * @defgroup Ewl_Menu A Popup Menu
+ * @defgroup Ewl_Menu Menu: A Popup Menu
* Provides a popup menu for displaying a list of options.
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_menu_base.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ewl_menu_base.h 1 Sep 2003 04:57:07 -0000 1.6
+++ ewl_menu_base.h 16 Oct 2003 20:54:25 -0000 1.7
@@ -2,7 +2,7 @@
#define __EWL_MENU_BASE_H__
/**
- * @defgroup Ewl_Menu_Base The Basic Menu Functionality
+ * @defgroup Ewl_Menu_Base Menu_Base: The Basic Menu Functionality
* @brief Defines the basic menu classes that are extended to an actual menu
* implementation by inheriting classes such as Ewl_Menu and Ewl_IMenu.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_misc.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- ewl_misc.h 7 Oct 2003 21:26:23 -0000 1.20
+++ ewl_misc.h 16 Oct 2003 20:54:25 -0000 1.21
@@ -2,7 +2,7 @@
#define __EWL_MISC_H__
/**
- * @defgroup Ewl_Misc Miscellaneous Utility Functions
+ * @defgroup Ewl_Misc Misc: Miscellaneous Utility Functions
* Provides important miscellaneous functionality such as manipulation of the
* main loop.
*/
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_object.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- ewl_object.h 16 Oct 2003 07:05:10 -0000 1.34
+++ ewl_object.h 16 Oct 2003 20:54:25 -0000 1.35
@@ -2,7 +2,7 @@
#define __EWL_OBJECT_H__
/**
- * @defgroup Ewl_Object Basic Object Inherited by Ewl_Widget
+ * @defgroup Ewl_Object Object: Basic Object Inherited by Ewl_Widget
* @brief Defines the Ewl_Object class along with methods and macros related
* to it.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_radiobutton.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- ewl_radiobutton.h 6 Oct 2003 17:39:55 -0000 1.13
+++ ewl_radiobutton.h 16 Oct 2003 20:54:25 -0000 1.14
@@ -2,7 +2,7 @@
#define __EWL_RADIOBUTTON_H__
/**
- * @defgroup Ewl_RadioButton A Radio Button Widget and Grouping System
+ * @defgroup Ewl_RadioButton RadioButton: A Radio Button Widget and Grouping System
* Provides for a simple radiobutton with label, and to group radio buttons
* for selecting a single option.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_scrollbar.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ewl_scrollbar.h 10 Oct 2003 21:42:28 -0000 1.11
+++ ewl_scrollbar.h 16 Oct 2003 20:54:25 -0000 1.12
@@ -2,7 +2,7 @@
#define __EWL_SCROLLBAR_H__
/**
- * @defgroup Ewl_Scrollbar A Simple Scrollbar Widget
+ * @defgroup Ewl_Scrollbar Scrollbar: A Simple Scrollbar Widget
* Defines an Ewl_Scrollbar for using when scrolling values are needed.
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_scrollpane.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ewl_scrollpane.h 6 Oct 2003 17:39:55 -0000 1.6
+++ ewl_scrollpane.h 16 Oct 2003 20:54:25 -0000 1.7
@@ -2,7 +2,7 @@
#define __EWL_SCROLLPANE_H__
/**
- * @defgroup Ewl_ScrollPane A Scrollable Viewing Area
+ * @defgroup Ewl_ScrollPane ScrollPane: A Scrollable Viewing Area
* Provides a scrollable area for viewing large sets of widgets in a smaller
* viewable region.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_seeker.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- ewl_seeker.h 6 Oct 2003 17:39:55 -0000 1.18
+++ ewl_seeker.h 16 Oct 2003 20:54:25 -0000 1.19
@@ -3,7 +3,7 @@
#define __EWL_SEEKER_H__
/**
- * @defgroup Ewl_Seeker A Value Selector from a Range
+ * @defgroup Ewl_Seeker Seeker: A Value Selector from a Range
* Defines an Ewl_Widget with a draggable button enclosed, used to select a
* value from a range.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_separator.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- ewl_separator.h 6 Oct 2003 17:39:55 -0000 1.15
+++ ewl_separator.h 16 Oct 2003 20:54:25 -0000 1.16
@@ -3,7 +3,7 @@
#define __EWL_SEPARATOR_H__
/**
- * @defgroup Ewl_Separator A Visual Separator Between Widgets
+ * @defgroup Ewl_Separator Separator: A Visual Separator Between Widgets
* Defines the Ewl_Separator class used for drawing lines between widgets when
* visual separation is needed.
*/
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_spacer.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ewl_spacer.h 6 Oct 2003 17:39:55 -0000 1.5
+++ ewl_spacer.h 16 Oct 2003 20:54:25 -0000 1.6
@@ -3,7 +3,7 @@
#define __EWL_SPACER_H__
/**
- * @defgroup Ewl_Spacer A Widget to Add Space Between Other Widgets
+ * @defgroup Ewl_Spacer Spacer: A Widget to Add Space Between Other Widgets
* Defines an Ewl_Widget to be used for adding space between widgets in a
* layout.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_spinner.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ewl_spinner.h 6 Oct 2003 17:39:55 -0000 1.17
+++ ewl_spinner.h 16 Oct 2003 20:54:25 -0000 1.18
@@ -2,7 +2,7 @@
#define __EWL_SPINNER_H__
/**
- * @defgroup Ewl_Spinner A Numerical Value Entry
+ * @defgroup Ewl_Spinner Spinner: A Numerical Value Entry
* Provides a field for entering numerical values, along with buttons to
* increment and decrement the value.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_text.h,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- ewl_text.h 29 Sep 2003 21:46:51 -0000 1.25
+++ ewl_text.h 16 Oct 2003 20:54:25 -0000 1.26
@@ -3,7 +3,7 @@
#define __EWL_TEXT_H
/**
- * @defgroup Ewl_Text A Single Line Text Display
+ * @defgroup Ewl_Text Text: A Single Line Text Display
* @brief Defines the Ewl_Text class to provide text display in a single line.
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_textarea.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_textarea.h 1 Sep 2003 04:57:07 -0000 1.7
+++ ewl_textarea.h 16 Oct 2003 20:54:25 -0000 1.8
@@ -3,7 +3,7 @@
#define __EWL_TEXTAREA_H__
/**
- * @defgroup Ewl_TextArea A Multi-Line Text Layout Display
+ * @defgroup Ewl_TextArea TextArea: A Multi-Line Text Layout Display
* @brief Defines a class for multi-line text layout and formatting.
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_theme.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ewl_theme.h 1 Sep 2003 04:57:07 -0000 1.17
+++ ewl_theme.h 16 Oct 2003 20:54:25 -0000 1.18
@@ -3,7 +3,7 @@
#define __EWL_THEME_H__
/**
- * @defgroup Ewl_Theme Methods for Accessing and Modifying Theme Data
+ * @defgroup Ewl_Theme Theme: Methods for Accessing and Modifying Theme Data
* Provides methods for accessing theme data, global theme data or per-widget
* theme data.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_tree.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- ewl_tree.h 22 Sep 2003 06:09:24 -0000 1.14
+++ ewl_tree.h 16 Oct 2003 20:54:25 -0000 1.15
@@ -2,7 +2,7 @@
#define _EWL_TREE_H
/**
- * @defgroup Ewl_Tree A Widget for List or Tree Layout
+ * @defgroup Ewl_Tree Tree: A Widget for List or Tree Layout
* @brief Defines a widget for laying out other widgets in a tree or list like
* manner.
*
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_widget.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- ewl_widget.h 29 Sep 2003 21:46:51 -0000 1.34
+++ ewl_widget.h 16 Oct 2003 20:54:25 -0000 1.35
@@ -2,7 +2,7 @@
#define __EWL_WIDGET_H__
/**
- * @defgroup Ewl_Widget The Parent Widget Class Common to All Widgets
+ * @defgroup Ewl_Widget Widget: The Parent Widget Class Common to All Widgets
* @brief Defines the Ewl_Widget class and it's accessor/modifier functions.
*
* @{
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_window.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- ewl_window.h 1 Sep 2003 04:57:07 -0000 1.22
+++ ewl_window.h 16 Oct 2003 20:54:25 -0000 1.23
@@ -3,7 +3,7 @@
#define __EWL_WINDOW_H__
/**
- * @defgroup Ewl_Window A Container for Displaying in a New Window
+ * @defgroup Ewl_Window Window: A Container for Displaying in a New Window
* @brief Defines the Ewl_Window class which extends the Ewl_Embed class by
* creating it's own window and evas.
*
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs