Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

106 řádky
4.7 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_STREAMABLE_CONTENT_H__
  23. #define __ATK_STREAMABLE_CONTENT_H__
  24. #include <atk/atkobject.h>
  25. G_BEGIN_DECLS
  26. #define ATK_TYPE_STREAMABLE_CONTENT (atk_streamable_content_get_type ())
  27. #define ATK_IS_STREAMABLE_CONTENT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_STREAMABLE_CONTENT)
  28. #define ATK_STREAMABLE_CONTENT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_STREAMABLE_CONTENT, AtkStreamableContent)
  29. #define ATK_STREAMABLE_CONTENT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_STREAMABLE_CONTENT, AtkStreamableContentIface))
  30. #ifndef _TYPEDEF_ATK_STREAMABLE_CONTENT
  31. #define _TYPEDEF_ATK_STREAMABLE_CONTENT
  32. typedef struct _AtkStreamableContent AtkStreamableContent;
  33. #endif
  34. typedef struct _AtkStreamableContentIface AtkStreamableContentIface;
  35. struct _AtkStreamableContentIface
  36. {
  37. GTypeInterface parent;
  38. /*
  39. * Get the number of mime types supported by this object
  40. */
  41. gint (* get_n_mime_types) (AtkStreamableContent *streamable);
  42. /*
  43. * Gets the specified mime type supported by this object.
  44. * The mime types are 0-based so the first mime type is
  45. * at index 0, the second at index 1 and so on. The mime-type
  46. * at index 0 should be considered the "default" data type for the stream.
  47. *
  48. * This assumes that the strings for the mime types are stored in the
  49. * AtkStreamableContent. Alternatively the G_CONST_RETURN could be removed
  50. * and the caller would be responsible for calling g_free() on the
  51. * returned value.
  52. */
  53. G_CONST_RETURN gchar* (* get_mime_type) (AtkStreamableContent *streamable,
  54. gint i);
  55. /*
  56. * One possible implementation for this method is that it constructs the
  57. * content appropriate for the mime type and then creates a temporary
  58. * file containing the content, opens the file and then calls
  59. * g_io_channel_unix_new_fd().
  60. */
  61. GIOChannel* (* get_stream) (AtkStreamableContent *streamable,
  62. const gchar *mime_type);
  63. /*
  64. * Returns a string representing a URI in IETF standard format
  65. * (see http://www.ietf.org/rfc/rfc2396.txt) from which the object's content
  66. * may be streamed in the specified mime-type.
  67. * If mime_type is NULL, the URI for the default (and possibly only) mime-type is
  68. * returned.
  69. *
  70. * returns NULL if the mime-type is not supported, or if no URI can be
  71. * constructed. Note that it is possible for get_uri to return NULL but for
  72. * get_stream to work nonetheless, since not all GIOChannels connect to URIs.
  73. */
  74. G_CONST_RETURN gchar* (* get_uri) (AtkStreamableContent *streamable,
  75. const gchar *mime_type);
  76. AtkFunction pad1;
  77. AtkFunction pad2;
  78. AtkFunction pad3;
  79. };
  80. GType atk_streamable_content_get_type (void);
  81. gint atk_streamable_content_get_n_mime_types (AtkStreamableContent *streamable);
  82. G_CONST_RETURN gchar* atk_streamable_content_get_mime_type (AtkStreamableContent *streamable,
  83. gint i);
  84. GIOChannel* atk_streamable_content_get_stream (AtkStreamableContent *streamable,
  85. const gchar *mime_type);
  86. gchar* atk_streamable_content_get_uri (AtkStreamableContent *streamable,
  87. const gchar *mime_type);
  88. G_END_DECLS
  89. #endif /* __ATK_STREAMABLE_CONTENT_H__ */