Lines Matching defs:button
89 if ( (event->type == GDK_BUTTON_PRESS) && (event->button == 3 || event->button == 1) ) {
91 _menu->popup(event->button, event->time);
576 g_warning("Apply button clicked for panel [Panel::_apply()]");
581 Gtk::Button *button = new Gtk::Button(button_text);
582 _addResponseButton(button, response_id, pack_start);
583 return button;
588 Gtk::Button *button = new Gtk::Button(stock_id);
589 _addResponseButton(button, response_id, pack_start);
590 return button;
593 void Panel::_addResponseButton(Gtk::Button *button, int response_id, bool pack_start)
595 // Create a button box for the response buttons if it's the first button to be added
608 _action_area->pack_end(*button);
611 _action_area->set_child_secondary( *button , true);
616 button->signal_clicked().connect(sigc::bind(_signal_response.make_slot(), response_id));
617 _response_map[response_id] = button;