Blame atk/atkstreamablecontent.h

Packit Service ef73c4
/* ATK -  Accessibility Toolkit
Packit Service ef73c4
 * Copyright 2001 Sun Microsystems Inc.
Packit Service ef73c4
 *
Packit Service ef73c4
 * This library is free software; you can redistribute it and/or
Packit Service ef73c4
 * modify it under the terms of the GNU Library General Public
Packit Service ef73c4
 * License as published by the Free Software Foundation; either
Packit Service ef73c4
 * version 2 of the License, or (at your option) any later version.
Packit Service ef73c4
 *
Packit Service ef73c4
 * This library is distributed in the hope that it will be useful,
Packit Service ef73c4
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service ef73c4
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service ef73c4
 * Library General Public License for more details.
Packit Service ef73c4
 *
Packit Service ef73c4
 * You should have received a copy of the GNU Library General Public
Packit Service ef73c4
 * License along with this library; if not, write to the
Packit Service ef73c4
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit Service ef73c4
 * Boston, MA 02111-1307, USA.
Packit Service ef73c4
 */
Packit Service ef73c4
Packit Service ef73c4
#ifndef __ATK_STREAMABLE_CONTENT_H__
Packit Service ef73c4
#define __ATK_STREAMABLE_CONTENT_H__
Packit Service ef73c4
Packit Service ef73c4
#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
Packit Service ef73c4
#error "Only <atk/atk.h> can be included directly."
Packit Service ef73c4
#endif
Packit Service ef73c4
Packit Service ef73c4
#include <atk/atkobject.h>
Packit Service ef73c4
Packit Service ef73c4
G_BEGIN_DECLS
Packit Service ef73c4
Packit Service ef73c4
#define ATK_TYPE_STREAMABLE_CONTENT           (atk_streamable_content_get_type ())
Packit Service ef73c4
#define ATK_IS_STREAMABLE_CONTENT(obj)        G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_STREAMABLE_CONTENT)
Packit Service ef73c4
#define ATK_STREAMABLE_CONTENT(obj)           G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_STREAMABLE_CONTENT, AtkStreamableContent)
Packit Service ef73c4
#define ATK_STREAMABLE_CONTENT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_STREAMABLE_CONTENT, AtkStreamableContentIface))
Packit Service ef73c4
Packit Service ef73c4
#ifndef _TYPEDEF_ATK_STREAMABLE_CONTENT
Packit Service ef73c4
#define _TYPEDEF_ATK_STREAMABLE_CONTENT
Packit Service ef73c4
typedef struct _AtkStreamableContent AtkStreamableContent;
Packit Service ef73c4
#endif
Packit Service ef73c4
typedef struct _AtkStreamableContentIface AtkStreamableContentIface;
Packit Service ef73c4
Packit Service ef73c4
struct _AtkStreamableContentIface
Packit Service ef73c4
{
Packit Service ef73c4
  GTypeInterface parent;
Packit Service ef73c4
Packit Service ef73c4
  /*
Packit Service ef73c4
   * Get the number of mime types supported by this object
Packit Service ef73c4
   */
Packit Service ef73c4
  gint                      (* get_n_mime_types)  (AtkStreamableContent     *streamable);
Packit Service ef73c4
  /*
Packit Service ef73c4
   * Gets the specified mime type supported by this object.
Packit Service ef73c4
   * The mime types are 0-based so the first mime type is 
Packit Service ef73c4
   * at index 0, the second at index 1 and so on.  The mime-type
Packit Service ef73c4
   * at index 0 should be considered the "default" data type for the stream.
Packit Service ef73c4
   *
Packit Service ef73c4
   * This assumes that the strings for the mime types are stored in the
Packit Service ef73c4
   * AtkStreamableContent. Alternatively the const could be removed
Packit Service ef73c4
   * and the caller would be responsible for calling g_free() on the
Packit Service ef73c4
   * returned value.
Packit Service ef73c4
   */
Packit Service ef73c4
  const gchar*              (* get_mime_type)     (AtkStreamableContent     *streamable,
Packit Service ef73c4
                                                   gint                     i);
Packit Service ef73c4
  /*
Packit Service ef73c4
   * One possible implementation for this method is that it constructs the
Packit Service ef73c4
   * content appropriate for the mime type and then creates a temporary
Packit Service ef73c4
   * file containing the content, opens the file and then calls
Packit Service ef73c4
   * g_io_channel_unix_new_fd().
Packit Service ef73c4
   */
Packit Service ef73c4
  GIOChannel*               (* get_stream)        (AtkStreamableContent     *streamable,
Packit Service ef73c4
                                                   const gchar              *mime_type);
Packit Service ef73c4
Packit Service ef73c4
/*
Packit Service ef73c4
 * Returns a string representing a URI in IETF standard format
Packit Service ef73c4
 * (see http://www.ietf.org/rfc/rfc2396.txt) from which the object's content
Packit Service ef73c4
 * may be streamed in the specified mime-type.
Packit Service ef73c4
 * If mime_type is NULL, the URI for the default (and possibly only) mime-type is
Packit Service ef73c4
 * returned.
Packit Service ef73c4
 *
Packit Service ef73c4
 * returns NULL if the mime-type is not supported, or if no URI can be 
Packit Service ef73c4
 * constructed.  Note that it is possible for get_uri to return NULL but for
Packit Service ef73c4
 * get_stream to work nonetheless, since not all GIOChannels connect to URIs.
Packit Service ef73c4
 */
Packit Service ef73c4
    const  gchar*           (* get_uri)           (AtkStreamableContent     *streamable,
Packit Service ef73c4
                                                   const gchar              *mime_type);
Packit Service ef73c4
Packit Service ef73c4
Packit Service ef73c4
  AtkFunction               pad1;
Packit Service ef73c4
  AtkFunction               pad2;
Packit Service ef73c4
  AtkFunction               pad3;
Packit Service ef73c4
};
Packit Service ef73c4
ATK_AVAILABLE_IN_ALL
Packit Service ef73c4
GType                  atk_streamable_content_get_type (void);
Packit Service ef73c4
Packit Service ef73c4
ATK_AVAILABLE_IN_ALL
Packit Service ef73c4
gint                   atk_streamable_content_get_n_mime_types (AtkStreamableContent     *streamable);
Packit Service ef73c4
Packit Service ef73c4
ATK_AVAILABLE_IN_ALL
Packit Service ef73c4
const gchar*           atk_streamable_content_get_mime_type    (AtkStreamableContent     *streamable,
Packit Service ef73c4
                                                                gint                     i);
Packit Service ef73c4
ATK_AVAILABLE_IN_ALL
Packit Service ef73c4
GIOChannel*             atk_streamable_content_get_stream       (AtkStreamableContent     *streamable,
Packit Service ef73c4
                                                                 const gchar              *mime_type);
Packit Service ef73c4
Packit Service ef73c4
ATK_AVAILABLE_IN_ALL
Packit Service ef73c4
const gchar*           atk_streamable_content_get_uri          (AtkStreamableContent     *streamable,
Packit Service ef73c4
                                                                const gchar              *mime_type);
Packit Service ef73c4
Packit Service ef73c4
G_END_DECLS
Packit Service ef73c4
Packit Service ef73c4
#endif /* __ATK_STREAMABLE_CONTENT_H__ */