Re: word wrap in liststore column

2010-06-26 Thread Steve Harrington
On 06/26/2010 08:19 PM, Florian Müllner wrote: Hi, El dom, 27-06-2010 a las 12:25 +1000, Mick escribió: I know that, I have searched but not found anything that says "this is how you set the properties of ..." ... an GObject: http://library.gnome.org/devel/gobject/stable/gobject-The-

Re: word wrap in liststore column

2010-06-26 Thread Steve Harrington
On 06/26/2010 07:25 PM, Mick wrote: On Sat, 26 Jun 2010 02:17:11 -0400 Tristan Van Berkom wrote: On Fri, Jun 25, 2010 at 8:44 PM, Mick wrote: I'm stuck again. I wish to set word-wrap for a single column in a treeview liststore, I've found the options I need to set but can't for th

Re: GNOME images not displaying

2010-06-12 Thread Steve Harrington
On 06/12/2010 04:58 PM, Mario Kemper wrote: Did you have a look at the related gconf-settings? See: http://www.ubuntu-pics.de/bild/82215/konfigurationseditor___interface_084_eoQowm.png Regards Mario Am Samstag, den 12.06.2010, 15:28 -0700 schrieb Steve Harrington: I'm having a pr

GNOME images not displaying

2010-06-12 Thread Steve Harrington
I'm having a problem getting the gnome stock icons to display. Here is a simple XML file creating two buttons. Both have an image on the button but only one of the images displays. The program to display this GUI is also attached. What am I missing? XML: True True True True Tru

Re: GtkTextView and glade 3

2010-06-07 Thread Steve Harrington
On 06/07/2010 09:36 PM, Mick wrote: I've spent the last month struggling with glade to layout the interface for my app, especially creating an incoming text pane and placing the text into it. I regret your struggles. I currently have glade set to libglade mode and use gtk-builder-convert t

Re: Clearing GtkComboBoxEntry

2009-12-08 Thread Steve Harrington
Carlos Pereira wrote: David is right, you should get the entry pointer with gtk_bin_get_child, and after that you handle this entry as any other entry: entry = gtk_bin_get_child (GTK_BIN (combo_entry)); gtk_entry_set_text (GTK_ENTRY (entry), ""); In GTK 2.0 you can also use this: gtk_entry_s

Clearing GtkComboBoxEntry

2009-12-07 Thread Steve Harrington
I have an application using GtkComboBoxEntry with a simple 2-column int/char * ListEntry model. If the user enters data in the box (as opposed to using a pull-down selector) I can access the index with gtk_combo_box_get_active( GTK_COMBO_BOX(W) ); and the text with gtk_combo_box_get

g_object_get_data Programmer error

2009-11-03 Thread Steve Harrington
I am trying to use g_object_get_data() to retrieve the GtkWidget * of an object. Seems simple enough but The attached code doesn't work. I must have missed something simple but darned if I can see it. All help appreciated. /* * This program is free software; you can redistribute it and/or *