]> Pileus Git - ~andy/gtk/blob - gtk/gtktoolbar.h
Demo works fine. I have to add the missing functions for setting the toolbar's
[~andy/gtk] / gtk / gtktoolbar.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * GtkToolbar copyright (C) Federico Mena
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the Free
17  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #ifndef __GTK_TOOLBAR_H__
21 #define __GTK_TOOLBAR_H__
22
23
24 #include <gdk/gdk.h>
25 #include <gtk/gtkcontainer.h>
26 #include <gtk/gtkenums.h>
27 #include <gtk/gtkpixmap.h>
28 #include <gtk/gtksignal.h>
29 #include <gtk/gtktooltips.h>
30
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif /* __cplusplus */
35
36
37 #define GTK_TOOLBAR(obj)         GTK_CHECK_CAST (obj, gtk_toolbar_get_type (), GtkToolbar)
38 #define GTK_TOOLBAR_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_toolbar_get_type (), GtkToolbarClass)
39 #define GTK_IS_TOOLBAR(obj)      GTK_CHECK_TYPE (obj, gtk_toolbar_get_type ())
40
41
42 typedef struct _GtkToolbar      GtkToolbar;
43 typedef struct _GtkToolbarClass GtkToolbarClass;
44
45 struct _GtkToolbar
46 {
47   GtkContainer container;
48
49   gint             num_children;
50   GList           *children;
51   GtkOrientation   orientation;
52   GtkToolbarStyle  style;
53   gint             space_size; /* big optional space between buttons */
54
55   GtkTooltips     *tooltips;
56
57   gint             child_maxw;
58   gint             child_maxh;
59 };
60
61 struct _GtkToolbarClass
62 {
63   GtkContainerClass parent_class;
64 };
65
66
67 guint      gtk_toolbar_get_type      (void);
68 GtkWidget *gtk_toolbar_new           (GtkOrientation   orientation,
69                                       GtkToolbarStyle  style);
70
71 void       gtk_toolbar_append_item   (GtkToolbar      *toolbar,
72                                       const char      *text,
73                                       const char      *tooltip_text,
74                                       GtkPixmap       *icon,
75                                       GtkSignalFunc    callback,
76                                       gpointer         user_data);
77 void       gtk_toolbar_prepend_item  (GtkToolbar      *toolbar,
78                                       const char      *text,
79                                       const char      *tooltip_text,
80                                       GtkPixmap       *icon,
81                                       GtkSignalFunc    callback,
82                                       gpointer         user_data);
83 void       gtk_toolbar_insert_item   (GtkToolbar      *toolbar,
84                                       const char      *text,
85                                       const char      *tooltip_text,
86                                       GtkPixmap       *icon,
87                                       GtkSignalFunc    callback,
88                                       gpointer         user_data,
89                                       gint             position);
90 void       gtk_toolbar_append_space  (GtkToolbar      *toolbar);
91 void       gtk_toolbar_prepend_space (GtkToolbar      *toolbar);
92 void       gtk_toolbar_insert_space  (GtkToolbar      *toolbar,
93                                       gint             position);
94
95
96 #ifdef __cplusplus
97 }
98 #endif /* __cplusplus */
99
100 #endif /* __GTK_TOOLBAR_H__ */