Searched refs:response_id (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/ui/dialog/
H A Daboutbox.h41 virtual void on_response(int response_id);
H A Ddialog.h122 virtual void _handleResponse(int response_id);
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.h114 Gtk::Button* addResponseButton (const Glib::ustring &button_text, int response_id, bool pack_start=false);
115 Gtk::Button* addResponseButton (const Gtk::StockID &stock_id, int response_id, bool pack_start=false);
116 void setDefaultResponse(int response_id);
117 void setResponseSensitive(int response_id, bool setting);
134 virtual void _handleResponse(int response_id);
137 void _addResponseButton(Gtk::Button *button, int response_id, bool pack_start=false);
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 45 milliseconds