/usr/include/d/gtkd-3/gtk/FontButton.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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | /*
* 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 gtk.FontButton;
private import glib.ConstructionException;
private import glib.Str;
private import gobject.ObjectG;
private import gobject.Signals;
private import gtk.Button;
private import gtk.FontChooserIF;
private import gtk.FontChooserT;
private import gtk.Widget;
private import gtk.c.functions;
public import gtk.c.types;
public import gtkc.gtktypes;
private import std.algorithm;
/**
* The #GtkFontButton is a button which displays the currently selected
* font an allows to open a font chooser dialog to change the font.
* It is suitable widget for selecting a font in a preference dialog.
*
* # CSS nodes
*
* GtkFontButton has a single CSS node with name button and style class .font.
*/
public class FontButton : Button, FontChooserIF
{
/** the main Gtk struct */
protected GtkFontButton* gtkFontButton;
/** Get the main Gtk struct */
public GtkFontButton* getFontButtonStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return gtkFontButton;
}
/** the main Gtk struct as a void* */
protected override void* getStruct()
{
return cast(void*)gtkFontButton;
}
protected override void setStruct(GObject* obj)
{
gtkFontButton = cast(GtkFontButton*)obj;
super.setStruct(obj);
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (GtkFontButton* gtkFontButton, bool ownedRef = false)
{
this.gtkFontButton = gtkFontButton;
super(cast(GtkButton*)gtkFontButton, ownedRef);
}
// add the FontChooser capabilities
mixin FontChooserT!(GtkFontButton);
/** */
public static GType getType()
{
return gtk_font_button_get_type();
}
/**
* Creates a new font picker widget.
*
* Returns: a new font picker widget.
*
* Since: 2.4
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this()
{
auto p = gtk_font_button_new();
if(p is null)
{
throw new ConstructionException("null returned by new");
}
this(cast(GtkFontButton*) p);
}
/**
* Creates a new font picker widget.
*
* Params:
* fontname = Name of font to display in font chooser dialog
*
* Returns: a new font picker widget.
*
* Since: 2.4
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this(string fontname)
{
auto p = gtk_font_button_new_with_font(Str.toStringz(fontname));
if(p is null)
{
throw new ConstructionException("null returned by new_with_font");
}
this(cast(GtkFontButton*) p);
}
/**
* Retrieves the name of the currently selected font. This name includes
* style and size information as well. If you want to render something
* with the font, use this string with pango_font_description_from_string() .
* If you’re interested in peeking certain values (family name,
* style, size, weight) just query these properties from the
* #PangoFontDescription object.
*
* Returns: an internal copy of the font name which must not be freed.
*
* Since: 2.4
*/
public string getFontName()
{
return Str.toString(gtk_font_button_get_font_name(gtkFontButton));
}
/**
* Returns whether the font size will be shown in the label.
*
* Returns: whether the font size will be shown in the label.
*
* Since: 2.4
*/
public bool getShowSize()
{
return gtk_font_button_get_show_size(gtkFontButton) != 0;
}
/**
* Returns whether the name of the font style will be shown in the label.
*
* Returns: whether the font style will be shown in the label.
*
* Since: 2.4
*/
public bool getShowStyle()
{
return gtk_font_button_get_show_style(gtkFontButton) != 0;
}
/**
* Retrieves the title of the font chooser dialog.
*
* Returns: an internal copy of the title string which must not be freed.
*
* Since: 2.4
*/
public string getTitle()
{
return Str.toString(gtk_font_button_get_title(gtkFontButton));
}
/**
* Returns whether the selected font is used in the label.
*
* Returns: whether the selected font is used in the label.
*
* Since: 2.4
*/
public bool getUseFont()
{
return gtk_font_button_get_use_font(gtkFontButton) != 0;
}
/**
* Returns whether the selected size is used in the label.
*
* Returns: whether the selected size is used in the label.
*
* Since: 2.4
*/
public bool getUseSize()
{
return gtk_font_button_get_use_size(gtkFontButton) != 0;
}
/**
* Sets or updates the currently-displayed font in font picker dialog.
*
* Params:
* fontname = Name of font to display in font chooser dialog
*
* Returns: %TRUE
*
* Since: 2.4
*/
public bool setFontName(string fontname)
{
return gtk_font_button_set_font_name(gtkFontButton, Str.toStringz(fontname)) != 0;
}
/**
* If @show_size is %TRUE, the font size will be displayed along with the name of the selected font.
*
* Params:
* showSize = %TRUE if font size should be displayed in dialog.
*
* Since: 2.4
*/
public void setShowSize(bool showSize)
{
gtk_font_button_set_show_size(gtkFontButton, showSize);
}
/**
* If @show_style is %TRUE, the font style will be displayed along with name of the selected font.
*
* Params:
* showStyle = %TRUE if font style should be displayed in label.
*
* Since: 2.4
*/
public void setShowStyle(bool showStyle)
{
gtk_font_button_set_show_style(gtkFontButton, showStyle);
}
/**
* Sets the title for the font chooser dialog.
*
* Params:
* title = a string containing the font chooser dialog title
*
* Since: 2.4
*/
public void setTitle(string title)
{
gtk_font_button_set_title(gtkFontButton, Str.toStringz(title));
}
/**
* If @use_font is %TRUE, the font name will be written using the selected font.
*
* Params:
* useFont = If %TRUE, font name will be written using font chosen.
*
* Since: 2.4
*/
public void setUseFont(bool useFont)
{
gtk_font_button_set_use_font(gtkFontButton, useFont);
}
/**
* If @use_size is %TRUE, the font name will be written using the selected size.
*
* Params:
* useSize = If %TRUE, font name will be written using the selected size.
*
* Since: 2.4
*/
public void setUseSize(bool useSize)
{
gtk_font_button_set_use_size(gtkFontButton, useSize);
}
protected class OnFontSetDelegateWrapper
{
void delegate(FontButton) dlg;
gulong handlerId;
this(void delegate(FontButton) dlg)
{
this.dlg = dlg;
onFontSetListeners ~= this;
}
void remove(OnFontSetDelegateWrapper source)
{
foreach(index, wrapper; onFontSetListeners)
{
if (wrapper.handlerId == source.handlerId)
{
onFontSetListeners[index] = null;
onFontSetListeners = std.algorithm.remove(onFontSetListeners, index);
break;
}
}
}
}
OnFontSetDelegateWrapper[] onFontSetListeners;
/**
* The ::font-set signal is emitted when the user selects a font.
* When handling this signal, use gtk_font_button_get_font_name()
* to find out which font was just selected.
*
* Note that this signal is only emitted when the user
* changes the font. If you need to react to programmatic font changes
* as well, use the notify::font-name signal.
*
* Since: 2.4
*/
gulong addOnFontSet(void delegate(FontButton) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
auto wrapper = new OnFontSetDelegateWrapper(dlg);
wrapper.handlerId = Signals.connectData(
this,
"font-set",
cast(GCallback)&callBackFontSet,
cast(void*)wrapper,
cast(GClosureNotify)&callBackFontSetDestroy,
connectFlags);
return wrapper.handlerId;
}
extern(C) static void callBackFontSet(GtkFontButton* fontbuttonStruct, OnFontSetDelegateWrapper wrapper)
{
wrapper.dlg(wrapper.outer);
}
extern(C) static void callBackFontSetDestroy(OnFontSetDelegateWrapper wrapper, GClosure* closure)
{
wrapper.remove(wrapper);
}
}
|