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.ParamSpecFraction; 26 27 private import glib.ConstructionException; 28 private import glib.Str; 29 private import gstreamerc.gstreamer; 30 public import gstreamerc.gstreamertypes; 31 32 33 /** 34 * A GParamSpec derived structure that contains the meta data for fractional 35 * properties. 36 */ 37 public class ParamSpecFraction 38 { 39 /** the main Gtk struct */ 40 protected GstParamSpecFraction* gstParamSpecFraction; 41 42 /** Get the main Gtk struct */ 43 public GstParamSpecFraction* getParamSpecFractionStruct() 44 { 45 return gstParamSpecFraction; 46 } 47 48 /** the main Gtk struct as a void* */ 49 protected void* getStruct() 50 { 51 return cast(void*)gstParamSpecFraction; 52 } 53 54 /** 55 * Sets our main struct and passes it to the parent class. 56 */ 57 public this (GstParamSpecFraction* gstParamSpecFraction) 58 { 59 this.gstParamSpecFraction = gstParamSpecFraction; 60 } 61 62 /** 63 * This function creates a fraction GParamSpec for use by objects/elements 64 * that want to expose properties of fraction type. This function is typically 65 * used in connection with g_object_class_install_property() in a GObjects's 66 * instance_init function. 67 * Params: 68 * name = canonical name of the property specified 69 * nick = nick name for the property specified 70 * blurb = description of the property specified 71 * minNum = minimum value (fraction numerator) 72 * minDenom = minimum value (fraction denominator) 73 * maxNum = maximum value (fraction numerator) 74 * maxDenom = maximum value (fraction denominator) 75 * defaultNum = default value (fraction numerator) 76 * defaultDenom = default value (fraction denominator) 77 * flags = flags for the property specified 78 * Returns: a newly created parameter specification. [transfer full] 79 */ 80 public this(string name, string nick, string blurb, int minNum, int minDenom, int maxNum, int maxDenom, int defaultNum, int defaultDenom, GParamFlags flags) 81 { 82 auto p = gst_param_spec_fraction(Str.toStringz(name), Str.toStringz(nick), Str.toStringz(blurb), minNum, minDenom, maxNum, maxDenom, defaultNum, defaultDenom, flags); 83 if(p is null) 84 { 85 throw new ConstructionException("null returned by gst_param_spec_fraction"); 86 } 87 this(cast(GstParamSpecFraction*) p); 88 } 89 90 /** 91 */ 92 }