You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

90 lines
2.9 KiB

  1. /* ATK - Accessibility Toolkit
  2. * Copyright 2007 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_MISC_H__
  23. #define __ATK_MISC_H__
  24. #include <glib-object.h>
  25. G_BEGIN_DECLS
  26. #define ATK_TYPE_MISC (atk_misc_get_type ())
  27. #define ATK_IS_MISC(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_MISC)
  28. #define ATK_MISC(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_MISC, AtkMisc)
  29. #define ATK_MISC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_MISC, AtkMiscClass))
  30. #define ATK_IS_MISC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_MISC))
  31. #define ATK_MISC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_MISC, AtkMiscClass))
  32. #ifndef _TYPEDEF_ATK_MISC_
  33. #define _TYPEDEF_ATK_MISC_
  34. typedef struct _AtkMisc AtkMisc;
  35. typedef struct _AtkMiscClass AtkMiscClass;
  36. #endif
  37. struct _AtkMisc
  38. {
  39. GObject parent;
  40. };
  41. /*
  42. * Singleton instance - only the ATK implementation layer for
  43. * a given GUI toolkit/application instance should touch this
  44. * symbol directly.
  45. */
  46. extern AtkMisc *atk_misc_instance;
  47. struct _AtkMiscClass
  48. {
  49. GObjectClass parent;
  50. void (* threads_enter) (AtkMisc *misc);
  51. void (* threads_leave) (AtkMisc *misc);
  52. gpointer vfuncs[32]; /* future bincompat */
  53. };
  54. GType atk_misc_get_type (void);
  55. /*
  56. * Wrapper for thread lock, i.e. take the thread mutex for the GUI toolkit,
  57. * if one exists.
  58. * (This method is implemented by the toolkit ATK implementation layer;
  59. * for instance, for GTK+, GAIL implements this via GDK_THREADS_ENTER).
  60. */
  61. void atk_misc_threads_enter (AtkMisc *misc);
  62. /*
  63. * Wrapper for thread lock, i.e. release the thread mutex for the GUI toolkit,
  64. * if one exists.
  65. * (This method is implemented by the toolkit ATK implementation layer;
  66. * for instance, for GTK+, GAIL implements this via GDK_THREADS_LEAVE).
  67. */
  68. void atk_misc_threads_leave (AtkMisc *misc);
  69. /*
  70. * Obtain (singleton) instance of AtkMisc.
  71. */
  72. const AtkMisc *atk_misc_get_instance (void);
  73. G_END_DECLS
  74. #endif /* __ATK_MISC_H__ */