diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1997-12-22 20:43:55 +0000 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1997-12-22 20:43:55 +0000 |
commit | 162795e9839667a64df5014c060108331f5f3cfd (patch) | |
tree | 712f07fc35c52d48214c7d583184fd77c7ec63d2 /gtk/gtktoolbar.h | |
parent | 81a58c413c5deb9d0186897b73ff785f78f983a9 (diff) | |
download | gtk+-162795e9839667a64df5014c060108331f5f3cfd.tar.gz |
Very basic functionality seems to be complete; I'll try compiling it
next :-) - Federico
Diffstat (limited to 'gtk/gtktoolbar.h')
-rw-r--r-- | gtk/gtktoolbar.h | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/gtk/gtktoolbar.h b/gtk/gtktoolbar.h index 5c71986fdc..0f409dadba 100644 --- a/gtk/gtktoolbar.h +++ b/gtk/gtktoolbar.h @@ -43,6 +43,7 @@ struct _GtkToolbar { GtkContainer container; + gint num_children; GList *children; GtkOrientation orientation; GtkToolbarStyle style; @@ -58,15 +59,27 @@ struct _GtkToolbarClass }; -guint gtk_toolbar_get_type (void); -GtkWidget *gtk_toolbar_new (GtkOrientation orientation, - GtkToolbarStyle style); - -void gtk_toolbar_append_item (GtkToolbar *toolbar, - const char *text, - const char *tooltip_text, - GtkPixmap *icon); -void gtk_toolbar_append_space (GtkToolbar *toolbar); +guint gtk_toolbar_get_type (void); +GtkWidget *gtk_toolbar_new (GtkOrientation orientation, + GtkToolbarStyle style); + +void gtk_toolbar_append_item (GtkToolbar *toolbar, + const char *text, + const char *tooltip_text, + GtkPixmap *icon); +void gtk_toolbar_prepend_item (GtkToolbar *toolbar, + const char *text, + const char *tooltip_text, + GtkPixmap *icon); +void gtk_toolbar_insert_item (GtkToolbar *toolbar, + const char *text, + const char *tooltip_text, + GtkPixmap *icon, + gint position); +void gtk_toolbar_append_space (GtkToolbar *toolbar); +void gtk_toolbar_prepend_space (GtkToolbar *toolbar); +void gtk_toolbar_insert_space (GtkToolbar *toolbar, + gint position); #ifdef __cplusplus |