Re: Re: Adding Columns to Gtk::TreeView

2006-07-31 Thread Mark Kegel
Asssuming you have the column in hand you can add it using gtk_tree_view_insert_column. I believe that this function can be called at any time, so you shouldn't have to worry about adding columns during runtime. You'll also need to setup your model obviously for the column that you're adding. Mark

Re: Adding Columns to Gtk::TreeView

2006-07-31 Thread Murray Cumming
> Hi all, > I'm writing an application, where in I need to add columns to a TreeView. > But the catch is those columns will be added at the run time. The other > thing is i dont know how many columns I'd be adding during run time. > > But I know what type of columns i'd be adding (say string/bool

Adding Columns to Gtk::TreeView

2006-07-31 Thread Surya Kiran Gullapalli
Hi all,I'm writing an application, where inĀ  I need to add columns to a TreeView. But the catch is those columns will be added at the run time. The other thing is i dont know how many columns I'd be adding during run time. But I know what type of columns i'd be adding (say string/boolean/pixbuf etc