changed gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget as

Mon Jan 19 00:46:18 1998 MET  Eckehard Berns  <eb@berns.prima.de>

	* gtk/gtktoolbar.[ch]: changed
 	  gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
 	  as icon to allow more flexibility
This commit is contained in:
MET Eckehard Berns 1998-01-18 23:49:56 +00:00 committed by Eckehard Berns
parent 9dcce18815
commit 0c6a6baa08
9 changed files with 48 additions and 6 deletions

View File

@ -1,3 +1,9 @@
Mon Jan 19 00:46:18 1998 MET Eckehard Berns <eb@berns.prima.de>
* gtk/gtktoolbar.[ch]: changed
gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
as icon to allow more flexibility
Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
* gtk/gtkstatusbar.[ch] added new widget, the statusbar

View File

@ -1,3 +1,9 @@
Mon Jan 19 00:46:18 1998 MET Eckehard Berns <eb@berns.prima.de>
* gtk/gtktoolbar.[ch]: changed
gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
as icon to allow more flexibility
Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
* gtk/gtkstatusbar.[ch] added new widget, the statusbar

View File

@ -1,3 +1,9 @@
Mon Jan 19 00:46:18 1998 MET Eckehard Berns <eb@berns.prima.de>
* gtk/gtktoolbar.[ch]: changed
gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
as icon to allow more flexibility
Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
* gtk/gtkstatusbar.[ch] added new widget, the statusbar

View File

@ -1,3 +1,9 @@
Mon Jan 19 00:46:18 1998 MET Eckehard Berns <eb@berns.prima.de>
* gtk/gtktoolbar.[ch]: changed
gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
as icon to allow more flexibility
Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
* gtk/gtkstatusbar.[ch] added new widget, the statusbar

View File

@ -1,3 +1,9 @@
Mon Jan 19 00:46:18 1998 MET Eckehard Berns <eb@berns.prima.de>
* gtk/gtktoolbar.[ch]: changed
gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
as icon to allow more flexibility
Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
* gtk/gtkstatusbar.[ch] added new widget, the statusbar

View File

@ -1,3 +1,9 @@
Mon Jan 19 00:46:18 1998 MET Eckehard Berns <eb@berns.prima.de>
* gtk/gtktoolbar.[ch]: changed
gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
as icon to allow more flexibility
Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
* gtk/gtkstatusbar.[ch] added new widget, the statusbar

View File

@ -1,3 +1,9 @@
Mon Jan 19 00:46:18 1998 MET Eckehard Berns <eb@berns.prima.de>
* gtk/gtktoolbar.[ch]: changed
gtk_toolbar_{append,prepend,inser]_item to accept any GtkWidget
as icon to allow more flexibility
Sun Jan 18 16:54:55 CST 1998 Shawn T. Amundson <amundson@gimp.org>
* gtk/gtkstatusbar.[ch] added new widget, the statusbar

View File

@ -573,7 +573,7 @@ GtkWidget *
gtk_toolbar_append_item (GtkToolbar *toolbar,
const char *text,
const char *tooltip_text,
GtkPixmap *icon,
GtkWidget *icon,
GtkSignalFunc callback,
gpointer user_data)
{
@ -585,7 +585,7 @@ GtkWidget *
gtk_toolbar_prepend_item (GtkToolbar *toolbar,
const char *text,
const char *tooltip_text,
GtkPixmap *icon,
GtkWidget *icon,
GtkSignalFunc callback,
gpointer user_data)
{
@ -597,7 +597,7 @@ GtkWidget *
gtk_toolbar_insert_item (GtkToolbar *toolbar,
const char *text,
const char *tooltip_text,
GtkPixmap *icon,
GtkWidget *icon,
GtkSignalFunc callback,
gpointer user_data,
gint position)

View File

@ -76,19 +76,19 @@ GtkWidget *gtk_toolbar_new (GtkOrientation orientation,
GtkWidget *gtk_toolbar_append_item (GtkToolbar *toolbar,
const char *text,
const char *tooltip_text,
GtkPixmap *icon,
GtkWidget *icon,
GtkSignalFunc callback,
gpointer user_data);
GtkWidget *gtk_toolbar_prepend_item (GtkToolbar *toolbar,
const char *text,
const char *tooltip_text,
GtkPixmap *icon,
GtkWidget *icon,
GtkSignalFunc callback,
gpointer user_data);
GtkWidget *gtk_toolbar_insert_item (GtkToolbar *toolbar,
const char *text,
const char *tooltip_text,
GtkPixmap *icon,
GtkWidget *icon,
GtkSignalFunc callback,
gpointer user_data,
gint position);