]> Pileus Git - ~andy/gtk/blob - gtk/gtktoolshell.h
684ad897a3c06993fed365cc87a26e82f0aa32a7
[~andy/gtk] / gtk / gtktoolshell.h
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 #include <gtk/gtkenums.h>
27
28 G_BEGIN_DECLS
29
30 #define GTK_TYPE_TOOL_SHELL            (gtk_tool_shell_get_type ())
31 #define GTK_TOOL_SHELL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOL_SHELL, GtkToolShell))
32 #define GTK_IS_TOOL_SHELL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOL_SHELL))
33 #define GTK_TOOL_SHELL_GET_IFACE(obj)  (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_TOOL_SHELL, GtkToolShellIface))
34
35 typedef struct _GtkToolShell           GtkToolShell; /* dummy typedef */
36 typedef struct _GtkToolShellIface      GtkToolShellIface;
37
38 /**
39  * GtkToolShellIface:
40  * @get_icon_size:    mandatory implementation of gtk_tool_shell_get_icon_size().
41  * @get_orientation:  mandatory implementation of gtk_tool_shell_get_orientation().
42  * @get_style:        mandatory implementation of gtk_tool_shell_get_style().
43  * @get_relief_style: optional implementation of gtk_tool_shell_get_relief_style().
44  * @rebuild_menu:     optional implementation of gtk_tool_shell_rebuild_menu().
45  *
46  * Virtual function table for the #GtkToolShell interface.
47  */
48 struct _GtkToolShellIface
49 {
50   /*< private >*/
51   GTypeInterface g_iface;
52
53   /*< public >*/
54   GtkIconSize     (*get_icon_size)    (GtkToolShell *shell);
55   GtkOrientation  (*get_orientation)  (GtkToolShell *shell);
56   GtkToolbarStyle (*get_style)        (GtkToolShell *shell);
57   GtkReliefStyle  (*get_relief_style) (GtkToolShell *shell);
58   void            (*rebuild_menu)     (GtkToolShell *shell);
59 };
60
61 GType           gtk_tool_shell_get_type         (void) G_GNUC_CONST;
62
63 GtkIconSize     gtk_tool_shell_get_icon_size    (GtkToolShell *shell);
64 GtkOrientation  gtk_tool_shell_get_orientation  (GtkToolShell *shell);
65 GtkToolbarStyle gtk_tool_shell_get_style        (GtkToolShell *shell);
66 GtkReliefStyle  gtk_tool_shell_get_relief_style (GtkToolShell *shell);
67 void            gtk_tool_shell_rebuild_menu     (GtkToolShell *shell);
68
69 G_END_DECLS
70
71 #endif /* __GTK_TOOL_SHELL_H__ */