Re: Cross-coupling comboboxes

2019-06-06 Thread Rob Pearce
On 06/06/2019 09:18, Carlos Gomez wrote: If both ComboBoxes has the same items, perhaps you should use Gtk::TreeModel::Path. They not only have the same items, they share a TreeModel instance and a TreeModel::Columns instance (I believe this is an officially approved scheme). So yes, Path

Re: Cross-coupling comboboxes

2019-06-06 Thread Carlos Gomez
Hi, If both ComboBoxes has the same items, perhaps you should use Gtk::TreeModel::Path. On 05/06/2019 18:58, Rob Pearce wrote: Hello experts, I have a GTKmm (2.24) application in which two different windows each have a ComboBoxText controlling the same item, so that whenever the user

Re: Cross-coupling comboboxes

2019-06-06 Thread Daniel Boles via gtkmm-list
>>> This is implemented by calling the set_active with the result of get_active_row_number. Because the content of those combo boxes has got rather voluminous, I now want to convert them to hierarchical. So the ...Text version is no good and I'm using a ComboBox with a TreeStore behind it. The