summaryrefslogtreecommitdiff
path: root/gtktoolpaletteprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtktoolpaletteprivate.h')
-rw-r--r--gtktoolpaletteprivate.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/gtktoolpaletteprivate.h b/gtktoolpaletteprivate.h
new file mode 100644
index 0000000000..c1477f9e73
--- /dev/null
+++ b/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__ */