]> Pileus Git - ~andy/gtk/blob - gtk/gtktoolbar.h
fix warning
[~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 Lesser 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  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #ifndef __GTK_TOOLBAR_H__
29 #define __GTK_TOOLBAR_H__
30
31
32 #include <gdk/gdk.h>
33 #include <gtk/gtkcontainer.h>
34 #include <gtk/gtkenums.h>
35 #include <gtk/gtkpixmap.h>
36 #include <gtk/gtksignal.h>
37 #include <gtk/gtktooltips.h>
38
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif /* __cplusplus */
43
44
45 #define GTK_TYPE_TOOLBAR                  (gtk_toolbar_get_type ())
46 #define GTK_TOOLBAR(obj)                  (GTK_CHECK_CAST ((obj), GTK_TYPE_TOOLBAR, GtkToolbar))
47 #define GTK_TOOLBAR_CLASS(klass)          (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_TOOLBAR, GtkToolbarClass))
48 #define GTK_IS_TOOLBAR(obj)               (GTK_CHECK_TYPE ((obj), GTK_TYPE_TOOLBAR))
49 #define GTK_IS_TOOLBAR_CLASS(klass)       (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TOOLBAR))
50 #define GTK_TOOLBAR_GET_CLASS(obj)        (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_TOOLBAR, GtkToolbarClass))
51
52
53 typedef enum
54 {
55   GTK_TOOLBAR_CHILD_SPACE,
56   GTK_TOOLBAR_CHILD_BUTTON,
57   GTK_TOOLBAR_CHILD_TOGGLEBUTTON,
58   GTK_TOOLBAR_CHILD_RADIOBUTTON,
59   GTK_TOOLBAR_CHILD_WIDGET
60 } GtkToolbarChildType;
61
62 typedef enum
63 {
64   GTK_TOOLBAR_SPACE_EMPTY,
65   GTK_TOOLBAR_SPACE_LINE
66 } GtkToolbarSpaceStyle;
67
68 typedef struct _GtkToolbarChild      GtkToolbarChild;
69 typedef struct _GtkToolbar           GtkToolbar;
70 typedef struct _GtkToolbarClass      GtkToolbarClass;
71
72 struct _GtkToolbarChild
73 {
74   GtkToolbarChildType type;
75   GtkWidget *widget;
76   GtkWidget *icon;
77   GtkWidget *label;
78 };
79
80 struct _GtkToolbar
81 {
82   GtkContainer container;
83
84   gint             num_children;
85   GList           *children;
86   GtkOrientation   orientation;
87   GtkToolbarStyle  style;
88   GtkIconSize      icon_size;
89
90   GtkTooltips     *tooltips;
91
92   gint             button_maxw;
93   gint             button_maxh;
94 };
95
96 struct _GtkToolbarClass
97 {
98   GtkContainerClass parent_class;
99
100   void (* orientation_changed) (GtkToolbar      *toolbar,
101                                 GtkOrientation   orientation);
102   void (* style_changed)       (GtkToolbar      *toolbar,
103                                 GtkToolbarStyle  style);
104 };
105
106
107 GtkType    gtk_toolbar_get_type        (void) G_GNUC_CONST;
108 GtkWidget* gtk_toolbar_new             (GtkOrientation   orientation,
109                                         GtkToolbarStyle  style);
110
111 /* Simple button items */
112 GtkWidget* gtk_toolbar_append_item     (GtkToolbar      *toolbar,
113                                         const char      *text,
114                                         const char      *tooltip_text,
115                                         const char      *tooltip_private_text,
116                                         GtkWidget       *icon,
117                                         GtkSignalFunc    callback,
118                                         gpointer         user_data);
119 GtkWidget* gtk_toolbar_prepend_item    (GtkToolbar      *toolbar,
120                                         const char      *text,
121                                         const char      *tooltip_text,
122                                         const char      *tooltip_private_text,
123                                         GtkWidget       *icon,
124                                         GtkSignalFunc    callback,
125                                         gpointer         user_data);
126 GtkWidget* gtk_toolbar_insert_item     (GtkToolbar      *toolbar,
127                                         const char      *text,
128                                         const char      *tooltip_text,
129                                         const char      *tooltip_private_text,
130                                         GtkWidget       *icon,
131                                         GtkSignalFunc    callback,
132                                         gpointer         user_data,
133                                         gint             position);
134
135 /* Stock Items */
136 void       gtk_toolbar_set_icon_size   (GtkToolbar      *toolbar,
137                                         GtkIconSize      icon_size);
138 GtkWidget* gtk_toolbar_insert_stock    (GtkToolbar      *toolbar,
139                                         const gchar     *stock_id,
140                                         const char      *tooltip_text,
141                                         const char      *tooltip_private_text,
142                                         GtkSignalFunc    callback,
143                                         gpointer         user_data,
144                                         gint             position);
145
146
147
148 /* Space Items */
149 void       gtk_toolbar_append_space    (GtkToolbar      *toolbar);
150 void       gtk_toolbar_prepend_space   (GtkToolbar      *toolbar);
151 void       gtk_toolbar_insert_space    (GtkToolbar      *toolbar,
152                                         gint             position);
153
154 /* Any element type */
155 GtkWidget* gtk_toolbar_append_element  (GtkToolbar      *toolbar,
156                                         GtkToolbarChildType type,
157                                         GtkWidget       *widget,
158                                         const char      *text,
159                                         const char      *tooltip_text,
160                                         const char      *tooltip_private_text,
161                                         GtkWidget       *icon,
162                                         GtkSignalFunc    callback,
163                                         gpointer         user_data);
164
165 GtkWidget* gtk_toolbar_prepend_element (GtkToolbar      *toolbar,
166                                         GtkToolbarChildType type,
167                                         GtkWidget       *widget,
168                                         const char      *text,
169                                         const char      *tooltip_text,
170                                         const char      *tooltip_private_text,
171                                         GtkWidget       *icon,
172                                         GtkSignalFunc    callback,
173                                         gpointer         user_data);
174
175 GtkWidget* gtk_toolbar_insert_element  (GtkToolbar      *toolbar,
176                                         GtkToolbarChildType type,
177                                         GtkWidget       *widget,
178                                         const char      *text,
179                                         const char      *tooltip_text,
180                                         const char      *tooltip_private_text,
181                                         GtkWidget       *icon,
182                                         GtkSignalFunc    callback,
183                                         gpointer         user_data,
184                                         gint             position);
185
186 /* Generic Widgets */
187 void       gtk_toolbar_append_widget   (GtkToolbar      *toolbar,
188                                         GtkWidget       *widget,
189                                         const char      *tooltip_text,
190                                         const char      *tooltip_private_text);
191 void       gtk_toolbar_prepend_widget  (GtkToolbar      *toolbar,
192                                         GtkWidget       *widget,
193                                         const char      *tooltip_text,
194                                         const char      *tooltip_private_text);
195 void       gtk_toolbar_insert_widget   (GtkToolbar      *toolbar,
196                                         GtkWidget       *widget,
197                                         const char      *tooltip_text,
198                                         const char      *tooltip_private_text,
199                                         gint             position);
200
201 /* Style functions */
202 void       gtk_toolbar_set_orientation       (GtkToolbar           *toolbar,
203                                               GtkOrientation        orientation);
204 void       gtk_toolbar_set_style             (GtkToolbar           *toolbar,
205                                               GtkToolbarStyle       style);
206 void       gtk_toolbar_set_tooltips          (GtkToolbar           *toolbar,
207                                               gboolean              enable);
208
209 #ifdef __cplusplus
210 }
211 #endif /* __cplusplus */
212
213 #endif /* __GTK_TOOLBAR_H__ */