Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/lib


Modified Files:
        ewl_filepicker.c ewl_io_manager.h ewl_misc.c ewl_paned.c 
        ewl_scrollpane.c ewl_tree.c 


Log Message:
- doxy cleanup

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filepicker.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -3 -r1.48 -r1.49
--- ewl_filepicker.c    26 Feb 2008 04:35:58 -0000      1.48
+++ ewl_filepicker.c    26 Feb 2008 06:21:21 -0000      1.49
@@ -18,6 +18,10 @@
 #include "ewl_debug.h"
 
 typedef struct Ewl_Filepicker_Dialog Ewl_Filepicker_Dialog;
+
+/**
+ * @brief Used to store information about the filepicker
+ */
 struct Ewl_Filepicker_Dialog
 {
        Ewl_Filepicker *fp;
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_io_manager.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_io_manager.h    5 Sep 2007 18:33:26 -0000       1.7
+++ ewl_io_manager.h    26 Feb 2008 06:21:21 -0000      1.8
@@ -3,6 +3,13 @@
 #define EWL_IO_MANAGER_H
 
 /**
+ * @addtogroup Ewl_IO_Manager Ewl_IO_Manager: An input manager
+ * @brief Defines a class for handling reading various input and creating the 
correct widgets
+ *
+ * @{
+ */
+
+/**
  * Ewl_IO_Manager_Plugin
  */
 typedef struct Ewl_IO_Manager_Plugin Ewl_IO_Manager_Plugin;
@@ -37,6 +44,10 @@
                                        char *uri, const char *mime);
 int             ewl_io_manager_string_write(Ewl_Widget *data,
                                        char **string, const char *mime);
+
+/**
+ * @}
+ */
 
 #endif
 
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_misc.c,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -3 -r1.107 -r1.108
--- ewl_misc.c  12 Nov 2007 22:42:22 -0000      1.107
+++ ewl_misc.c  26 Feb 2008 06:21:21 -0000      1.108
@@ -47,10 +47,11 @@
  */
 #define EWL_CONFIGURE_QUEUE_SIZE 4092
 
-/*
- * Memory buffer for tracking widgets ready for a configure pass
- */
 typedef struct Ewl_Configure_Queue Ewl_Configure_Queue;
+
+/**
+ * @brief Memory buffer for tracking widgets ready for a configure pass
+ */
 struct Ewl_Configure_Queue
 {
        int end;
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_paned.c,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -3 -r1.66 -r1.67
--- ewl_paned.c 15 Feb 2008 23:52:22 -0000      1.66
+++ ewl_paned.c 26 Feb 2008 06:21:21 -0000      1.67
@@ -5,18 +5,25 @@
 #include "ewl_private.h"
 #include "ewl_debug.h"
 
-typedef struct
+typedef struct Ewl_Paned_Pane_Info Ewl_Paned_Pane_Info;
+
+/**
+ * @brief Stores information about a pane in the paned widget
+ */
+struct Ewl_Paned_Pane_Info
 {
        Ewl_Widget *pane;
        Ewl_Paned_Size_Info *info;
        int size;
        unsigned char fixed:1;
-} Ewl_Paned_Pane_Info;
+};
+
+typedef struct Ewl_Paned_Layout Ewl_Paned_Layout;
 
 /**
  * @brief Contains information on a paned layout
  */
-typedef struct 
+struct Ewl_Paned_Layout
 {
        int (*minimum_size)(Ewl_Object *o);
        int (*current_size)(Ewl_Object *o);
@@ -27,7 +34,7 @@
        void (*stable_request)(Ewl_Object *o, int size);
        void (*position_request)(Ewl_Object *o, int pos);
        void (*stable_position_request)(Ewl_Object *o, int pos);
-} Ewl_Paned_Layout;
+};
 
 static Ewl_Paned_Layout *horizontal_layout = NULL;
 static Ewl_Paned_Layout *vertical_layout = NULL;
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_scrollpane.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -3 -r1.38 -r1.39
--- ewl_scrollpane.c    26 Feb 2008 04:35:58 -0000      1.38
+++ ewl_scrollpane.c    26 Feb 2008 06:21:21 -0000      1.39
@@ -19,6 +19,10 @@
 static int ewl_scrollpane_cb_scroll_timer_normal(void *data);
 
 typedef struct Ewl_Scrollpane_Scroll_Info_Normal 
Ewl_Scrollpane_Scroll_Info_Normal;
+
+/**
+ * @brief Stores information on a normal scrollpane
+ */
 struct Ewl_Scrollpane_Scroll_Info_Normal
 {
        int x;
@@ -30,6 +34,10 @@
 };
 
 typedef struct Ewl_Scrollpane_Scroll_Info_Embedded 
Ewl_Scrollpane_Scroll_Info_Embedded;
+
+/**
+ * @brief Stores information on an embedded scrollpane
+ */
 struct Ewl_Scrollpane_Scroll_Info_Embedded
 {
        int xs;
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_tree.c,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -3 -r1.59 -r1.60
--- ewl_tree.c  15 Feb 2008 23:52:22 -0000      1.59
+++ ewl_tree.c  26 Feb 2008 06:21:21 -0000      1.60
@@ -15,12 +15,17 @@
 
 #define EWL_TREE_EXPANSIONS_LIST(el) ((Ewl_Tree_Expansions_List *)(el))
 
-typedef struct
+typedef struct Ewl_Tree_Expansions_List Ewl_Tree_Expansions_List;
+
+/**
+ * @brief Stores informtion on tree expansion points
+ */
+struct Ewl_Tree_Expansions_List
 {
        Ewl_Container *c;
        unsigned int *expanded;
        unsigned int size;
-} Ewl_Tree_Expansions_List;
+};
 
 static void ewl_tree_build_tree(Ewl_Tree *tree);
 static void ewl_tree_build_tree_rows(Ewl_Tree *tree,



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to