Hi,
Code:
table = gtk_table_new( 1, 2, FALSE );
label_status = gtk_label_new( "Status" );
image = gtk_image_new_from_stock( GTK_STOCK_OK, GTK_ICON_SIZE_MENU );
gtk_table_attach( GTK_TABLE( table ), label_status, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 2, 2 );
gtk_table_attach( GTK_TABLE( table ), image, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 2, 2 );
and is ok, is working, both label and image are show.
how can i change the image in the image cell ?
thanks !
the answer was here
http://developer.gnome.org/gtk/stable/GtkImage.html#gtk-image-set-from-imagesorry for this post !