forked from AuroraMiddleware/gtk
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:
parent
9dcce18815
commit
0c6a6baa08
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user