1/* $Id: streamablecontent.hg,v 1.3 2004/01/19 19:48:36 murrayc Exp $ */
2
3/* Copyright (C) 2003 The gtkmm Development Team
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free
17 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20
21_DEFS(atkmm,atk)
22_PINCLUDE(glibmm/private/object_p.h)
23
24#include <glibmm/interface.h>
25#include <glibmm/iochannel.h>
26
27#ifndef DOXYGEN_SHOULD_SKIP_THIS
28extern "C"
29{
30  typedef struct _AtkStreamableContentIface AtkStreamableContentIface;
31  typedef struct _AtkStreamableContent      AtkStreamableContent;
32}
33#endif /* DOXYGEN_SHOULD_SKIP_THIS */
34
35
36namespace Atk
37{
38
39class Object;
40
41/** The ATK interface which provides access to streamable content.
42 */
43class StreamableContent : public Glib::Interface
44{
45  _CLASS_INTERFACE(StreamableContent, AtkStreamableContent, ATK_STREAMABLE_CONTENT, AtkStreamableContentIface)
46public:
47
48  _WRAP_METHOD(int get_n_mime_types() const, atk_streamable_content_get_n_mime_types)
49  _WRAP_METHOD(Glib::ustring get_mime_type(int i) const, atk_streamable_content_get_mime_type)
50  _WRAP_METHOD(Glib::RefPtr<Glib::IOChannel> get_stream(const Glib::ustring& mime_type), atk_streamable_content_get_stream)
51
52protected:
53  _WRAP_VFUNC(int get_n_mime_types() const, get_n_mime_types)
54  _WRAP_VFUNC(const gchar* get_mime_type(int i) const, get_mime_type)
55
56#m4 _CONVERSION(`const char*',`const Glib::ustring&',__GCHARP_TO_USTRING)
57  _WRAP_VFUNC(GIOChannel* get_stream(const Glib::ustring& mime_type), get_stream)
58};
59
60} // namespace Atk
61
62