Revert "Revert "Merge remote-tracking branch 'origin/sandbox/mniesluchow/upstream_2_1...
[platform/upstream/atk.git] / atk / atkregistry.h
index b520fe4..2490940 100644 (file)
@@ -12,7 +12,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
 #include <glib-object.h>
 #include "atkobjectfactory.h"
 
-/**
- * SECTION:atkobjectregistry
- * @Short_description: An object used to store the GType of the
- * factories used to create an accessible object for an object of a
- * particular GType.
- * @Title:AtkObjectRegistry
- *
- * The AtkRegistry is normally used to create appropriate ATK "peers"
- * for user interface components.  Application developers usually need
- * only interact with the AtkRegistry by associating appropriate ATK
- * implementation classes with GObject classes via the
- * atk_registry_set_factory_type call, passing the appropriate GType
- * for application custom widget classes.
- */
-
 G_BEGIN_DECLS
 
 #define ATK_TYPE_REGISTRY                (atk_registry_get_type ())
@@ -65,15 +52,20 @@ typedef struct _AtkRegistry             AtkRegistry;
 typedef struct _AtkRegistryClass        AtkRegistryClass;
 
 
+ATK_AVAILABLE_IN_ALL
 GType             atk_registry_get_type         (void);
+ATK_AVAILABLE_IN_ALL
 void              atk_registry_set_factory_type (AtkRegistry *registry,
                                                  GType type,
                                                  GType factory_type);
+ATK_AVAILABLE_IN_ALL
 GType             atk_registry_get_factory_type (AtkRegistry *registry,
                                                 GType type);
+ATK_AVAILABLE_IN_ALL
 AtkObjectFactory* atk_registry_get_factory      (AtkRegistry *registry,
                                                  GType type);
 
+ATK_AVAILABLE_IN_ALL
 AtkRegistry*      atk_get_default_registry      (void);
 
 G_END_DECLS