1/* GTK - The GIMP Toolkit
2 * Copyright (C) 2007 Openismus GmbH
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 *
19 * Author:
20 * Mathias Hasselmann
21 */
22
23#ifndef __GTK_TOOL_SHELL_H__
24#define __GTK_TOOL_SHELL_H__
25
26
27#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28#error "Only <gtk/gtk.h> can be included directly."
29#endif
30
31#include <gtk/gtkenums.h>
32#include <pango/pango.h>
33#include <gtk/gtksizegroup.h>
34
35
36G_BEGIN_DECLS
37
38#define GTK_TYPE_TOOL_SHELL (gtk_tool_shell_get_type ())
39#define GTK_TOOL_SHELL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOL_SHELL, GtkToolShell))
40#define GTK_IS_TOOL_SHELL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOL_SHELL))
41#define GTK_TOOL_SHELL_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_TOOL_SHELL, GtkToolShellIface))
42
43typedef struct _GtkToolShell GtkToolShell; /* dummy typedef */
44typedef struct _GtkToolShellIface GtkToolShellIface;
45
46/**
47 * GtkToolShellIface:
48 * @get_icon_size: mandatory implementation of gtk_tool_shell_get_icon_size().
49 * @get_orientation: mandatory implementation of gtk_tool_shell_get_orientation().
50 * @get_style: mandatory implementation of gtk_tool_shell_get_style().
51 * @get_relief_style: optional implementation of gtk_tool_shell_get_relief_style().
52 * @rebuild_menu: optional implementation of gtk_tool_shell_rebuild_menu().
53 * @get_text_orientation: optional implementation of gtk_tool_shell_get_text_orientation().
54 * @get_text_alignment: optional implementation of gtk_tool_shell_get_text_alignment().
55 * @get_ellipsize_mode: optional implementation of gtk_tool_shell_get_ellipsize_mode().
56 * @get_text_size_group: optional implementation of gtk_tool_shell_get_text_size_group().
57 *
58 * Virtual function table for the #GtkToolShell interface.
59 */
60struct _GtkToolShellIface
61{
62 /*< private >*/
63 GTypeInterface g_iface;
64
65 /*< public >*/
66 GtkIconSize (*get_icon_size) (GtkToolShell *shell);
67 GtkOrientation (*get_orientation) (GtkToolShell *shell);
68 GtkToolbarStyle (*get_style) (GtkToolShell *shell);
69 GtkReliefStyle (*get_relief_style) (GtkToolShell *shell);
70 void (*rebuild_menu) (GtkToolShell *shell);
71 GtkOrientation (*get_text_orientation) (GtkToolShell *shell);
72 gfloat (*get_text_alignment) (GtkToolShell *shell);
73 PangoEllipsizeMode (*get_ellipsize_mode) (GtkToolShell *shell);
74 GtkSizeGroup * (*get_text_size_group) (GtkToolShell *shell);
75};
76
77GType gtk_tool_shell_get_type (void) G_GNUC_CONST;
78
79GtkIconSize gtk_tool_shell_get_icon_size (GtkToolShell *shell);
80GtkOrientation gtk_tool_shell_get_orientation (GtkToolShell *shell);
81GtkToolbarStyle gtk_tool_shell_get_style (GtkToolShell *shell);
82GtkReliefStyle gtk_tool_shell_get_relief_style (GtkToolShell *shell);
83void gtk_tool_shell_rebuild_menu (GtkToolShell *shell);
84GtkOrientation gtk_tool_shell_get_text_orientation (GtkToolShell *shell);
85gfloat gtk_tool_shell_get_text_alignment (GtkToolShell *shell);
86PangoEllipsizeMode gtk_tool_shell_get_ellipsize_mode (GtkToolShell *shell);
87GtkSizeGroup * gtk_tool_shell_get_text_size_group (GtkToolShell *shell);
88
89G_END_DECLS
90
91#endif /* __GTK_TOOL_SHELL_H__ */
92