diff options
author | Murray Cumming <murrayc@murrayc.com> | 2009-07-13 19:11:12 +0200 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2009-07-13 19:11:12 +0200 |
commit | 8a294b8bb75236c52519dcb39794bedad15498df (patch) | |
tree | 6968ac1850eb92658cb2fc3fa08d5a5682027d19 /gtk/gtktoolpaletteprivate.h | |
parent | d95654fd5f61788b4a590cd0558c80adebde5e1a (diff) | |
download | gtk+-8a294b8bb75236c52519dcb39794bedad15498df.tar.gz |
Added missing files that I thought I had already added.
Diffstat (limited to 'gtk/gtktoolpaletteprivate.h')
-rw-r--r-- | gtk/gtktoolpaletteprivate.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/gtk/gtktoolpaletteprivate.h b/gtk/gtktoolpaletteprivate.h new file mode 100644 index 0000000000..c1477f9e73 --- /dev/null +++ b/gtk/gtktoolpaletteprivate.h @@ -0,0 +1,59 @@ +/* GtkToolPalette -- A tool palette with categories and DnD support + * Copyright (C) 2008 Openismus GmbH + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Authors: + * Mathias Hasselmann + */ + +#ifndef __GTK_TOOL_PALETTE_PRIVATE_H__ +#define __GTK_TOOL_PALETTE_PRIVATE_H__ + +#include <gtk/gtk.h> + +void _gtk_tool_palette_get_item_size (GtkToolPalette *palette, + GtkRequisition *item_size, + gboolean homogeneous_only, + gint *requested_rows); +void _gtk_tool_palette_child_set_drag_source (GtkWidget *widget, + gpointer data); +void _gtk_tool_palette_set_expanding_child (GtkToolPalette *palette, + GtkWidget *widget); + +void _gtk_tool_item_group_palette_reconfigured (GtkToolItemGroup *group); +void _gtk_tool_item_group_item_size_request (GtkToolItemGroup *group, + GtkRequisition *item_size, + gboolean homogeneous_only, + gint *requested_rows); +gint _gtk_tool_item_group_get_height_for_width (GtkToolItemGroup *group, + gint width); +gint _gtk_tool_item_group_get_width_for_height (GtkToolItemGroup *group, + gint height); +void _gtk_tool_item_group_paint (GtkToolItemGroup *group, + cairo_t *cr); +gint _gtk_tool_item_group_get_size_for_limit (GtkToolItemGroup *group, + gint limit, + gboolean vertical, + gboolean animation); + +#undef HAVE_EXTENDED_TOOL_SHELL_SUPPORT_BUG_535090 +/* #define HAVE_EXTENDED_TOOL_SHELL_SUPPORT_BUG_535090 */ + +#ifdef HAVE_EXTENDED_TOOL_SHELL_SUPPORT_BUG_535090 +GtkSizeGroup *_gtk_tool_palette_get_size_group (GtkToolPalette *palette); +#endif + +#endif /* __GTK_TOOL_PALETTE_PRIVATE_H__ */ |