Searched defs:response_id (Results 1 - 5 of 5) sorted by relevance

/inkscape/src/ui/dialog/
H A Daboutbox.cpp155 void AboutBox::on_response(int response_id) { argument
156 if ( response_id == Gtk::RESPONSE_CLOSE ) {
H A Ddialog.cpp219 void Dialog::_handleResponse(int response_id) argument
221 switch (response_id) {
H A Dpixelartdialog.cpp100 void responseCallback(int response_id);
324 void PixelArtDialogImpl::responseCallback(int response_id) argument
326 if (response_id == GTK_RESPONSE_OK) {
328 } else if (response_id == GTK_RESPONSE_CANCEL) {
331 } else if (response_id == GTK_RESPONSE_HELP) {
H A Dtracedialog.cpp68 void responseCallback(int response_id);
467 void TraceDialogImpl::responseCallback(int response_id) argument
469 if (response_id == GTK_RESPONSE_OK) {
472 } else if (response_id == GTK_RESPONSE_CANCEL) {
474 } else if (response_id == GTK_RESPONSE_HELP) {
/inkscape/src/ui/widget/
H A Dpanel.cpp579 Gtk::Button *Panel::addResponseButton(const Glib::ustring &button_text, int response_id, bool pack_start) argument
582 _addResponseButton(button, response_id, pack_start);
586 Gtk::Button *Panel::addResponseButton(const Gtk::StockID &stock_id, int response_id, bool pack_start) argument
589 _addResponseButton(button, response_id, pack_start);
593 void Panel::_addResponseButton(Gtk::Button *button, int response_id, bool pack_start) argument
614 if (response_id != 0) {
616 button->signal_clicked().connect(sigc::bind(_signal_response.make_slot(), response_id));
617 _response_map[response_id] = button;
621 void Panel::setDefaultResponse(int response_id) argument
624 widget_found = _response_map.find(response_id);
633 setResponseSensitive(int response_id, bool setting) argument
657 _handleResponse(int response_id) argument
[all...]

Completed in 25 milliseconds