Re: Gtk::ComboDropDown on_select_child(Widget& item)
- From: Bob Caryl <bob fis-cal com>
- To: Rose Cumming <rose_alice_cumming hotmail com>
- Cc: gtkmm-list gnome org
- Subject: Re: Gtk::ComboDropDown on_select_child(Widget& item)
- Date: Fri, 06 May 2005 09:06:03 -0500
Rose Cumming wrote:
Hello,
Does anybody know the semantics for connecting to this member function:
on_select_child(Widget& item)
I have a Gtk::Combo widget and I can get on_selection_changed working.
i.e.
SigC::Slot0<void> signalSlot = SigC::slot(*this,
&ExampleWindow::selection_changed);
m_Combo.get_list()->signal_selection_changed().connect(signalSlot);
But I don't know how to do that for on_select_child because it takes a
widget item as an argument?
Also, is this function let the application knows which item on the
pull-down list is selected?
Your help is greatly appreciated.
Thank you,
Rose
_________________________________________________________________
Scan and help eliminate destructive viruses from your inbound and
outbound e-mail and attachments.
http://join.msn.com/?pgmarket=en-ca&page=byoa/prem&xAPID=1994&DI=1034&SU=http://hotmail.com/enca&HL=Market_MSNIS_Taglines
Start enjoying all the benefits of MSN® Premium right now and get the
first two months FREE*.
_______________________________________________
gtkmm-list mailing list
gtkmm-list gnome org
http://mail.gnome.org/mailman/listinfo/gtkmm-list
You want to connect to Gtk::ComboDropDown::signal_select_child, ala
m_Combo.get_list()->signal_select_child().connect(sigc::mem_fun(*this,&ExampleWindow::on_child_selected));
Where &ExampleWindow::on_child_selected is prototyped:
void on_child_selected(Gtk::Widget& child);
in your ExampleWindow class derivation.
Bob Caryl
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]