/* * Licensed under the GNU Lesser General Public License Version 3 * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the license, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ // generated automatically - do not change module gio.FilterOutputStream; private import gi.gio; public import gi.giotypes; private import gio.OutputStream; private import gobject.ObjectG; /** * Base class for output stream implementations that perform some * kind of filtering operation on a base stream. Typical examples * of filtering operations are character set conversion, compression * and byte order flipping. */ public class FilterOutputStream : OutputStream { /** the main Gtk struct */ protected GFilterOutputStream* gFilterOutputStream; /** Get the main Gtk struct */ public GFilterOutputStream* getFilterOutputStreamStruct() { return gFilterOutputStream; } /** the main Gtk struct as a void* */ protected override void* getStruct() { return cast(void*)gFilterOutputStream; } protected override void setStruct(GObject* obj) { gFilterOutputStream = cast(GFilterOutputStream*)obj; super.setStruct(obj); } /** * Sets our main struct and passes it to the parent class. */ public this (GFilterOutputStream* gFilterOutputStream, bool ownedRef = false) { this.gFilterOutputStream = gFilterOutputStream; super(cast(GOutputStream*)gFilterOutputStream, ownedRef); } /** */ public static GType getType() { return g_filter_output_stream_get_type(); } /** * Gets the base stream for the filter stream. * * Returns: a #GOutputStream. */ public OutputStream getBaseStream() { auto p = g_filter_output_stream_get_base_stream(gFilterOutputStream); if(p is null) { return null; } return ObjectG.getDObject!(OutputStream)(cast(GOutputStream*) p); } /** * Returns whether the base stream will be closed when @stream is * closed. * * Returns: %TRUE if the base stream will be closed. */ public bool getCloseBaseStream() { return g_filter_output_stream_get_close_base_stream(gFilterOutputStream) != 0; } /** * Sets whether the base stream will be closed when @stream is closed. * * Params: * closeBase = %TRUE to close the base stream. */ public void setCloseBaseStream(bool closeBase) { g_filter_output_stream_set_close_base_stream(gFilterOutputStream, closeBase); } }