[atk] docs: Remove documentation from atkutil.h



commit f487e96bc159f47cd331e458bb196e23ced11f68
Author: Alejandro PiÃeiro <apinheiro igalia com>
Date:   Mon Sep 5 16:24:15 2011 +0200

    docs: Remove documentation from atkutil.h
    
    Real documentation is already on atkutil.c (and used by gtk-doc), so
    it doesn't make sense to have it replicated on the header.

 atk/atkutil.h |   58 ---------------------------------------------------------
 1 files changed, 0 insertions(+), 58 deletions(-)
---
diff --git a/atk/atkutil.h b/atk/atkutil.h
index 20eddc8..6a527fe 100755
--- a/atk/atkutil.h
+++ b/atk/atkutil.h
@@ -166,79 +166,21 @@ typedef enum {
   ATK_XY_WINDOW
 }AtkCoordType;
 
-/*
- * Adds the specified function to the list of functions to be called
- * when an object receives focus.
- */
 guint    atk_add_focus_tracker     (AtkEventListener      focus_tracker);
-
-/*
- * Removes the specified focus tracker from the list of function
- * to be called when any object receives focus
- */
 void     atk_remove_focus_tracker  (guint                tracker_id);
-
-/*
- * atk_focus_tracker_init:
- * @init: An #AtkEventListenerInit function to be called
- * prior to any focus-tracking requests.
- *
- * Specifies the function to be called for focus tracker initialization.
- * removal. This function should be called by an implementation of the
- * ATK interface if any specific work needs to be done to enable
- * focus tracking.
- */
 void     atk_focus_tracker_init    (AtkEventListenerInit  init);
-
-/*
- * Cause the focus tracker functions which have been specified to be
- * executed for the object.
- */
 void     atk_focus_tracker_notify  (AtkObject            *object);
-
-/*
- * Adds the specified function to the list of functions to be called
- * when an event of type event_type occurs.
- */
 guint	atk_add_global_event_listener (GSignalEmissionHook listener,
 				       const gchar        *event_type);
-
-/*
- * Removes the specified event listener
- */
 void	atk_remove_global_event_listener (guint listener_id);
-
-/*
- * Adds the specified function to the list of functions to be called
- * when an keyboard event occurs.
- */
 guint	atk_add_key_event_listener (AtkKeySnoopFunc listener, gpointer data);
-
-/*
- * Removes the specified event listener
- */
 void	atk_remove_key_event_listener (guint listener_id);
 
-/*
- * Returns the root accessible container for the current application.
- */
 AtkObject* atk_get_root(void);
-
 AtkObject* atk_get_focus_object (void);
 
-/*
- * Returns name string for the GUI toolkit.
- */
 const gchar *atk_get_toolkit_name (void);
-
-/*
- * Returns version string for the GUI toolkit.
- */
 const gchar *atk_get_toolkit_version (void);
-
-/*
- * Gets the current version of ATK
- */
 const gchar *atk_get_version (void);
 
 /* --- GType boilerplate --- */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]