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