You might need to react to every change of selection in the ComboBox, for instance to update other widgets. To do so, you should handle the changed
signal. For instance:
m_combo.signal_changed().connect( sigc::mem_fun(*this,
&ExampleWindow::on_combo_changed) );