Re: Re : Iconview stock items

2012-01-23 Thread Nicolas SOUBEIRAN
You should have read the compiler warning (and the runtime warning) : the icon_view var is not initialized when you call init_model GtkWidget *icon_view; // call of uninitialized icon_view in function init_model icon_view = gtk_icon_view_new_with_model(init_model(icon_view)); You should have

Re: Re : Iconview stock items

2012-01-22 Thread Neil Munro
I am still having issues with this, I have attached my test code for reference, the code compiles but simply segfaults upon running, it's a curious issue cos I can't see what I might be doing wrong. On 18 January 2012 13:21, Nicolas Soubeiran nicolas.soubei...@gmail.com wrote: For the widget you

Re: Re : Iconview stock items

2012-01-18 Thread Nicolas Soubeiran
For the widget you should pass the iconview where you want to display the stock. The detail parameter is for the theme engine, if you do not understand, it probably means that NULL should be OK. I recommend an update of Gtk to you. The 2.6 version you seem to use is a 5 years old version of GTK2

Re: Re : Iconview stock items

2012-01-17 Thread Nicolas SOUBEIRAN
Le 17/01/2012 02:02, Neil Munro a écrit : On 16 January 2012 19:01, Nicolas SOUBEIRANnicolas.soubei...@gmail.com wrote: Use gtk_widget_render_icon_pixbuf If you need a custom size, you may look after gtk_icon_size_register Is this a gtk3 function as I cannot find it as a function of a gtk2

Re: Re : Iconview stock items

2012-01-17 Thread Neil Munro
On 17 January 2012 18:20, Nicolas SOUBEIRAN nicolas.soubei...@gmail.com wrote: Le 17/01/2012 02:02, Neil Munro a écrit : On 16 January 2012 19:01, Nicolas SOUBEIRANnicolas.soubei...@gmail.com  wrote: Use gtk_widget_render_icon_pixbuf If you need a custom size, you may look after

Re : Iconview stock items

2012-01-16 Thread Nicolas SOUBEIRAN
Use gtk_widget_render_icon_pixbuf If you need a custom size, you may look after gtk_icon_size_register ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Re : Iconview stock items

2012-01-16 Thread Neil Munro
On 16 January 2012 19:01, Nicolas SOUBEIRAN nicolas.soubei...@gmail.com wrote: Use gtk_widget_render_icon_pixbuf If you need a custom size, you may look after gtk_icon_size_register Is this a gtk3 function as I cannot find it as a function of a gtk2 widget:

Iconview stock items

2012-01-14 Thread Neil Munro
I am working with an icon view and am trying to load stock items into the gdk_pixbuf_new_from_file( ) but it's not working, I assume that is perhaps because I am using the function wrong, is there a way to do what I am trying to do? I am following the tutorial here: