Searched refs:response_id (Results 1 - 8 of 8) sorted by relevance
| /inkscape/src/ui/dialog/ |
| H A D | aboutbox.h | 41 virtual void on_response(int response_id);
|
| H A D | dialog.h | 122 virtual void _handleResponse(int response_id);
|
| H A D | aboutbox.cpp | 155 void AboutBox::on_response(int response_id) { argument 156 if ( response_id == Gtk::RESPONSE_CLOSE ) {
|
| H A D | dialog.cpp | 219 void Dialog::_handleResponse(int response_id) argument 221 switch (response_id) {
|
| H A D | pixelartdialog.cpp | 100 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 D | tracedialog.cpp | 68 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 D | panel.h | 114 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 D | panel.cpp | 579 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 36 milliseconds