summaryrefslogtreecommitdiff
path: root/gtk/gtktoolpalette.c
Commit message (Collapse)AuthorAgeFilesLines
* Added missing default events in realize() implementationsTristan Van Berkom2010-03-291-3/+4
| | | | | Added gtk_widget_get_events() to the event masks declared by GtkToolPalette & GtkToolItemGroup.
* Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_REALIZED)Javier Jardón2010-03-061-1/+1
| | | | | | Use new API instead: gtk_widget_set_realized () https://bugzilla.gnome.org/show_bug.cgi?id=69872
* GtkToolPalette: Fix a compiler warning introduced in my last commit.Murray Cumming2010-01-191-4/+5
|
* GtkToolPalette: Change gtk_tool_palette_get_drop_group() return.Murray Cumming2010-01-181-2/+2
| | | | | | * 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-20/+24
| | | | | | parameters. See Bug #567729
* GtkToolPalette: docs: Minor English corrections.Murray Cumming2009-12-311-2/+2
|
* Change GtkIconSize to int in params/return valuesDan Winship2009-12-191-2/+3
| | | | | | | | | 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-143/+202
|
* Fix another doc typoMatthias Clasen2009-11-261-1/+1
|
* toolpalette: fixed trailing whitespacesJohannes Schmid2009-11-111-56/+56
|
* toolpalette: Fixed documentationJohannes Schmid2009-11-111-3/+5
|
* toolpalette: allow to reset same adjustmentJohannes Schmid2009-11-111-5/+5
|
* Ported gtktoolpalette from a custom array to GPtrArray.Johannes Schmid2009-11-091-124/+98
| | | | ...and some mixed fixes of things mentioned in the bug report
* Remove G_GNUC_UNUSEDJohannes Schmid2009-11-071-10/+10
|
* Fixed GtkToolPalette API docs to mention 2.20 instead of 2.18Johannes Schmid2009-10-281-22/+22
|
* Fixed a typo that I didn't see until now, strangely.Murray Cumming2009-07-161-1/+1
|
* GtkToolPalette: Use gtk-toolbar-style and gtk-toolbar-icon-size settings.Murray Cumming2009-07-161-11/+264
| | | | | | | | | | | | | | | * 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.
* ToolPalette: Implement GtkOrientable.Murray Cumming2009-07-141-45/+6
| | | | | | | * 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.
* GtkTool*: Removed the HAVE_EXTENDED_TOOL_SHELL_SUPPORT_BUG_535090 ifdefs. ↵Murray Cumming2009-07-131-10/+0
| | | | This gives us nicer text alignment among other things.
* Added GtkToolPalette.Johannes Schmid2009-07-131-0/+1685
* 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