1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD 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
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gio.ConverterOutputStream;
26 
27 private import gio.Converter;
28 private import gio.ConverterIF;
29 private import gio.FilterOutputStream;
30 private import gio.OutputStream;
31 private import gio.PollableOutputStreamIF;
32 private import gio.PollableOutputStreamT;
33 private import glib.ConstructionException;
34 private import gobject.ObjectG;
35 private import gtkc.gio;
36 public  import gtkc.giotypes;
37 
38 
39 /**
40  * Converter output stream implements #GOutputStream and allows
41  * conversion of data of various types during reading.
42  * 
43  * As of GLib 2.34, #GConverterOutputStream implements
44  * #GPollableOutputStream.
45  */
46 public class ConverterOutputStream : FilterOutputStream, PollableOutputStreamIF
47 {
48 	/** the main Gtk struct */
49 	protected GConverterOutputStream* gConverterOutputStream;
50 
51 	/** Get the main Gtk struct */
52 	public GConverterOutputStream* getConverterOutputStreamStruct()
53 	{
54 		return gConverterOutputStream;
55 	}
56 
57 	/** the main Gtk struct as a void* */
58 	protected override void* getStruct()
59 	{
60 		return cast(void*)gConverterOutputStream;
61 	}
62 
63 	protected override void setStruct(GObject* obj)
64 	{
65 		gConverterOutputStream = cast(GConverterOutputStream*)obj;
66 		super.setStruct(obj);
67 	}
68 
69 	/**
70 	 * Sets our main struct and passes it to the parent class.
71 	 */
72 	public this (GConverterOutputStream* gConverterOutputStream, bool ownedRef = false)
73 	{
74 		this.gConverterOutputStream = gConverterOutputStream;
75 		super(cast(GFilterOutputStream*)gConverterOutputStream, ownedRef);
76 	}
77 
78 	// add the PollableOutputStream capabilities
79 	mixin PollableOutputStreamT!(GConverterOutputStream);
80 
81 	/**
82 	 */
83 
84 	public static GType getType()
85 	{
86 		return g_converter_output_stream_get_type();
87 	}
88 
89 	/**
90 	 * Creates a new converter output stream for the @base_stream.
91 	 *
92 	 * Params:
93 	 *     baseStream = a #GOutputStream
94 	 *     converter = a #GConverter
95 	 *
96 	 * Return: a new #GOutputStream.
97 	 *
98 	 * Throws: ConstructionException GTK+ fails to create the object.
99 	 */
100 	public this(OutputStream baseStream, ConverterIF converter)
101 	{
102 		auto p = g_converter_output_stream_new((baseStream is null) ? null : baseStream.getOutputStreamStruct(), (converter is null) ? null : converter.getConverterStruct());
103 		
104 		if(p is null)
105 		{
106 			throw new ConstructionException("null returned by new");
107 		}
108 		
109 		this(cast(GConverterOutputStream*) p, true);
110 	}
111 
112 	/**
113 	 * Gets the #GConverter that is used by @converter_stream.
114 	 *
115 	 * Return: the converter of the converter output stream
116 	 *
117 	 * Since: 2.24
118 	 */
119 	public ConverterIF getConverter()
120 	{
121 		auto p = g_converter_output_stream_get_converter(gConverterOutputStream);
122 		
123 		if(p is null)
124 		{
125 			return null;
126 		}
127 		
128 		return ObjectG.getDObject!(Converter, ConverterIF)(cast(GConverter*) p);
129 	}
130 }