summaryrefslogtreecommitdiff
path: root/gtk/gtkfontchooserutils.c
Commit message (Collapse)AuthorAgeFilesLines
* font chooser: Add properties for features and languageMatthias Clasen2018-01-031-0/+6
| | | | | | These can't be returned as part of the font description, so we need new api for them. For now, this is just readonly properties. Maybe these should be writable too, eventually.
* font chooser: introduce font chooser levelsMatthias Clasen2018-01-031-0/+3
| | | | | This is a more systematic approach to reducing the level of detail in the font chooser.
* Redo font map support in GtkFontChooserMatthias Clasen2015-06-131-3/+15
| | | | | | | | We can't add properties to the interface, since it breaks 3rd party implementations of the GtkFontChooser interface. These exist, for example in gnumeric. So, instead of a new property, add getter/setter vfuncs.
* GtkFontChooser: Allow a custom font mapMatthias Clasen2015-05-071-0/+3
| | | | | | | This lets applications show their own fonts instead of or in addition to system fonts. https://bugzilla.gnome.org/show_bug.cgi?id=748771
* docs: use apostrophes in *n'tWilliam Jon McCann2014-02-071-1/+1
|
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* Rename gtk_font_chooser_get_{family,face,size}Christian Persch2011-09-131-3/+3
| | | | | ... to gtk_font_chooser_get_font_{family,face,size}, in order to avoid naming conflicts in bindings.
* Add GtkFontChooser:font-desc propertyChristian Persch2011-09-131-0/+3
| | | | Add a way to set/get the font as a PangoFontDescription.
* Remove GtkFontChooser:[sg]et_fontChristian Persch2011-09-131-15/+0
| | | | | Now that the setter doesn't return a value anymore, we can just use g_object_[sg]et instead of having these vfuncs.
* Setters should not return a booleanChristian Persch2011-09-131-2/+2
| | | | | | The setter for the "font" property returned a boolean that indicated whether the given font has been found. Instead, fall back to the default font name when the given font doesn't exist.
* Rename GtkFontChooser:font-name to :fontChristian Persch2011-09-131-8/+8
| | | | | | | GtkFontButton already has a property named "font-name" which may conflict / be an ABI break when moving GtkFontButton to implement GtkFontChooser. Also, this is more in line with how other parts in gtk (e.g. GtkCellRendererText) call a font string property.
* Make GtkFontChooser an interfaceChristian Persch2011-09-131-0/+186
Make the GtkFontChooser API similar to the Gtk{File,Recent,App}Chooser APIs by introducing GtkFontChooser as an interface, that has a default implementation in GtkFontChooserWidget. https://bugzilla.gnome.org/show_bug.cgi?id=657627