summaryrefslogtreecommitdiff
path: root/gtk/gtktoolitemgroup.h
Commit message (Collapse)AuthorAgeFilesLines
* Add annotations to gtk headersMatthias Clasen2013-05-051-0/+18
| | | | Add annotations to all exported functions in GTK+ headers.
* 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
* Change FSF AddressJavier Jardón2012-02-271-2/+1
|
* gtk: Use const instead G_CONST_RETURNJavier Jardón2011-06-101-1/+1
|
* Add padding to class structsMatthias Clasen2010-10-191-0/+6
|
* Add missing single-include guardsMichael Natterer2009-11-271-0/+4
|
* Fix up docs, and set up the aliasing machineryMatthias Clasen2009-11-261-6/+6
|
* toolpalette: fixed trailing whitespacesJohannes Schmid2009-11-111-1/+1
|
* GtkToolItemGroup now has label and label-widget properties.Murray Cumming2009-07-141-4/+7
| | | | | | | | | * demos/gtk-demo/toolpalette.c (load_special_items): Demonstrate gtk_tool_item_group_set_label_widget(). * gtk/gtktoolitemgroup.[h|c]: Rename the "item-group-name" property to "label" because that is what it is. Likewise rename the functions. Add a "label-widget" propert and get/set_label_widget() functions, based on the same code/API in GtkExpander.
* GtkToolItemGroup: Rename the name property. GtkToolPalette: Added class padding.Murray Cumming2009-07-141-3/+3
| | | | | | | * gtk/gtktoolitemgroup.[h|c]: Rename the name property to item-group-name and rename get/set_name() to get/set_item_group_name(), to avoid a clash with GtkWidget::name. * gtk/gtktoolpalette.h: GtkToolPaletteClass: Add padding for future use.
* Added GtkToolPalette.Johannes Schmid2009-07-131-0/+92
* gtk/gtktoolpallete.[h|cc]: * gtk/gtktoolitemgroup.[h|cc]: Added a tool pallete container widget, with groups of toolbar items that can be shown as a grid of icons or a list of names. * gtk/Makefile.am: * gtk/gtk.h: * gtk/gtkmarshal.list: Mentioned the new files. Bug #567729