summaryrefslogtreecommitdiff
path: root/gtk/gtktoolpalette.h
Commit message (Collapse)AuthorAgeFilesLines
* GtkToolPalette: Change gtk_tool_palette_get_drop_group() return.Murray Cumming2010-01-181-1/+1
| | | | | | * gtk/gtktoolpalette.[h|cc]: gtk_tool_palette_get_drop_group(): Change the return type from GtkWidget* to GtkToolItemGroup*, for consistency with other parts of GTK+, such as GtkToolbar.
* GtkToolPalette: Use GtkToolItemGroup* instead of GtkWidget* for setter ↵Murray Cumming2010-01-141-6/+6
| | | | | | parameters. See Bug #567729
* 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-4/+4
|
* GtkToolPalette: Use gtk-toolbar-style and gtk-toolbar-icon-size settings.Murray Cumming2009-07-161-0/+2
| | | | | | | | | | | | | | | * gtk/gtksettings.c: (settings_install_property_parser): Handle enums too. * gtk/gtktoolbar.c (gtk_toolbar_class_init): Move the gtk-toolbar-style and gtk-toolbar-icon-size settings into GtkSettings because we now use it in GtkToolPalette too. * gtk/gtktoolpalette.[h|c]: Add gtk_tool_palette_unset_style() and gtk_tool_palette_unset_icon_size(), and use the toolbar-style and icon-size from GtkSettings if these are not set via the set functions. * demos/gtk-demo/toolpalette.c (on_combo_style_changed), (do_toolpalette): Add and handle a -1 value to mean the desktop "Default" toolbar style.
* GtkToolItemGroup: Rename the name property. GtkToolPalette: Added class padding.Murray Cumming2009-07-141-0/+8
| | | | | | | * 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.
* ToolPalette: Implement GtkOrientable.Murray Cumming2009-07-141-3/+0
| | | | | | | * gtk/gtktoolpalette.[h|c]: Remove gtk_tool_palette_get/set_property(), implementing GtkOrientable instead. * gtk/gtktoolitemgroup.c: * demos/gtk-demo/toolpalette.c: Use gtk_orientable_* instead.
* Added GtkToolPalette.Johannes Schmid2009-07-131-0/+133
* 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