1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/*
* This file is part of gtkD.
*
* gtkD 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, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module pango.PgColor;
private import glib.MemorySlice;
private import glib.Str;
private import gobject.ObjectG;
public import gtkc.pangotypes;
private import gtkd.Loader;
private import pango.c.functions;
public import pango.c.types;
/**
* The #PangoColor structure is used to
* represent a color in an uncalibrated RGB color-space.
*/
public final class PgColor
{
/** the main Gtk struct */
protected PangoColor* pangoColor;
protected bool ownedRef;
/** Get the main Gtk struct */
public PangoColor* getPgColorStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return pangoColor;
}
/** the main Gtk struct as a void* */
protected void* getStruct()
{
return cast(void*)pangoColor;
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (PangoColor* pangoColor, bool ownedRef = false)
{
this.pangoColor = pangoColor;
this.ownedRef = ownedRef;
}
~this ()
{
if ( Linker.isLoaded(LIBRARY_PANGO) && ownedRef )
pango_color_free(pangoColor);
}
/**
* value of red component
*/
public @property ushort red()
{
return pangoColor.red;
}
/** Ditto */
public @property void red(ushort value)
{
pangoColor.red = value;
}
/**
* value of green component
*/
public @property ushort green()
{
return pangoColor.green;
}
/** Ditto */
public @property void green(ushort value)
{
pangoColor.green = value;
}
/**
* value of blue component
*/
public @property ushort blue()
{
return pangoColor.blue;
}
/** Ditto */
public @property void blue(ushort value)
{
pangoColor.blue = value;
}
/** */
public static GType getType()
{
return pango_color_get_type();
}
/**
* Creates a copy of @src, which should be freed with
* pango_color_free(). Primarily used by language bindings,
* not that useful otherwise (since colors can just be copied
* by assignment in C).
*
* Returns: the newly allocated #PangoColor, which
* should be freed with pango_color_free(), or %NULL if
* @src was %NULL.
*/
public PgColor copy()
{
auto p = pango_color_copy(pangoColor);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(PgColor)(cast(PangoColor*) p, true);
}
/**
* Frees a color allocated by pango_color_copy().
*/
public void free()
{
pango_color_free(pangoColor);
ownedRef = false;
}
/**
* Fill in the fields of a color from a string specification. The
* string can either one of a large set of standard names. (Taken
* from the CSS <ulink url="http://dev.w3.org/csswg/css-color/#named-colors">specification</ulink>), or it can be a hexadecimal
* value in the
* form '#rgb' '#rrggbb' '#rrrgggbbb' or '#rrrrggggbbbb' where
* 'r', 'g' and 'b' are hex digits of the red, green, and blue
* components of the color, respectively. (White in the four
* forms is '#fff' '#ffffff' '#fffffffff' and '#ffffffffffff')
*
* Params:
* spec = a string specifying the new color
*
* Returns: %TRUE if parsing of the specifier succeeded,
* otherwise false.
*/
public bool parse(string spec)
{
return pango_color_parse(pangoColor, Str.toStringz(spec)) != 0;
}
/**
* Returns a textual specification of @color in the hexadecimal form
* <literal>#rrrrggggbbbb</literal>, where <literal>r</literal>,
* <literal>g</literal> and <literal>b</literal> are hex digits representing
* the red, green, and blue components respectively.
*
* Returns: a newly-allocated text string that must be freed with g_free().
*
* Since: 1.16
*/
public override string toString()
{
auto retStr = pango_color_to_string(pangoColor);
scope(exit) Str.freeString(retStr);
return Str.toString(retStr);
}
}
|