summaryrefslogtreecommitdiff
path: root/gtk/gtktoolshell.c
Commit message (Collapse)AuthorAgeFilesLines
* docs: use Returns: consistentlyWilliam Jon McCann2014-02-191-8/+8
| | | | Instead of Return value:
* Fix malformed doc commentsMatthias Clasen2012-04-121-3/+2
| | | | | Most of these are forgotten :'s and similar details which gtk-doc now warns about.
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* GtkToolShell: Move vfunc default results to default implementations.Murray Cumming2011-08-301-16/+36
| | | | | | | | | | | | | Otherwise the default values are only used if no vfunc is set, making that default unavailable to vfunc implementations as a fallback, and unavailable to language bindings (such as gtkmm) that always have a vfunc implementation, even if that often only tries to call the base vfunc implemntation. This was making gtkmm's ToolPalette's (and probably ToolBar's) items look like buttons instead of being flat. https://bugzilla.gnome.org/show_bug.cgi?id=656223
* More documentation fixes2.99.0Matthias Clasen2011-01-061-1/+1
|
* Add a couple of missing annotationsJohan Dahlin2010-09-181-1/+1
|
* gtk/gtktoolshell.c: Use G_DEFINE_INTERFACE macroJavier Jardón2010-08-261-12/+7
|
* gtk/: fully remove gtkalias hacksJavier Jardón2010-07-101-4/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=623845
* [docs] gtktoolshell: Fix some "Since" tagsJavier Jardón2010-06-041-4/+4
| | | | | | | get_ellipsize_mode(), get_text_alignment(), get_text_orientation() and get_text_size_group() were added in GTK+ 2.20, not 2.14. Reported by Stanislas Marquis on IRC.
* Change GtkIconSize to int in params/return valuesDan Winship2009-12-191-1/+1
| | | | | | | | | GtkIconSize is an extensible enumeration (via gtk_icon_size_register()), so methods that claim to take/return a GtkIconSize need to actually use "int" to work correctly with bindings that are strict about enum values. https://bugzilla.gnome.org/show_bug.cgi?id=604895
* Fix up docs, and set up the aliasing machineryMatthias Clasen2009-11-261-1/+1
|
* Merge branch 'master' into toolpaletteJohannes Schmid2009-10-281-0/+1
|\
| * Move documentation to inline comments: GtkToolShellJavier Jardón2009-10-151-0/+1
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=597865
* | ToolShell: Add ellipsize, text-orientation, text-alignment and size-group.Murray Cumming2009-07-131-0/+92
|/ | | | | | | | | | | | | * gtk/gtktoolshell.c: Added vfuncs to get/set ellipsize, text-orientation, text-alignment and size-group plus getter/setters to invoke these vfuncs. * gtk/gtktoolitem.[h|c]: Added getters and setters to get/set these from the parent GtkToolShell. This is in the style of the existing "properties". * gtk/gtktoolbutton.c: Updated to use the extra properties. * docs/reference/gtk/gtk-sections.txt * gtk/gtk.symbols: Updated to mention the new functions. These new "properties" are used by GtkToolPalette.
* Fix up short descriptionsMatthias Clasen2008-10-271-1/+1
| | | | svn path=/trunk/; revision=21721
* Bug 549943 – gtk_tool_shell_get_relief_style() always returnsMatthew Barnes2008-08-301-1/+1
| | | | | | | | | | | | | 2008-08-30 Matthew Barnes <mbarnes@redhat.com> Bug 549943 – gtk_tool_shell_get_relief_style() always returns GTK_RELIEF_NONE * gtk/gtktoolshell.c (gtk_tool_shell_get_relief_style): Return the correct relief style. svn path=/trunk/; revision=21252
* Include "config.h" instead of <config.h> Command used: find -nameJohan Dahlin2008-06-221-1/+1
| | | | | | | | | | | | 2008-06-21 Johan Dahlin <jdahlin@async.com.br> * *.[ch]: Include "config.h" instead of <config.h> Command used: find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g' Rubberstamped by Mitch and Tim svn path=/trunk/; revision=20669
* Go back to 2.13.0 as version for now, as there was no consensus to do theMatthias Clasen2008-02-151-5/+5
| | | | | | | | | | | | | 2008-02-15 Matthias Clasen <mclasen@redhat.com> * configure.in: Go back to 2.13.0 as version for now, as there was no consensus to do the jump. * many other places: Update Since: tags. svn path=/trunk/; revision=19586
* Change GtkToolItem to retrieve its properties from GtkToolShell interface,Mathias Hasselmann2007-12-141-0/+159
instead of relying on being child of a GtkToolbar. (#5034079) * gtk/gtk.symbols, docs/reference/gtk/gtk-docs.sgml, docs/reference/gtk/gtk-sections.txt: Add GtkToolShell symbols. * docs/reference/gtk/tmpl/gtktoolitem.sgml: Move section docs inline. * gtk/gtktoolbar.c: Implement GtkToolShellIface. * gtk/gtktoolbar.h: Remove _gtk_toolbar_rebuild_menu. * gtk/gtktoolitem.c: Use GtkToolShell, instead of GtkToolbar. Take section docs from template file and update them for GtkToolShell. * gtk/Makefile.am: Add gtk/gtktoolshell.c and gtk/gtktoolshell.h. * gtk/gtktoolshell.c, gtk/gtktoolshell.h: New GtkToolShellIface. svn path=/trunk/; revision=19177