Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore_x


Modified Files:
        ecore_x.c ecore_x_error.c ecore_x_gc.c ecore_x_pixmap.c 
        ecore_x_selection.c ecore_x_window.c ecore_x_window_prop.c 
        ecore_x_window_shape.c 


Log Message:


slight change in doc comments... get rid of htmlisms...

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- ecore_x.c   6 Feb 2004 05:32:50 -0000       1.28
+++ ecore_x.c   20 Feb 2004 07:06:29 -0000      1.29
@@ -210,7 +210,6 @@
  * @return greater than 1 on success, 0 on failure
  * 
  * Set up an X display connection and event handlers for event processing
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_init(const char *name)
@@ -471,7 +470,6 @@
  * @return The number of times ecore X has left to be shut down
  * 
  * This closes the X display connection and removes the handlers for it.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_shutdown(void)
@@ -497,7 +495,6 @@
  * @return The X Display handle
  * 
  * This returns the X Display handle used for the X connection.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_X_Display *
 ecore_x_display_get(void)
@@ -510,7 +507,6 @@
  * @return The X Display fd
  * 
  * This returns the X Display file descriptor.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_fd_get(void)
@@ -525,7 +521,6 @@
  * This sets the time between clicks before the double_click flag is set in a 
  * button down event. If 3 clicks occur within double this time then the 
  * triple_click flag is also set.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_double_click_time_set(double t)
@@ -539,7 +534,6 @@
  * @return The timeout for double clicks in seconds
  * 
  * This returns the tiemout that can be set by ecore_x_double_click_time_set()
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 double
 ecore_x_double_click_time_get(void)
@@ -551,7 +545,6 @@
  * Flush the command buffer.
  * 
  * This flushes the x command buffer
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_flush(void)
@@ -563,7 +556,6 @@
  * Sync with the server.
  * 
  * This flushes the command buffer and waits for a round trip from the server
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_sync(void)
@@ -579,7 +571,6 @@
  * every child window under it. To kill all clients connected to an X server,
  * use the ecore_x_window_root_list() function to obtain an array of root
  * windows, and then pass each window to this function.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_killall(Ecore_X_Window root)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_error.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_x_error.c     23 Sep 2003 08:09:31 -0000      1.2
+++ ecore_x_error.c     20 Feb 2004 07:06:29 -0000      1.3
@@ -18,7 +18,6 @@
  * @param data The data to be passed to the handler function
  * 
  * Set the X error handler function
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_error_handler_set(void (*func) (void *data), const void *data)
@@ -33,7 +32,6 @@
  * @param data The data to be passed to the handler function
  * 
  * Set the X I/O error handler function
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_io_error_handler_set(void (*func) (void *data), const void *data)
@@ -47,7 +45,6 @@
  * @return The request code causing the X error
  * 
  * Return the X request code that caused the last X error
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_error_request_get(void)
@@ -60,7 +57,6 @@
  * @return The error code from the X error
  * 
  * Return the error code from the last X error
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_error_code_get(void)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_gc.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_x_gc.c        23 Sep 2003 08:09:31 -0000      1.2
+++ ecore_x_gc.c        20 Feb 2004 07:06:29 -0000      1.3
@@ -6,7 +6,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_X_GC
 ecore_x_gc_new(Ecore_X_Drawable draw)
@@ -21,7 +20,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_gc_del(Ecore_X_GC gc)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_pixmap.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_x_pixmap.c    23 Sep 2003 08:09:31 -0000      1.2
+++ ecore_x_pixmap.c    20 Feb 2004 07:06:29 -0000      1.3
@@ -6,7 +6,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_X_Pixmap
 ecore_x_pixmap_new(Ecore_X_Window win, int w, int h, int dep)
@@ -20,7 +19,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_pixmap_del(Ecore_X_Pixmap pmap)
@@ -32,7 +30,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_pixmap_paste(Ecore_X_Pixmap pmap, Ecore_X_Drawable dest, 
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_selection.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- ecore_x_selection.c 8 Feb 2004 07:49:16 -0000       1.13
+++ ecore_x_selection.c 20 Feb 2004 07:06:29 -0000      1.14
@@ -78,7 +78,6 @@
  *
  * Get the converted data from a previous PRIMARY selection
  * request. The buffer must be freed when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_selection_primary_request_data_get(void **buf, int *len)
@@ -94,7 +93,6 @@
  *
  * Get the converted data from a previous SECONDARY selection
  * request. The buffer must be freed when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_selection_secondary_request_data_get(void **buf, int *len)
@@ -110,7 +108,6 @@
  *
  * Get the converted data from a previous CLIPBOARD selection
  * request. The buffer must be freed when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_selection_clipboard_request_data_get(void **buf, int *len)
@@ -198,7 +195,6 @@
  *
  * Get the converted data from a previous PRIMARY selection
  * request. The buffer must be freed when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int 
 ecore_x_selection_primary_set(Ecore_X_Window w, unsigned char *data, int size)
@@ -211,7 +207,6 @@
  * @return     Returns 1 if the selection was successfully cleared,
  *             or 0 if unsuccessful.
  *
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int 
 ecore_x_selection_primary_clear(void)
@@ -229,7 +224,6 @@
  *
  * Get the converted data from a previous SECONDARY selection
  * request. The buffer must be freed when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int 
 ecore_x_selection_secondary_set(Ecore_X_Window w, unsigned char *data, int size)
@@ -242,7 +236,6 @@
  * @return     Returns 1 if the selection was successfully cleared,
  *             or 0 if unsuccessful.
  *
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int 
 ecore_x_selection_secondary_clear(void)
@@ -260,7 +253,6 @@
  *
  * Get the converted data from a previous CLIPBOARD selection
  * request. The buffer must be freed when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int 
 ecore_x_selection_clipboard_set(Ecore_X_Window w, unsigned char *data, int size)
@@ -273,7 +265,6 @@
  * @return     Returns 1 if the selection was successfully cleared,
  *             or 0 if unsuccessful.
  *
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int 
 ecore_x_selection_clipboard_clear(void)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_window.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ecore_x_window.c    15 Feb 2004 22:33:55 -0000      1.11
+++ ecore_x_window.c    20 Feb 2004 07:06:29 -0000      1.12
@@ -12,7 +12,6 @@
  * @return The new window handle
  * 
  * Create a new window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_X_Window
 ecore_x_window_new(Ecore_X_Window parent, int x, int y, int w, int h)
@@ -70,7 +69,6 @@
  * @return The new window handle
  * 
  * Create a new window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_X_Window
 ecore_x_window_override_new(Ecore_X_Window parent, int x, int y, int w, int h)
@@ -128,7 +126,6 @@
  * @return The new window handle
  * 
  * Create a new window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 Ecore_X_Window
 ecore_x_window_input_new(Ecore_X_Window parent, int x, int y, int w, int h)
@@ -173,7 +170,6 @@
  * @param win The window to set defaults
  *
  * Set defaults for a window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_defaults_set(Ecore_X_Window win)
@@ -216,7 +212,6 @@
  * @param win The window to delete
  * 
  * Delete a window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_del(Ecore_X_Window win)
@@ -229,7 +224,6 @@
  * @param win The window to show
  * 
  * Show a window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_show(Ecore_X_Window win)
@@ -242,7 +236,6 @@
  * @param win The window to hide
  * 
  * Hide a window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_hide(Ecore_X_Window win)
@@ -257,7 +250,6 @@
  * @param y Y
  * 
  * Move a window to @p x, @p y
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_move(Ecore_X_Window win, int x, int y)
@@ -272,7 +264,6 @@
  * @param h Height
  * 
  * Resize a window to @p w x @p h
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_resize(Ecore_X_Window win, int w, int h)
@@ -291,7 +282,6 @@
  * @param h Height
  * 
  * Move a window to @p x, @p y and resize it to @p w x @p h
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_move_resize(Ecore_X_Window win, int x, int y, int w, int h)
@@ -306,7 +296,6 @@
  * @param win The window to focus
  * 
  * Set the focus to the window @p win
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_focus(Ecore_X_Window win)
@@ -321,7 +310,6 @@
  * @param t When
  * 
  * Set the focus to the window @p win at time @p t
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_focus_at_time(Ecore_X_Window win, Ecore_X_Time t)
@@ -335,7 +323,6 @@
  * @param win The window to raise
  * 
  * Raise window @p win
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_raise(Ecore_X_Window win)
@@ -348,7 +335,6 @@
  * @param win The window to lower
  * 
  * Lower window @p win
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_lower(Ecore_X_Window win)
@@ -364,7 +350,6 @@
  * @param y Y
  * 
  * Reparent @p win to the parent @p new_parent at @p x, @p y
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_reparent(Ecore_X_Window win, Ecore_X_Window new_parent, int x, int y)
@@ -377,7 +362,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_size_get(Ecore_X_Window win, int *w, int *h)
@@ -403,7 +387,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_cursor_show(Ecore_X_Window win, int show)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_window_prop.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- ecore_x_window_prop.c       15 Feb 2004 22:33:55 -0000      1.35
+++ ecore_x_window_prop.c       20 Feb 2004 07:06:29 -0000      1.36
@@ -10,7 +10,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_property_set(Ecore_X_Window win, Ecore_X_Atom property, 
Ecore_X_Atom type, int size, void *data, int number)
@@ -39,7 +38,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_window_prop_property_get(Ecore_X_Window win, Ecore_X_Atom property, 
Ecore_X_Atom type, int size, unsigned char **data, int *num)
@@ -104,7 +102,6 @@
  * @param data The data
  *
  * Send a property notify to a window.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_property_notify(Ecore_X_Window win, const char *type, long *data)
@@ -137,7 +134,6 @@
  * @param str The string
  * 
  * Set a window string property
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_string_set(Ecore_X_Window win, Ecore_X_Atom type, char *str)
@@ -158,7 +154,6 @@
  * @param type The property
  * 
  * Return window string property of a window. String must be free'd when done.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 char *
 ecore_x_window_prop_string_get(Ecore_X_Window win, Ecore_X_Atom type)
@@ -197,7 +192,6 @@
  * @param t The title string
  * 
  * Set a window title
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_title_set(Ecore_X_Window win, const char *t)
@@ -221,7 +215,6 @@
  * @return The windows title string
  * 
  * Return the title of a window. String must be free'd when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 char *
 ecore_x_window_prop_title_get(Ecore_X_Window win)
@@ -239,7 +232,6 @@
  * @param t The command string
  * 
  * Set a window command
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_command_set(Ecore_X_Window win, int argc, char **argv)
@@ -253,7 +245,6 @@
  * @return The windows command string
  * 
  * Return the command of a window. String must be free'd when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_command_get(Ecore_X_Window win, int *argc, char ***argv)
@@ -269,7 +260,6 @@
  * @param t The visible title string
  * 
  * Set a window visible title
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_visible_title_set(Ecore_X_Window win, const char *t)
@@ -284,7 +274,6 @@
  * @return The windows visible title string
  * 
  * Return the visible title of a window. String must be free'd when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 char *
 ecore_x_window_prop_visible_title_get(Ecore_X_Window win)
@@ -301,7 +290,6 @@
  * @param t The icon name string
  * 
  * Set a window icon name
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_icon_name_set(Ecore_X_Window win, const char *t)
@@ -317,7 +305,6 @@
  * @return The windows icon name string
  * 
  * Return the icon name of a window. String must be free'd when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 char *
 ecore_x_window_prop_icon_name_get(Ecore_X_Window win)
@@ -335,7 +322,6 @@
  * @param t The visible icon name string
  * 
  * Set a window visible icon name
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_visible_icon_name_set(Ecore_X_Window win, const char *t)
@@ -350,7 +336,6 @@
  * @return The windows visible icon name string
  * 
  * Return the visible icon name of a window. String must be free'd when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 char *
 ecore_x_window_prop_visible_icon_name_get(Ecore_X_Window win)
@@ -367,7 +352,6 @@
  * @return The windows client machine string
  * 
  * Return the client machine of a window. String must be free'd when done with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 char *
 ecore_x_window_prop_client_machine_get(Ecore_X_Window win)
@@ -384,7 +368,6 @@
  * @return The windows process id
  * 
  * Return the process id of a window.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 pid_t
 ecore_x_window_prop_pid_get(Ecore_X_Window win)
@@ -410,7 +393,6 @@
  * @param c The class string
  * 
  * Set a window name * class
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_name_class_set(Ecore_X_Window win, const char *n, const char *c)
@@ -433,7 +415,6 @@
  * 
  * Get a windows name and class property. strings must be free'd when done 
  * with.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_name_class_get(Ecore_X_Window win, char **n, char **c)
@@ -463,7 +444,6 @@
  * @param protocol The protocol to enable/disable
  * @param on On/Off
  * 
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_protocol_set(Ecore_X_Window win,
@@ -532,7 +512,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_min_size_set(Ecore_X_Window win, int w, int h)
@@ -552,7 +531,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_max_size_set(Ecore_X_Window win, int w, int h)
@@ -572,7 +550,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_base_size_set(Ecore_X_Window win, int w, int h)
@@ -592,7 +569,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_step_size_set(Ecore_X_Window win, int x, int y)
@@ -612,7 +588,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_xy_set(Ecore_X_Window win, int x, int y)
@@ -696,7 +671,6 @@
  *
  * @return 1 if the input mode could be set, else 0
  *
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_window_prop_initial_state_set(Ecore_X_Window win, Ecore_X_Window_State_Hint 
state)
@@ -735,7 +709,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_borderless_set(Ecore_X_Window win, int borderless)
@@ -768,7 +741,6 @@
  * ECORE_X_WINDOW_LAYER_BELOW  - for windows to be stacked below
  * ECORE_X_WINDOW_LAYER_ABOVE  - for windows to be stacked on top
  * ECORE_X_WINDOW_LAYER_NORMAL - for windows to be put in the default layer
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_window_prop_layer_set(Ecore_X_Window win, int layer)
@@ -798,7 +770,6 @@
  * @param win The window whose withdrawn state is set.
  * @param withdrawn The window's new withdrawn state.
  *
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_withdrawn_set(Ecore_X_Window win, int withdrawn)
@@ -832,7 +803,6 @@
  * @param desktop The desktop number.
  *
  * Request the window manager to change this windows desktop.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_desktop_request(Ecore_X_Window win, long desktop)
@@ -886,7 +856,6 @@
  * @param desktop The desktop number.
  *
  * Used by the window manager, or client prior mapping, to set window desktop.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_desktop_set(Ecore_X_Window win, long desktop)
@@ -900,7 +869,6 @@
  * @param win The Window
  *
  * Get the current desktop of a window
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 long
 ecore_x_window_prop_desktop_get(Ecore_X_Window win)
@@ -953,7 +921,6 @@
  * @param type The Type
  *
  * Set a windows type.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_window_type_set(Ecore_X_Window win, Ecore_X_Window_Type type)
@@ -974,7 +941,6 @@
  * @param type The Type
  *
  * Change a windows type.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_window_type_set(Ecore_X_Window win, Ecore_X_Atom type)
@@ -1037,7 +1003,6 @@
  * @param s The state to be set for this window
  *
  * Adds the state to the window's properties if not already included.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_state_set(Ecore_X_Window win, Ecore_X_Window_State s)
@@ -1086,7 +1051,6 @@
  *
  * This function will look up the window's properties to determine
  * if a particular state is set for that window.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int
 ecore_x_window_prop_state_isset(Ecore_X_Window win, Ecore_X_Window_State s)
@@ -1125,7 +1089,6 @@
  *
  * Checks if the specified state is set for the window, and if so, deletes
  * that state from the window's properties.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_state_unset(Ecore_X_Window win, Ecore_X_Window_State s)
@@ -1170,7 +1133,6 @@
  * @param win The Window
  *
  * Set a window as a splash type.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_window_type_splash_set(Ecore_X_Window win)
@@ -1183,7 +1145,6 @@
  * @param win The Window
  *
  * Set a window as a dialog type.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_window_type_dialog_set(Ecore_X_Window win)
@@ -1196,7 +1157,6 @@
  * @param win The Window
  *
  * Set a window as a normal type.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_prop_window_type_normal_set(Ecore_X_Window win)
@@ -1215,7 +1175,6 @@
  * a compositing manager is running. This hint is still pending approval
  * as part of the EWMH specification. The value supplied should be an
  * integer between 0 and 255, with 255 representing full opacity.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void ecore_x_window_prop_window_opacity_set(Ecore_X_Window win, int opacity)
 {
@@ -1238,7 +1197,6 @@
  * @param win The window whose opacity is being requested
  * @return An int between 0 and 255 representing the window's opacity value,
  * or -1 if the property is not found.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 int ecore_x_window_prop_window_opacity_get(Ecore_X_Window win)
 {
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_window_shape.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_x_window_shape.c      23 Sep 2003 08:09:32 -0000      1.2
+++ ecore_x_window_shape.c      20 Feb 2004 07:06:29 -0000      1.3
@@ -6,7 +6,6 @@
  * To be documented.
  *
  * FIXME: To be fixed.
- * <hr><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  */
 void
 ecore_x_window_shape_mask_set(Ecore_X_Window win, Ecore_X_Pixmap mask)




-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to