/usr/include/d/gtkd-3/pango/PgCairoFontMap.d is in libgtkd-3-dev 3.7.5-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | /*
* 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.PgCairoFontMap;
private import cairo.ScaledFont;
private import glib.ConstructionException;
private import gobject.ObjectG;
public import gtkc.pangotypes;
private import pango.PgFontMap;
private import pango.c.functions;
public import pango.c.types;
/**
* #PangoCairoFontMap is an interface exported by font maps for
* use with Cairo. The actual type of the font map will depend
* on the particular font technology Cairo was compiled to use.
*
* Since: 1.10
*/
public class PgCairoFontMap : PgFontMap
{
/** the main Gtk struct */
protected PangoCairoFontMap* pangoCairoFontMap;
/** Get the main Gtk struct */
public PangoCairoFontMap* getPgCairoFontMapStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return pangoCairoFontMap;
}
/** the main Gtk struct as a void* */
protected override void* getStruct()
{
return cast(void*)pangoCairoFontMap;
}
protected override void setStruct(GObject* obj)
{
pangoCairoFontMap = cast(PangoCairoFontMap*)obj;
super.setStruct(obj);
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (PangoCairoFontMap* pangoCairoFontMap, bool ownedRef = false)
{
this.pangoCairoFontMap = pangoCairoFontMap;
super(cast(PangoFontMap*)pangoCairoFontMap, ownedRef);
}
/** */
public static GType getType()
{
return pango_cairo_font_get_type();
}
/**
* Gets a default #PangoCairoFontMap to use with Cairo.
*
* Note that the type of the returned object will depend
* on the particular font backend Cairo was compiled to use;
* You generally should only use the #PangoFontMap and
* #PangoCairoFontMap interfaces on the returned object.
*
* The default Cairo fontmap can be changed by using
* pango_cairo_font_map_set_default(). This can be used to
* change the Cairo font backend that the default fontmap
* uses for example.
*
* Note that since Pango 1.32.6, the default fontmap is per-thread.
* Each thread gets its own default fontmap. In this way,
* PangoCairo can be used safely from multiple threads.
*
* Returns: the default PangoCairo fontmap
* for the current thread. This object is owned by Pango and must not be freed.
*
* Since: 1.10
*/
public static PgFontMap getDefault()
{
auto p = pango_cairo_font_map_get_default();
if(p is null)
{
return null;
}
return ObjectG.getDObject!(PgFontMap)(cast(PangoFontMap*) p);
}
/**
* Creates a new #PangoCairoFontMap object; a fontmap is used
* to cache information about available fonts, and holds
* certain global parameters such as the resolution.
* In most cases, you can use pango_cairo_font_map_get_default()
* instead.
*
* Note that the type of the returned object will depend
* on the particular font backend Cairo was compiled to use;
* You generally should only use the #PangoFontMap and
* #PangoCairoFontMap interfaces on the returned object.
*
* You can override the type of backend returned by using an
* environment variable %PANGOCAIRO_BACKEND. Supported types,
* based on your build, are fc (fontconfig), win32, and coretext.
* If requested type is not available, NULL is returned. Ie.
* this is only useful for testing, when at least two backends
* are compiled in.
*
* Returns: the newly allocated #PangoFontMap,
* which should be freed with g_object_unref().
*
* Since: 1.10
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this()
{
auto p = pango_cairo_font_map_new();
if(p is null)
{
throw new ConstructionException("null returned by new");
}
this(cast(PangoCairoFontMap*) p, true);
}
/**
* Creates a new #PangoCairoFontMap object of the type suitable
* to be used with cairo font backend of type @fonttype.
*
* In most cases one should simply use @pango_cairo_font_map_new(),
* or in fact in most of those cases, just use
* @pango_cairo_font_map_get_default().
*
* Params:
* fonttype = desired #cairo_font_type_t
*
* Returns: the newly allocated
* #PangoFontMap of suitable type which should be freed
* with g_object_unref(), or %NULL if the requested
* cairo font backend is not supported / compiled in.
*
* Since: 1.18
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this(cairo_font_type_t fonttype)
{
auto p = pango_cairo_font_map_new_for_font_type(fonttype);
if(p is null)
{
throw new ConstructionException("null returned by new_for_font_type");
}
this(cast(PangoCairoFontMap*) p, true);
}
/**
* Gets the type of Cairo font backend that @fontmap uses.
*
* Returns: the #cairo_font_type_t cairo font backend type
*
* Since: 1.18
*/
public cairo_font_type_t getFontType()
{
return pango_cairo_font_map_get_font_type(cast(PangoCairoFontMap*)pangoCairoFontMap);
}
/**
* Gets the resolution for the fontmap. See pango_cairo_font_map_set_resolution()
*
* Returns: the resolution in "dots per inch"
*
* Since: 1.10
*/
public double getResolution()
{
return pango_cairo_font_map_get_resolution(cast(PangoCairoFontMap*)pangoCairoFontMap);
}
/**
* Sets a default #PangoCairoFontMap to use with Cairo.
*
* This can be used to change the Cairo font backend that the
* default fontmap uses for example. The old default font map
* is unreffed and the new font map referenced.
*
* Note that since Pango 1.32.6, the default fontmap is per-thread.
* This function only changes the default fontmap for
* the current thread. Default fontmaps of exisiting threads
* are not changed. Default fontmaps of any new threads will
* still be created using pango_cairo_font_map_new().
*
* A value of %NULL for @fontmap will cause the current default
* font map to be released and a new default font
* map to be created on demand, using pango_cairo_font_map_new().
*
* Since: 1.22
*/
public void setDefault()
{
pango_cairo_font_map_set_default(cast(PangoCairoFontMap*)pangoCairoFontMap);
}
/**
* Sets the resolution for the fontmap. This is a scale factor between
* points specified in a #PangoFontDescription and Cairo units. The
* default value is 96, meaning that a 10 point font will be 13
* units high. (10 * 96. / 72. = 13.3).
*
* Params:
* dpi = the resolution in "dots per inch". (Physical inches aren't actually
* involved; the terminology is conventional.)
*
* Since: 1.10
*/
public void setResolution(double dpi)
{
pango_cairo_font_map_set_resolution(cast(PangoCairoFontMap*)pangoCairoFontMap, dpi);
}
/**
* Gets the #cairo_scaled_font_t used by @font.
* The scaled font can be referenced and kept using
* cairo_scaled_font_reference().
*
* Returns: the #cairo_scaled_font_t used by @font,
* or %NULL if @font is %NULL.
*
* Since: 1.18
*/
public ScaledFont getScaledFont()
{
auto p = pango_cairo_font_get_scaled_font(cast(PangoCairoFont*)pangoCairoFontMap);
if(p is null)
{
return null;
}
return new ScaledFont(cast(cairo_scaled_font_t*) p);
}
}
|