How to add stuff to treeviews??

2007-05-28 Thread Jason Brisbane
Original Message From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [Glade-users] How to add stuff to treeviews?? Date: Mon, 28 May 2007 22:09:36 +0800 Michael Ekstrand wrote: > On Fri, 2007-05-25 at 11:47 +0300, Felipe Balbi wrote: > >> After getting my treeview using glade_x

Re: Problem with gtk drawing primitive

2007-05-28 Thread Jerome Blondel
David Nec(as (Yeti) : > On Mon, May 28, 2007 at 08:21:01PM +0200, Jerome Blondel wrote: > >> I'm making a widget from scratch using the tutorial's GtkDial as a base. >> For now I just want to draw something in my widget. The following error >> occurs >> >> (test_sw:4242): Gtk-CRITICAL **: gtk

Re: Problem with gtk drawing primitive

2007-05-28 Thread Yeti
On Mon, May 28, 2007 at 08:21:01PM +0200, Jerome Blondel wrote: > I'm making a widget from scratch using the tutorial's GtkDial as a base. > For now I just want to draw something in my widget. The following error > occurs > > (test_sw:4242): Gtk-CRITICAL **: gtk_paint_polygon: assertion > `sty

libgnomedbmm-2.9.5 problem with compilation

2007-05-28 Thread cl4sh
I've try to compile libgnomedbmm-2.9.5 from sources. After make there was an error looks like : generate_defs_gnomedb.cc:22:47: error: libgnomedb-graph/libgnomedb-graph.h: No such file or directory generate_defs_gnomedb.cc: In function 'int main(int, char**)': generate_defs_gnomedb.cc:84: error:

Problem with gtk drawing primitive

2007-05-28 Thread Jerome Blondel
Hi I'm making a widget from scratch using the tutorial's GtkDial as a base. For now I just want to draw something in my widget. The following error occurs (test_sw:4242): Gtk-CRITICAL **: gtk_paint_polygon: assertion `style->depth == gdk_drawable_get_depth (window)' failed This is the code i

Re: Customizing GtkFileChooserDialog

2007-05-28 Thread Olivier Guilyardi
Emmanuele Bassi wrote: > On Mon, 2007-05-28 at 17:51 +0200, Olivier Guilyardi wrote: >> >> I need to add some extra saving options to a GtkFileChooserDialog. In this >> purpose I'm trying to access its vbox with: >> >> GtkWidget *label = gtk_button_new_with_label ("test"); >> gtk_container_add (GTK

Re: Customizing GtkFileChooserDialog

2007-05-28 Thread Emmanuele Bassi
On Mon, 2007-05-28 at 17:51 +0200, Olivier Guilyardi wrote: > Hi, > > I need to add some extra saving options to a GtkFileChooserDialog. In this > purpose I'm trying to access its vbox with: > > GtkWidget *label = gtk_button_new_with_label ("test"); > gtk_container_add (GTK_CONTAINER (GTK_DIALOG

Re: Customizing GtkFileChooserDialog

2007-05-28 Thread Scott Horowitz
On 5/28/07, Olivier Guilyardi <[EMAIL PROTECTED]> wrote: > Hi, > > I need to add some extra saving options to a GtkFileChooserDialog. In this > purpose I'm trying to access its vbox with: > > GtkWidget *label = gtk_button_new_with_label ("test"); > gtk_container_add (GTK_CONTAINER (GTK_DIALOG (file

Customizing GtkFileChooserDialog

2007-05-28 Thread Olivier Guilyardi
Hi, I need to add some extra saving options to a GtkFileChooserDialog. In this purpose I'm trying to access its vbox with: GtkWidget *label = gtk_button_new_with_label ("test"); gtk_container_add (GTK_CONTAINER (GTK_DIALOG (file_chooser_dialog)->vbox), label); But it has no effect and produces