Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move single-include guards inside include guards | Matthias Clasen | 2012-12-28 | 1 | -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 warning | Cosimo Cecchi | 2012-06-25 | 1 | -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 Address | Javier Jardón | 2012-02-27 | 1 | -3/+1 |
| | |||||
* | gtk: Use versioned deprecations | Matthias Clasen | 2012-02-27 | 1 | -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 fix | Matthias Clasen | 2012-01-30 | 1 | -1/+1 |
| | |||||
* | Fix a parameter name mismatch | Matthias Clasen | 2011-09-13 | 1 | -1/+1 |
| | |||||
* | Rename gtk_font_chooser_get_{family,face,size} | Christian Persch | 2011-09-13 | 1 | -3/+3 |
| | | | | | ... to gtk_font_chooser_get_font_{family,face,size}, in order to avoid naming conflicts in bindings. | ||||
* | Add GtkFontChooser:font-desc property | Christian Persch | 2011-09-13 | 1 | -0/+6 |
| | | | | Add a way to set/get the font as a PangoFontDescription. | ||||
* | Remove GtkFontChooser:[sg]et_font | Christian Persch | 2011-09-13 | 1 | -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 boolean | Christian Persch | 2011-09-13 | 1 | -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 :font | Christian Persch | 2011-09-13 | 1 | -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 interface | Christian Persch | 2011-09-13 | 1 | -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 signal | Matthias Clasen | 2011-08-24 | 1 | -0/+3 |
| | | | | This signal gets emitted when a font in the list is activated. | ||||
* | Add filtering to the font chooser | Matthias Clasen | 2011-08-15 | 1 | -0/+20 |
| | |||||
* | Trivial formatting fixes | Matthias Clasen | 2011-08-15 | 1 | -0/+1 |
| | | | | Just committing these is easier than writing them up. | ||||
* | GtkFontChooser: Missing G_END_DECLS in fontchooser header | Alberto Ruiz | 2011-08-15 | 1 | -0/+1 |
| | |||||
* | GtkFontChooser: Remove outdated Copyright information | Alberto Ruiz | 2011-08-15 | 1 | -5/+0 |
| | |||||
* | GtkFontChooser: Use GtkBox instead of GtkVBox as base class. | Alberto Ruiz | 2011-08-15 | 1 | -3/+3 |
| | |||||
* | GtkFontChooserDialog: Split the dialog out of gtkfontchooser.[ch] to ↵ | Alberto Ruiz | 2011-08-15 | 1 | -76/+1 |
| | | | | gtkfontchooserdialog.[ch] | ||||
* | GtkFontChooser: Renaming the class names and fixing the tests | Alberto Ruiz | 2011-08-15 | 1 | -78/+56 |
| | |||||
* | GtkFontChooser: Remove wrong usage of GTK_DISABLE_DEPRECATED | Alberto Ruiz | 2011-08-15 | 1 | -9/+9 |
| | |||||
* | GtkFontChooser: Add a property to control whether the preview entry is shown ↵ | Alberto Ruiz | 2011-08-15 | 1 | -23/+26 |
| | | | | or not | ||||
* | GtkFontChooser: Add gtk_font_selection_dialog_get_select_button and use ↵ | Alberto Ruiz | 2011-08-15 | 1 | -6/+13 |
| | | | | GTK_DISABLE_DEPRECATED in gtkfontsel.h | ||||
* | GtkFontChooser: Remove all cruft from the current GtkFontSelection ↵ | Alberto Ruiz | 2011-08-15 | 1 | -0/+176 |
implementation and start a new widget |