Re: Hidden Columns in Gtk::TreeView

2006-02-24 Thread Nathan Hüsken
Oh ... I feel stupid. Yes, that was the problem. I forget to link in the library, in wich the default contructor is implemented. Thanks a lot! Nathan Quoting Armin Burgmeier <[EMAIL PROTECTED]>: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 value_custom.h:267: undefined reference to `rythem_

RE: Hidden Columns in Gtk::TreeView

2006-02-23 Thread Huston, Bob
üsken; gtkmm-list@gnome.org Subject: RE: Hidden Columns in Gtk::TreeView On Wed, 2006-02-22 at 15:39 -0500, Huston, Bob wrote: > I have done this exact thing, I think the tree view will only allow > a certain number of types to be columns, the way I got around what you > are > seeing is

RE: Hidden Columns in Gtk::TreeView, making life easier.

2006-02-22 Thread Ed Leaver
On Wed, 2006-02-22 at 15:24, Murray Cumming wrote: On Wed, 2006-02-22 at 15:39 -0500, Huston, Bob wrote: > I have done this exact thing, I think the tree view will only allow > a certain number of types to be columns, the way I got around what you > are > seeing is add the column as a void *,

Re: Hidden Columns in Gtk::TreeView

2006-02-22 Thread Nathan Hüsken
Oh ... I feel stupid. Yes, that was the problem. I forget to link in the library, in wich the default contructor is implemented. Thanks a lot! Nathan Quoting Armin Burgmeier <[EMAIL PROTECTED]>: Did you declare a rythem_pattern default constructor but did not implement one (I assume rythem_patt

RE: Hidden Columns in Gtk::TreeView

2006-02-22 Thread Murray Cumming
On Wed, 2006-02-22 at 15:39 -0500, Huston, Bob wrote: > I have done this exact thing, I think the tree view will only allow > a certain number of types to be columns, the way I got around what you > are > seeing is add the column as a void *, then type cast a ptr to my class > to go into the column

Re: Hidden Columns in Gtk::TreeView

2006-02-22 Thread Armin Burgmeier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > value_custom.h:267: undefined reference to > `rythem_pattern::rythem_pattern[in-charge]()' Did you declare a rythem_pattern default constructor but did not implement one (I assume rythem_pattern is the type of the hidden column you want to add)? -

RE: Hidden Columns in Gtk::TreeView

2006-02-22 Thread Huston, Bob
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nathan Hüsken Sent: Wednesday, February 22, 2006 3:37 PM To: gtkmm-list@gnome.org Subject: Hidden Columns in Gtk::TreeView Hello together, I want to add some extra information to every row in Gtk::TreeView. The tutorial says: "Hidden" C

Hidden Columns in Gtk::TreeView

2006-02-22 Thread Nathan Hüsken
Hello together, I want to add some extra information to every row in Gtk::TreeView. The tutorial says: "Hidden" Columns You might want to associate extra data with each row. If so, just add it as a Model column, but don't add it to the View. So I want information from the class "may_class" i