Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/lib


Modified Files:
        ewl_enums.h ewl_events.h ewl_grid.h 


Log Message:
doxy

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_enums.h,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -3 -r1.43 -r1.44
--- ewl_enums.h 11 May 2006 04:01:20 -0000      1.43
+++ ewl_enums.h 12 May 2006 01:24:39 -0000      1.44
@@ -225,6 +225,7 @@
 
 /**
  * @enum Ewl_Position
+ * The possible placement positions
  */
 enum Ewl_Position
 {
@@ -247,6 +248,7 @@
 
 /**
  * @enum Ewl_Window_Flags
+ * The possible window states
  */
 enum Ewl_Window_Flags
 {
@@ -264,6 +266,7 @@
 
 /**
  * @enum Ewl_Tree_Node_Flags
+ * The available tree node states
  */
 enum Ewl_Tree_Node_Flags
 {
@@ -279,6 +282,7 @@
 
 /**
  * @enum Ewl_Notebook_Flags
+ * States effecting the notebook
  */
 enum Ewl_Notebook_Flags
 {
@@ -292,6 +296,7 @@
 
 /**
  * @enum Ewl_Scrollpane_Flags
+ * The possible scrollpane settings
  */
 enum Ewl_Scrollpane_Flags
 {
@@ -336,6 +341,7 @@
 
 /**
  * @enum Ewl_Key_Modifiers
+ * The key modifiers
  */
 enum Ewl_Key_Modifiers
 {
@@ -353,6 +359,7 @@
 
 /**
  * @enum Ewl_Stock_Type
+ * The different stock types
  */
 enum Ewl_Stock_Type
 {
@@ -382,6 +389,7 @@
 
 /**
  * @enum Ewl_Color_Mode
+ * The different colour picker modes
  */
 enum Ewl_Color_Mode 
 {
@@ -400,6 +408,7 @@
 
 /**
  * @enum Ewl_Spectrum_Type
+ * The spectrum types
  */
 enum Ewl_Spectrum_Type
 {
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_events.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- ewl_events.h        11 May 2006 04:01:20 -0000      1.14
+++ ewl_events.h        12 May 2006 01:24:39 -0000      1.15
@@ -8,6 +8,9 @@
  * @{
  */
 
+/**
+ * The Ewl_Event_Window_Expose structure
+ */
 typedef struct Ewl_Event_Window_Expose Ewl_Event_Window_Expose;
 
 /**
@@ -21,6 +24,9 @@
        int h; /**< Height of the expose rectangle */
 };
 
+/**
+ * The Ewl_Event_Window_Configure type
+ */
 typedef struct Ewl_Event_Window_Configure Ewl_Event_Window_Configure;
 
 /**
@@ -34,6 +40,9 @@
        int h; /**< The new height of the window */
 };
 
+/**
+ * The Ewl_Event_Window_Delete type
+ */
 typedef struct Ewl_Event_Window_Delete Ewl_Event_Window_Delete;
 
 /**
@@ -44,6 +53,9 @@
        int ignore;     /**< Unused. */
 };
 
+/**
+ *  The Ewl_Event_Window_Key_Down structure 
+ */
 typedef struct Ewl_Event_Key_Down Ewl_Event_Key_Down;
 
 /**
@@ -55,6 +67,9 @@
        char *keyname; /**< Name of the key that was pressed */
 };
 
+/**
+ * The Ewl_Event_Key_Up structure
+ */
 typedef struct Ewl_Event_Key_Up Ewl_Event_Key_Up;
 
 /**
@@ -66,6 +81,9 @@
        char *keyname; /**< Name of the key that was released */
 };
 
+/**
+ * The Ewl_Event_Mouse_Down structure
+ */
 typedef struct Ewl_Event_Mouse_Down Ewl_Event_Mouse_Down;
 
 /**
@@ -80,6 +98,9 @@
        int y; /**< Y coordinate the mouse press occurred at */
 };
 
+/**
+ * The Ewl_Event_Mouse_Up structure
+ */
 typedef struct Ewl_Event_Mouse_Up Ewl_Event_Mouse_Up;
 
 /**
@@ -93,6 +114,9 @@
        int y; /**< Y coordinate the mouse release occurred at */
 };
 
+/**
+ * The Ewl_Event_Mouse_Move structure
+ */
 typedef struct Ewl_Event_Mouse_Move Ewl_Event_Mouse_Move;
 
 /**
@@ -105,6 +129,9 @@
        int y; /**< Y coordinate the mouse moved to */
 };
 
+/**
+ * The Ewl_Event_Mouse_In structure
+ */
 typedef struct Ewl_Event_Mouse_In Ewl_Event_Mouse_In;
 
 /**
@@ -117,6 +144,9 @@
        int y; /**< Y coordinate the mouse entered at */
 };
 
+/**
+ * The Ewl_Event_Mouse_Out structure
+ */
 typedef struct Ewl_Event_Mouse_Out Ewl_Event_Mouse_Out;
 
 /**
@@ -129,6 +159,9 @@
        int y; /**< Y coordinate the mouse left at */
 };
 
+/**
+ * The Ewl_Event_Mouse_Wheel structure
+ */
 typedef struct Ewl_Event_Mouse_Wheel Ewl_Event_Mouse_Wheel;
 
 /**
@@ -143,6 +176,9 @@
        int dir; /**< Direction mouse wheel scrolled */
 };
 
+/**
+ * The Ewl_Dnd_Types type 
+ */
 typedef struct Ewl_Dnd_Types Ewl_Dnd_Types;
 
 /**
@@ -164,10 +200,15 @@
         int y; /**< Y coordinate the mouse moved to */
        void* data; /**< Data from drop source      */
 };
-typedef struct Ewl_Event_Dnd_Drop Ewl_Event_Dnd_Drop;
-
 
+/**
+ * The Ewl_Event_Dnd_Drop type
+ */
+typedef struct Ewl_Event_Dnd_Drop Ewl_Event_Dnd_Drop;
 
+/**
+ * The Ewl_Dialog_Evenet type
+ */
 typedef struct Ewl_Dialog_Event Ewl_Dialog_Event;
 
 /**
@@ -178,15 +219,27 @@
        unsigned int response; /**< The response ID from the dialog */
 };
 
+/**
+ * The Ewl_Filepicker_Event type
+ */
 typedef struct Ewl_Filepicker_Event Ewl_Filepicker_Event;
 
+/**
+ * Contains the filepicker response
+ */
 struct Ewl_Filepicker_Event
 {
        unsigned int response;  /**< The filepicker response */
 };
 
+/**
+ * The Ewl_Filelist_Event type
+ */
 typedef struct Ewl_Filelist_Event Ewl_Filelist_Event;
 
+/**
+ * Contains the filelist event type
+ */
 struct Ewl_Filelist_Event
 {
        Ewl_Filelist_Event_Type type;   /**< The type of event */
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_grid.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- ewl_grid.h  11 May 2006 04:01:20 -0000      1.13
+++ ewl_grid.h  12 May 2006 01:24:39 -0000      1.14
@@ -68,9 +68,14 @@
        Ecore_List *rchildren;                  /**< List of old children after 
a reset call */
 };
 
-
+/**
+ * The Ewl_Grid_Child type
+ */
 typedef struct Ewl_Grid_Child Ewl_Grid_Child;
 
+/**
+ * Contains information about a grid child
+ */
 struct Ewl_Grid_Child
 {
        int start_col;  /**< The start column */




-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to