/inkscape/src/ui/dialog/ |
H A D | behavior.h | 30 typedef Behavior *(*BehaviorFactory)(Dialog &dialog); 33 Behavior *create(Dialog &dialog) argument 35 return T::create(dialog); 74 Behavior(Dialog &dialog) argument 75 : _dialog (dialog)
|
H A D | dialog-manager.cpp | 20 #include "ui/dialog/dialog-manager.h" 22 #include "ui/dialog/align-and-distribute.h" 23 #include "ui/dialog/document-metadata.h" 24 #include "ui/dialog/document-properties.h" 25 #include "ui/dialog/extension-editor.h" 26 #include "ui/dialog/fill-and-stroke.h" 27 #include "ui/dialog/filter-effects-dialog.h" 28 #include "ui/dialog/fin 246 Dialog *dialog=NULL; local 275 Dialog *dialog = getDialog(name); local [all...] |
H A D | knot-properties.cpp | 19 #include "ui/dialog/knot-properties.h" 115 KnotPropertiesDialog *dialog = new KnotPropertiesDialog(); local 116 dialog->_setDesktop(desktop); 117 dialog->_setKnotPoint(pt->position(), unit_name); 118 dialog->_setPt(pt); 120 dialog->set_title(_("Modify Knot Position")); 121 dialog->_apply_button.set_label(_("_Move")); 123 dialog->set_modal(true); 124 desktop->setWindowTransient (dialog->gobj()); 125 dialog [all...] |
H A D | lpe-powerstroke-properties.cpp | 116 PowerstrokePropertiesDialog *dialog = new PowerstrokePropertiesDialog(); local 118 dialog->_setDesktop(desktop); 119 dialog->_setKnotPoint(knotpoint); 120 dialog->_setPt(pt); 122 dialog->set_title(_("Modify Node Position")); 123 dialog->_apply_button.set_label(_("_Move")); 125 dialog->set_modal(true); 126 desktop->setWindowTransient (dialog->gobj()); 127 dialog->property_destroy_with_parent() = true; 129 dialog [all...] |
H A D | debug.cpp | 3 * A dialog that displays log messages. 17 #include <gtkmm/dialog.h> 31 * A very simple dialog for displaying Inkscape messages - implementation. 121 DebugDialog *dialog = new DebugDialogImpl(); local 122 return dialog; 170 // this is not a real memleak because getInstance() only creates a debug dialog once, and returns that instance for all subsequent calls
|
H A D | filedialog.cpp | 3 * Implementation of the file dialog interfaces defined in filedialog.h. 23 #include "ui/dialog-events.h" 92 FileOpenDialog *dialog = NULL; local 95 dialog = new FileOpenDialogImplWin32(parentWindow, path, fileTypes, title); 97 dialog = new FileOpenDialogImplGtk(parentWindow, path, fileTypes, title); 100 FileOpenDialog *dialog = new FileOpenDialogImplGtk(parentWindow, path, fileTypes, title); 103 return dialog; 127 FileSaveDialog *dialog = NULL; local 130 dialog = new FileSaveDialogImplWin32(parentWindow, path, fileTypes, title, default_key, docTitle, save_method); 132 dialog 200 FileExportDialog *dialog = new FileExportDialogImpl(parentWindow, path, fileTypes, title, default_key); local [all...] |
H A D | lpe-fillet-chamfer-properties.cpp | 2 * From the code of Liam P.White from his Power Stroke Knot dialog 128 FilletChamferPropertiesDialog *dialog = new FilletChamferPropertiesDialog(); local 130 dialog->_set_desktop(desktop); 131 dialog->_set_use_distance(use_distance); 132 dialog->_set_aprox(aprox_radius); 133 dialog->_set_knot_point(knotpoint); 134 dialog->_set_pt(pt); 136 dialog->set_title(_("Modify Fillet-Chamfer")); 137 dialog->_apply_button.set_label(_("_Modify")); 139 dialog [all...] |
H A D | dock-behavior.cpp | 3 * A dockable dialog implementation. 25 #include "dialog.h" 27 #include "ui/dialog-events.h" 41 DockBehavior::DockBehavior(Dialog &dialog) : argument 42 Behavior(dialog), 44 Inkscape::Verb::get(dialog._verb_num)->get_id(), dialog._title.c_str(), 45 (Inkscape::Verb::get(dialog._verb_num)->get_image() ? 46 Inkscape::Verb::get(dialog._verb_num)->get_image() : ""), 73 DockBehavior::create(Dialog &dialog) argument [all...] |
H A D | floating-behavior.cpp | 3 * Floating dialog implementation. 17 #include <gtkmm/dialog.h> 23 #include "dialog.h" 27 #include "ui/dialog-events.h" 37 FloatingBehavior::FloatingBehavior(Dialog &dialog) : argument 38 Behavior(dialog), 135 FloatingBehavior::create(Dialog &dialog) argument 137 return new FloatingBehavior(dialog); 208 /* if retransientizing of this dialog is still forbidden after 219 _dialog.retransientize_suppress = true; // disallow other attempts to retranzientize this dialog [all...] |
H A D | layer-properties.cpp | 113 LayerPropertiesDialog *dialog = new LayerPropertiesDialog(); local 115 dialog->_strategy = &strategy; 116 dialog->_setDesktop(desktop); 117 dialog->_setLayer(layer); 119 dialog->_strategy->setup(*dialog); 121 dialog->set_modal(true); 122 desktop->setWindowTransient (dialog->gobj()); 123 dialog->property_destroy_with_parent() = true; 125 dialog 350 setup(LayerPropertiesDialog &dialog) argument 358 perform(LayerPropertiesDialog &dialog) argument 373 setup(LayerPropertiesDialog &dialog) argument 384 perform(LayerPropertiesDialog &dialog) argument 407 setup(LayerPropertiesDialog &dialog) argument 415 perform(LayerPropertiesDialog &dialog) argument [all...] |
H A D | pixelartdialog.cpp | 3 * Pixel art tracing settings dialog - implementation. 68 * A dialog for adjusting pixel art -> vector tracing parameters 391 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_WARNING, 394 if ( dialog.run() != Gtk::RESPONSE_OK ) 425 Gtk::MessageDialog dialog(msg, false, Gtk::MESSAGE_WARNING, 428 if ( dialog.run() != Gtk::RESPONSE_OK ) 571 PixelArtDialog *dialog = new PixelArtDialogImpl(); local 572 return *dialog;
|
H A D | svg-fonts-dialog.h | 2 * @brief SVG Fonts dialog 98 SvgFontsDialog* dialog; member in class:Inkscape::UI::Dialog::SvgFontsDialog::AttrEntry
|
H A D | align-and-distribute.h | 2 * @brief Align and Distribute dialog 26 #include "ui/dialog/desktop-tracker.h" 171 AlignAndDistribute &dialog); 200 AlignAndDistribute &dialog, 203 dialog.align_table(), dialog), 205 _dialog(dialog) 197 ActionAlign(const Glib::ustring &id, const Glib::ustring &tiptext, guint row, guint column, AlignAndDistribute &dialog, guint coeffIndex) argument
|
H A D | align-and-distribute.cpp | 3 * Align and Distribute dialog - implementation. 69 AlignAndDistribute &dialog): 70 _dialog(dialog), 273 AlignAndDistribute &dialog, 279 dialog.distribute_table(), dialog), 280 _dialog(dialog), 401 AlignAndDistribute &dialog, 404 dialog.nodes_table(), dialog), 61 Action(const Glib::ustring &id, const Glib::ustring &tiptext, guint row, guint column, Gtk::Grid &parent, AlignAndDistribute &dialog) argument 270 ActionDistribute(const Glib::ustring &id, const Glib::ustring &tiptext, guint row, guint column, AlignAndDistribute &dialog, bool onInterSpace, Geom::Dim2 orientation, double kBegin, double kEnd ) argument 398 ActionNode(const Glib::ustring &id, const Glib::ustring &tiptext, guint column, AlignAndDistribute &dialog, Geom::Dim2 orientation, bool distribute) argument 442 ActionRemoveOverlaps(Glib::ustring const &id, Glib::ustring const &tiptext, guint row, guint column, AlignAndDistribute &dialog) argument 514 ActionGraphLayout(Glib::ustring const &id, Glib::ustring const &tiptext, guint row, guint column, AlignAndDistribute &dialog) argument 551 ActionExchangePositions(Glib::ustring const &id, Glib::ustring const &tiptext, guint row, guint column, AlignAndDistribute &dialog, SortOrder order = None) argument 641 ActionUnclump(const Glib::ustring &id, const Glib::ustring &tiptext, guint row, guint column, AlignAndDistribute &dialog) argument 672 ActionRandomize(const Glib::ustring &id, const Glib::ustring &tiptext, guint row, guint column, AlignAndDistribute &dialog) argument 760 ActionBaseline(const Glib::ustring &id, const Glib::ustring &tiptext, guint row, guint column, AlignAndDistribute &dialog, Gtk::Grid &table, Geom::Dim2 orientation, bool distribute) argument [all...] |
H A D | tracedialog.cpp | 3 * Bitmap tracing settings dialog - implementation. 47 * A dialog for adjusting bitmap->vector tracing parameters 465 * Default response from the dialog. Let's intercept it 840 TraceDialog *dialog = new TraceDialogImpl(); local 841 return *dialog;
|
H A D | input.cpp | 3 * Input devices dialog (new) - implementation. 605 InputDialog *dialog = new InputDialogImpl(); local 606 return *dialog;
|
H A D | swatches.cpp | 3 * Color swatches dialog. 54 #include "dialog-manager.h" 149 // Legacy gradient dialog 150 GtkWidget *dialog = sp_gradient_vector_editor_new( gr ); local 151 gtk_widget_show( dialog );
|
/inkscape/src/extension/ |
H A D | output.cpp | 170 \return A dialog to get settings for this extension 171 \brief Create a dialog for preference for this extension 189 PrefDialog * dialog = new PrefDialog(this->get_name(), this->get_help(), controls); local 190 int response = dialog->run(); 191 dialog->hide(); 193 delete dialog;
|
H A D | input.cpp | 206 \return A dialog to get settings for this extension 207 \brief Create a dialog for preference for this extension 228 PrefDialog * dialog = new PrefDialog(this->get_name(), this->get_help(), controls); local 229 int response = dialog->run(); 230 dialog->hide(); 232 delete dialog;
|
/inkscape/src/ui/ |
H A D | dialog-events.cpp | 3 * Event handler for dialog windows. 28 #include "ui/dialog-events.h" 60 * Callback to defocus a widget's parent dialog. 114 // close dialog 117 /* this code sends a delete_event to the dialog, 119 * dialog can do some housekeeping, such as remember 148 * Make the argument dialog transient to the currently active document 151 void sp_transientize(GtkWidget *dialog) argument 159 gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dialog), TRUE); 171 // if there's an active document window, attach dialog t [all...] |
H A D | interface.cpp | 26 #include "ui/dialog/dialog-manager.h" 60 #include "ui/dialog-events.h" 80 #include "ui/dialog/layer-properties.h" 1391 GtkWidget* dialog = gtk_message_dialog_new_with_markup( window->gobj(), local 1400 gtk_dialog_add_buttons( GTK_DIALOG(dialog), 1404 gtk_dialog_set_default_response( GTK_DIALOG(dialog), GTK_RESPONSE_YES ); 1406 if ( gtk_dialog_run( GTK_DIALOG(dialog) ) == GTK_RESPONSE_YES ) { 1411 gtk_widget_destroy(dialog); 1489 positionOfLastDialog = 10; // 9 in front + 1 for the separator in the next if; used to position the dialog men [all...] |
/inkscape/src/widgets/ |
H A D | spw-utilities.cpp | 147 GtkWidget *spw_vbox_checkbutton(GtkWidget *dialog, GtkWidget *vbox, argument 150 g_assert (dialog != NULL); 159 g_object_set_data (G_OBJECT (dialog), key, b); 160 g_signal_connect (G_OBJECT (b), "toggled", cb, dialog); local 170 spw_checkbutton(GtkWidget * dialog, GtkWidget * table, argument 176 g_assert(dialog != NULL); 213 g_object_set_data (G_OBJECT (dialog), key, b); 214 g_signal_connect (G_OBJECT (b), "toggled", cb, dialog); local 226 spw_dropdown(GtkWidget * dialog, GtkWidget * table, argument 231 g_assert(dialog ! [all...] |
H A D | gradient-selector.cpp | 523 // Legacy gradient dialog 524 GtkWidget *dialog; local 525 dialog = sp_gradient_vector_editor_new (SP_GRADIENT_VECTOR_SELECTOR (sel->vectors)->gr); 526 gtk_widget_show (dialog);
|
H A D | desktop-widget.cpp | 29 #include "ui/dialog/dialog-manager.h" 55 #include "ui/dialog/swatches.h" 1161 GtkWidget *dialog; local 1167 dialog = gtk_message_dialog_new_with_markup( 1176 GtkWidget *ma = gtk_message_dialog_get_message_area(GTK_MESSAGE_DIALOG(dialog)); 1184 gtk_dialog_add_action_widget(GTK_DIALOG(dialog), close_button, GTK_RESPONSE_NO); 1186 gtk_dialog_add_button(GTK_DIALOG(dialog), _("_Cancel"), GTK_RESPONSE_CANCEL); 1187 gtk_dialog_add_button(GTK_DIALOG(dialog), _("_Save"), GTK_RESPONSE_YES); 1188 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_YE 1220 GtkWidget *dialog; local 1450 GtkWidget *dialog = gtk_message_dialog_new( local [all...] |
/inkscape/src/ |
H A D | gradient-chemistry.cpp | 679 GtkWidget *dialog = sp_gradient_vector_editor_new (vector, vector->getFirstStop()); local 680 gtk_widget_show (dialog); 688 GtkWidget *dialog = sp_gradient_vector_editor_new (vector, sp_last_stop (vector)); local 689 gtk_widget_show (dialog); 697 GtkWidget *dialog = sp_gradient_vector_editor_new (vector, sp_get_stop_i (vector, point_i)); local 698 gtk_widget_show (dialog);
|