summaryrefslogtreecommitdiff
path: root/gtk/gtkfontchooser.h
Commit message (Collapse)AuthorAgeFilesLines
* Pacify gobject-introspectionMatthias Clasen2015-06-201-1/+1
| | | | | gobject-introspection complains about the parameter names of vfuncs. Why, you ask ? No idea.
* Redo font map support in GtkFontChooserMatthias Clasen2015-06-131-1/+6
| | | | | | | | 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/+5
| | | | | | | This lets applications show their own fonts instead of or in addition to system fonts. https://bugzilla.gnome.org/show_bug.cgi?id=748771
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-3/+3
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* fontchooser: silence g-i scanner warningCosimo Cecchi2012-06-251-5/+5
| | | | | | | These parameters should be named the same in the definition and the declaration. https://bugzilla.gnome.org/show_bug.cgi?id=677127
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* gtk: Use versioned deprecationsMatthias Clasen2012-02-271-0/+13
| | | | | | | This patch changes all uses of GDK_DEPRECATED(_FOR) in gtk headers by the versioned variants, GDK_DEPRECATED_IN_3_x(_FOR). At the same time, we add GDK_AVAILABLE_IN_3_x annotations for all API additions in 3.2 and 3.4.
* Typo fixMatthias Clasen2012-01-301-1/+1
|
* Fix a parameter name mismatchMatthias Clasen2011-09-131-1/+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/+6
| | | | Add a way to set/get the font as a PangoFontDescription.
* Remove GtkFontChooser:[sg]et_fontChristian Persch2011-09-131-3/+1
| | | | | 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-4/+4
| | | | | | | 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-64/+58
| | | | | | | | 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
* GtkFontChooser: Add a ::font-activated signalMatthias Clasen2011-08-241-0/+3
| | | | This signal gets emitted when a font in the list is activated.
* Add filtering to the font chooserMatthias Clasen2011-08-151-0/+20
|
* Trivial formatting fixesMatthias Clasen2011-08-151-0/+1
| | | | Just committing these is easier than writing them up.
* GtkFontChooser: Missing G_END_DECLS in fontchooser headerAlberto Ruiz2011-08-151-0/+1
|
* GtkFontChooser: Remove outdated Copyright informationAlberto Ruiz2011-08-151-5/+0
|
* GtkFontChooser: Use GtkBox instead of GtkVBox as base class.Alberto Ruiz2011-08-151-3/+3
|
* GtkFontChooserDialog: Split the dialog out of gtkfontchooser.[ch] to ↵Alberto Ruiz2011-08-151-76/+1
| | | | gtkfontchooserdialog.[ch]
* GtkFontChooser: Renaming the class names and fixing the testsAlberto Ruiz2011-08-151-78/+56
|
* GtkFontChooser: Remove wrong usage of GTK_DISABLE_DEPRECATEDAlberto Ruiz2011-08-151-9/+9
|
* GtkFontChooser: Add a property to control whether the preview entry is shown ↵Alberto Ruiz2011-08-151-23/+26
| | | | or not
* GtkFontChooser: Add gtk_font_selection_dialog_get_select_button and use ↵Alberto Ruiz2011-08-151-6/+13
| | | | GTK_DISABLE_DEPRECATED in gtkfontsel.h
* GtkFontChooser: Remove all cruft from the current GtkFontSelection ↵Alberto Ruiz2011-08-151-0/+176
implementation and start a new widget