]> Pileus Git - ~andy/gtk/blob - gtk/gtktoolbar.h
It compiles. Now I will add the toolbar example to testgtk.c - Federico
[~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
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif /* __cplusplus */
33
34
35 #define GTK_TOOLBAR(obj)         GTK_CHECK_CAST (obj, gtk_toolbar_get_type (), GtkToolbar)
36 #define GTK_TOOLBAR_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_toolbar_get_type (), GtkToolbarClass)
37 #define GTK_IS_TOOLBAR(obj)      GTK_CHECK_TYPE (obj, gtk_toolbar_get_type ())
38
39
40 typedef struct _GtkToolbar      GtkToolbar;
41 typedef struct _GtkToolbarClass GtkToolbarClass;
42
43 struct _GtkToolbar
44 {
45   GtkContainer container;
46
47   gint             num_children;
48   GList           *children;
49   GtkOrientation   orientation;
50   GtkToolbarStyle  style;
51   gint             space_size; /* big optional space between buttons */
52
53   gint             child_maxw;
54   gint             child_maxh;
55 };
56
57 struct _GtkToolbarClass
58 {
59   GtkContainerClass parent_class;
60 };
61
62
63 guint      gtk_toolbar_get_type      (void);
64 GtkWidget *gtk_toolbar_new           (GtkOrientation   orientation,
65                                       GtkToolbarStyle  style);
66
67 void       gtk_toolbar_append_item   (GtkToolbar      *toolbar,
68                                       const char      *text,
69                                       const char      *tooltip_text,
70                                       GtkPixmap       *icon);
71 void       gtk_toolbar_prepend_item  (GtkToolbar      *toolbar,
72                                       const char      *text,
73                                       const char      *tooltip_text,
74                                       GtkPixmap       *icon);
75 void       gtk_toolbar_insert_item   (GtkToolbar      *toolbar,
76                                       const char      *text,
77                                       const char      *tooltip_text,
78                                       GtkPixmap       *icon,
79                                       gint             position);
80 void       gtk_toolbar_append_space  (GtkToolbar      *toolbar);
81 void       gtk_toolbar_prepend_space (GtkToolbar      *toolbar);
82 void       gtk_toolbar_insert_space  (GtkToolbar      *toolbar,
83                                       gint             position);
84
85
86 #ifdef __cplusplus
87 }
88 #endif /* __cplusplus */
89
90 #endif /* __GTK_TOOLBAR_H__ */