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.DeviceProviderClass; 26 27 private import glib.Str; 28 private import gstreamerc.gstreamer; 29 public import gstreamerc.gstreamertypes; 30 31 32 /** 33 * The structure of the base #GstDeviceProviderClass 34 * 35 * Since: 1.4 36 */ 37 public class DeviceProviderClass 38 { 39 /** the main Gtk struct */ 40 protected GstDeviceProviderClass* gstDeviceProviderClass; 41 protected bool ownedRef; 42 43 /** Get the main Gtk struct */ 44 public GstDeviceProviderClass* getDeviceProviderClassStruct() 45 { 46 return gstDeviceProviderClass; 47 } 48 49 /** the main Gtk struct as a void* */ 50 protected void* getStruct() 51 { 52 return cast(void*)gstDeviceProviderClass; 53 } 54 55 /** 56 * Sets our main struct and passes it to the parent class. 57 */ 58 public this (GstDeviceProviderClass* gstDeviceProviderClass, bool ownedRef = false) 59 { 60 this.gstDeviceProviderClass = gstDeviceProviderClass; 61 this.ownedRef = ownedRef; 62 } 63 64 65 /** 66 * Set @key with @value as metadata in @klass. 67 * 68 * Params: 69 * key = the key to set 70 * value = the value to set 71 * 72 * Since: 1.4 73 */ 74 public void addMetadata(string key, string value) 75 { 76 gst_device_provider_class_add_metadata(gstDeviceProviderClass, Str.toStringz(key), Str.toStringz(value)); 77 } 78 79 /** 80 * Set @key with @value as metadata in @klass. 81 * 82 * Same as gst_device_provider_class_add_metadata(), but @value must be a static string 83 * or an inlined string, as it will not be copied. (GStreamer plugins will 84 * be made resident once loaded, so this function can be used even from 85 * dynamically loaded plugins.) 86 * 87 * Params: 88 * key = the key to set 89 * value = the value to set 90 * 91 * Since: 1.4 92 */ 93 public void addStaticMetadata(string key, string value) 94 { 95 gst_device_provider_class_add_static_metadata(gstDeviceProviderClass, Str.toStringz(key), Str.toStringz(value)); 96 } 97 98 /** 99 * Get metadata with @key in @klass. 100 * 101 * Params: 102 * key = the key to get 103 * 104 * Return: the metadata for @key. 105 * 106 * Since: 1.4 107 */ 108 public string getMetadata(string key) 109 { 110 return Str.toString(gst_device_provider_class_get_metadata(gstDeviceProviderClass, Str.toStringz(key))); 111 } 112 113 /** 114 * Sets the detailed information for a #GstDeviceProviderClass. 115 * <note>This function is for use in _class_init functions only.</note> 116 * 117 * Params: 118 * longname = The long English name of the device provider. E.g. "File Sink" 119 * classification = String describing the type of device provider, as an 120 * unordered list separated with slashes ('/'). See draft-klass.txt of the 121 * design docs 122 * for more details and common types. E.g: "Sink/File" 123 * description = Sentence describing the purpose of the device provider. 124 * E.g: "Write stream to a file" 125 * author = Name and contact details of the author(s). Use \n to separate 126 * multiple author metadata. E.g: "Joe Bloggs <joe.blogs at foo.com>" 127 * 128 * Since: 1.4 129 */ 130 public void setMetadata(string longname, string classification, string description, string author) 131 { 132 gst_device_provider_class_set_metadata(gstDeviceProviderClass, Str.toStringz(longname), Str.toStringz(classification), Str.toStringz(description), Str.toStringz(author)); 133 } 134 135 /** 136 * Sets the detailed information for a #GstDeviceProviderClass. 137 * <note>This function is for use in _class_init functions only.</note> 138 * 139 * Same as gst_device_provider_class_set_metadata(), but @longname, @classification, 140 * @description, and @author must be static strings or inlined strings, as 141 * they will not be copied. (GStreamer plugins will be made resident once 142 * loaded, so this function can be used even from dynamically loaded plugins.) 143 * 144 * Params: 145 * longname = The long English name of the element. E.g. "File Sink" 146 * classification = String describing the type of element, as 147 * an unordered list separated with slashes ('/'). See draft-klass.txt of the 148 * design docs for more details and common types. E.g: "Sink/File" 149 * description = Sentence describing the purpose of the 150 * element. E.g: "Write stream to a file" 151 * author = Name and contact details of the author(s). Use \n 152 * to separate multiple author metadata. E.g: "Joe Bloggs <joe.blogs at 153 * foo.com>" 154 * 155 * Since: 1.4 156 */ 157 public void setStaticMetadata(string longname, string classification, string description, string author) 158 { 159 gst_device_provider_class_set_static_metadata(gstDeviceProviderClass, Str.toStringz(longname), Str.toStringz(classification), Str.toStringz(description), Str.toStringz(author)); 160 } 161 }