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 gstreamer.TocSetterIF; 26 27 private import gobject.ObjectG; 28 private import gstreamer.Toc; 29 private import gstreamerc.gstreamer; 30 public import gstreamerc.gstreamertypes; 31 32 33 /** 34 * Element interface that allows setting of the TOC. 35 * 36 * Elements that support some kind of chapters or editions (or tracks like in 37 * the FLAC cue sheet) will implement this interface. 38 * 39 * If you just want to retrieve the TOC in your application then all you 40 * need to do is watch for TOC messages on your pipeline's bus (or you can 41 * perform TOC query). This interface is only for setting TOC data, not for 42 * extracting it. To set TOC from the application, find proper tocsetter element 43 * and set TOC using gst_toc_setter_set_toc(). 44 * 45 * Elements implementing the #GstTocSetter interface can extend existing TOC 46 * by getting extend UID for that (you can use gst_toc_find_entry() to retrieve it) 47 * with any TOC entries received from downstream. 48 */ 49 public interface TocSetterIF{ 50 /** Get the main Gtk struct */ 51 public GstTocSetter* getTocSetterStruct(); 52 53 /** the main Gtk struct as a void* */ 54 protected void* getStruct(); 55 56 /** 57 */ 58 59 /** 60 * Return current TOC the setter uses. The TOC should not be 61 * modified without making it writable first. 62 * 63 * Return: TOC set, or %NULL. Unref with 64 * gst_toc_unref() when no longer needed 65 */ 66 public Toc getToc(); 67 68 /** 69 * Reset the internal TOC. Elements should call this from within the 70 * state-change handler. 71 */ 72 public void reset(); 73 74 /** 75 * Set the given TOC on the setter. Previously set TOC will be 76 * unreffed before setting a new one. 77 * 78 * Params: 79 * toc = a #GstToc to set. 80 */ 81 public void setToc(Toc toc); 82 }