Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

70 lignes
2.5 KiB

  1. /* ATK - Accessibility Toolkit
  2. * Copyright 2001 Sun Microsystems Inc.
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17. * Boston, MA 02111-1307, USA.
  18. */
  19. #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
  20. #error "Only <atk/atk.h> can be included directly."
  21. #endif
  22. #ifndef __ATK_REGISTRY_H__
  23. #define __ATK_REGISTRY_H__
  24. #include <glib-object.h>
  25. #include "atkobjectfactory.h"
  26. G_BEGIN_DECLS
  27. #define ATK_TYPE_REGISTRY (atk_registry_get_type ())
  28. #define ATK_REGISTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_REGISTRY, AtkRegistry))
  29. #define ATK_REGISTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_REGISTRY, AtkRegistryClass))
  30. #define ATK_IS_REGISTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_REGISTRY))
  31. #define ATK_IS_REGISTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_REGISTRY))
  32. #define ATK_REGISTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_REGISTRY, AtkRegistryClass))
  33. struct _AtkRegistry
  34. {
  35. GObject parent;
  36. GHashTable *factory_type_registry;
  37. GHashTable *factory_singleton_cache;
  38. };
  39. struct _AtkRegistryClass
  40. {
  41. GObjectClass parent_class;
  42. };
  43. typedef struct _AtkRegistry AtkRegistry;
  44. typedef struct _AtkRegistryClass AtkRegistryClass;
  45. GType atk_registry_get_type (void);
  46. void atk_registry_set_factory_type (AtkRegistry *registry,
  47. GType type,
  48. GType factory_type);
  49. GType atk_registry_get_factory_type (AtkRegistry *registry,
  50. GType type);
  51. AtkObjectFactory* atk_registry_get_factory (AtkRegistry *registry,
  52. GType type);
  53. AtkRegistry* atk_get_default_registry (void);
  54. G_END_DECLS
  55. #endif /* __ATK_REGISTRY_H__ */