Code

a747e004577346a36cc1584c8c822220ddfe4b24
[inkscape.git] / src / ui / dialog / inkscape-preferences.cpp
1 /**
2  * \brief Inkscape Preferences dialog
3  *
4  * Authors:
5  *   Carl Hetherington
6  *   Marco Scholten
7  *   Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
8  *   Bruno Dilly <bruno.dilly@gmail.com>
9  *
10  * Copyright (C) 2004-2007 Authors
11  *
12  * Released under GNU GPL.  Read the file 'COPYING' for more information.
13  */ 
15 #ifdef HAVE_CONFIG_H
16 # include <config.h>
17 #endif
19 #include <gtkmm/main.h>
20 #include <gtkmm/frame.h>
21 #include <gtkmm/scrolledwindow.h>
22 #include <gtkmm/alignment.h>
24 #include "prefs-utils.h"
25 #include "inkscape-preferences.h"
26 #include "verbs.h"
27 #include "selcue.h"
28 #include "unit-constants.h"
29 #include <iostream>
30 #include "enums.h"
31 #include "inkscape.h"
32 #include "desktop-handles.h"
33 #include "message-stack.h"
34 #include "style.h"
35 #include "selection.h"
36 #include "selection-chemistry.h"
37 #include "xml/repr.h"
38 #include "ui/widget/style-swatch.h"
39 #include "display/nr-filter-gaussian.h"
40 #include "color-profile-fns.h"
42 namespace Inkscape {
43 namespace UI {
44 namespace Dialog {
46 InkscapePreferences::InkscapePreferences(Behavior::BehaviorFactory behavior_factory)
47     : Dialog (behavior_factory, "dialogs.preferences", SP_VERB_DIALOG_DISPLAY),
48       _max_dialog_width(0), 
49       _max_dialog_height(0),
50       _current_page(0)
51
52     //get the width of a spinbutton
53     Gtk::SpinButton* sb = new Gtk::SpinButton;
54     sb->set_width_chars(6);
55     this->get_vbox()->add(*sb);
56     this->show_all_children();
57     Gtk:: Requisition sreq;
58     sb->size_request(sreq);
59     _sb_width = sreq.width;
60     this->get_vbox()->remove(*sb);
61     delete sb;
63     //Main HBox
64     Gtk::HBox* hbox_list_page = Gtk::manage(new Gtk::HBox());
65     hbox_list_page->set_border_width(12);
66     hbox_list_page->set_spacing(12);
67     this->get_vbox()->add(*hbox_list_page);
69     //Pagelist
70     Gtk::Frame* list_frame = Gtk::manage(new Gtk::Frame());
71     Gtk::ScrolledWindow* scrolled_window = Gtk::manage(new Gtk::ScrolledWindow());
72     hbox_list_page->pack_start(*list_frame, false, true, 0);
73     _page_list.set_headers_visible(false);
74     scrolled_window->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
75     scrolled_window->add(_page_list);
76     list_frame->set_shadow_type(Gtk::SHADOW_IN);
77     list_frame->add(*scrolled_window);
78     _page_list_model = Gtk::TreeStore::create(_page_list_columns);
79     _page_list.set_model(_page_list_model);
80     _page_list.append_column("name",_page_list_columns._col_name);
81         Glib::RefPtr<Gtk::TreeSelection> page_list_selection = _page_list.get_selection();
82         page_list_selection->signal_changed().connect(sigc::mem_fun(*this, &InkscapePreferences::on_pagelist_selection_changed));
83         page_list_selection->set_mode(Gtk::SELECTION_BROWSE);
84     
85     //Pages
86     Gtk::VBox* vbox_page = Gtk::manage(new Gtk::VBox());
87     Gtk::Frame* title_frame = Gtk::manage(new Gtk::Frame());
88     hbox_list_page->pack_start(*vbox_page, true, true, 0);
89     title_frame->add(_page_title);
90     vbox_page->pack_start(*title_frame, false, false, 0);
91     vbox_page->pack_start(_page_frame, true, true, 0);
92     _page_frame.set_shadow_type(Gtk::SHADOW_IN);
93     title_frame->set_shadow_type(Gtk::SHADOW_IN);
95     initPageMouse();
96     initPageScrolling();
97     initPageSteps();
98     initPageTools();
99     initPageWindows();
100     initPageClones();
101     initPageMasks();
102     initPageTransforms();
103     initPageFilters();
104     initPageSelecting();
105     initPageImportExport();
106     initPageCMS();
107     initPageMisc();
109     //calculate the size request for this dialog
110     this->show_all_children();
111     _page_list.expand_all();
112     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::SetMaxDialogSize)); 
113     this->set_size_request(_max_dialog_width, _max_dialog_height);
114     _page_list.collapse_all();
117 InkscapePreferences::~InkscapePreferences()
121 void InkscapePreferences::present()
123     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::PresentPage)); 
124     Dialog::present();
127 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, int id)
129     return AddPage(p, title, Gtk::TreeModel::iterator() , id);
132 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id)
134     Gtk::TreeModel::iterator iter;
135     if (parent)
136        iter = _page_list_model->append((*parent).children());
137     else
138        iter = _page_list_model->append();
139     Gtk::TreeModel::Row row = *iter;
140     row[_page_list_columns._col_name] = title;
141     row[_page_list_columns._col_id] = id;
142     row[_page_list_columns._col_page] = &p;
143     return iter;
146 void InkscapePreferences::initPageMouse()
148     this->AddPage(_page_mouse, _("Mouse"), PREFS_PAGE_MOUSE);
149     _mouse_sens.init ( "options.cursortolerance", "value", 0.0, 30.0, 1.0, 1.0, 8.0, true, false);
150     _page_mouse.add_line( false, _("Grab sensitivity:"), _mouse_sens, _("pixels"), 
151                            _("How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)"), false);
152     _mouse_thres.init ( "options.dragtolerance", "value", 0.0, 20.0, 1.0, 1.0, 4.0, true, false);
153     _page_mouse.add_line( false, _("Click/drag threshold:"), _mouse_thres, _("pixels"), 
154                            _("Maximum mouse drag (in screen pixels) which is considered a click, not a drag"), false);
156     _mouse_use_ext_input.init( _("Use pressure-sensitive tablet (requires restart)"), "options.useextinput", "value", true);
157     _page_mouse.add_line(true, "",_mouse_use_ext_input, "",
158                         _("Use the capabilities of a tablet or other pressure-sensitive device. Disable this only if you have problems with the tablet (you can still use it as a mouse)"));
162 void InkscapePreferences::initPageScrolling()
164     this->AddPage(_page_scrolling, _("Scrolling"), PREFS_PAGE_SCROLLING);
165     _scroll_wheel.init ( "options.wheelscroll", "value", 0.0, 1000.0, 1.0, 1.0, 40.0, true, false);
166     _page_scrolling.add_line( false, _("Mouse wheel scrolls by:"), _scroll_wheel, _("pixels"), 
167                            _("One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)"), false);
168     _page_scrolling.add_group_header( _("Ctrl+arrows"));
169     _scroll_arrow_px.init ( "options.keyscroll", "value", 0.0, 1000.0, 1.0, 1.0, 10.0, true, false);
170     _page_scrolling.add_line( true, _("Scroll by:"), _scroll_arrow_px, _("pixels"), 
171                            _("Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)"), false);
172     _scroll_arrow_acc.init ( "options.scrollingacceleration", "value", 0.0, 5.0, 0.01, 1.0, 0.35, false, false);
173     _page_scrolling.add_line( true, _("Acceleration:"), _scroll_arrow_acc, "", 
174                            _("Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)"), false);
175     _page_scrolling.add_group_header( _("Autoscrolling"));
176     _scroll_auto_speed.init ( "options.autoscrollspeed", "value", 0.0, 5.0, 0.01, 1.0, 0.7, false, false);
177     _page_scrolling.add_line( true, _("Speed:"), _scroll_auto_speed, "", 
178                            _("How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)"), false);
179     _scroll_auto_thres.init ( "options.autoscrolldistance", "value", -600.0, 600.0, 1.0, 1.0, -10.0, true, false);
180     _page_scrolling.add_line( true, _("Threshold:"), _scroll_auto_thres, _("pixels"), 
181                            _("How far (in screen pixels) you need to be from the canvas edge to trigger autoscroll; positive is outside the canvas, negative is within the canvas"), false);
182     _scroll_space.init ( _("Left mouse button pans when Space is pressed"), "options.spacepans", "value", false);
183     _page_scrolling.add_line( false, "", _scroll_space, "", 
184                             _("When on, pressing and holding Space and dragging with left mouse button pans canvas (as in Adobe Illustrator). When off, Space temporarily switches to Selector tool (default)."));
185     _wheel_zoom.init ( _("Mouse wheel zooms by default"), "options.wheelzooms", "value", false);
186     _page_scrolling.add_line( false, "", _wheel_zoom, "", 
187                             _("When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl."));
190 void InkscapePreferences::initPageSteps()
192     this->AddPage(_page_steps, _("Steps"), PREFS_PAGE_STEPS);
194     _steps_arrow.init ( "options.nudgedistance", "value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
195     //nudgedistance is limited to 1000 in select-context.cpp: use the same limit here
196     _page_steps.add_line( false, _("Arrow keys move by:"), _steps_arrow, _("px"), 
197                           _("Pressing an arrow key moves selected object(s) or node(s) by this distance (in px units)"), false);
198     _steps_scale.init ( "options.defaultscale", "value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
199     //defaultscale is limited to 1000 in select-context.cpp: use the same limit here 
200     _page_steps.add_line( false, _("> and < scale by:"), _steps_scale, _("px"), 
201                           _("Pressing > or < scales selection up or down by this increment (in px units)"), false);
202     _steps_inset.init ( "options.defaultoffsetwidth", "value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
203     _page_steps.add_line( false, _("Inset/Outset by:"), _steps_inset, _("px"), 
204                           _("Inset and Outset commands displace the path by this distance (in px units)"), false);
205     _steps_compass.init ( _("Compass-like display of angles"), "options.compassangledisplay", "value", true);
206     _page_steps.add_line( false, "", _steps_compass, "", 
207                             _("When on, angles are displayed with 0 at north, 0 to 360 range, positive clockwise; otherwise with 0 at east, -180 to 180 range, positive counterclockwise"));
208     int const num_items = 17;
209     Glib::ustring labels[num_items] = {"90", "60", "45", "36", "30", "22.5", "18", "15", "12", "10", "7.5", "6", "3", "2", "1", "0.5", _("None")};
210     int values[num_items] = {2, 3, 4, 5, 6, 8, 10, 12, 15, 18, 24, 30, 60, 90, 180, 360, 0};
211     _steps_rot_snap.set_size_request(_sb_width);
212     _steps_rot_snap.init("options.rotationsnapsperpi", "value", labels, values, num_items, 12);
213     _page_steps.add_line( false, _("Rotation snaps every:"), _steps_rot_snap, _("degrees"), 
214                            _("Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount"), false);
215     _steps_zoom.init ( "options.zoomincrement", "value", 101.0, 500.0, 1.0, 1.0, 1.414213562, true, true);
216     _page_steps.add_line( false, _("Zoom in/out by:"), _steps_zoom, _("%"), 
217                           _("Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier"), false);
220 void InkscapePreferences::AddSelcueCheckbox(DialogPage& p, const std::string& prefs_path, bool def_value)
222     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
223     cb->init ( _("Show selection cue"), prefs_path, "selcue", def_value);
224     p.add_line( false, "", *cb, "", _("Whether selected objects display a selection cue (the same as in selector)"));
227 void InkscapePreferences::AddGradientCheckbox(DialogPage& p, const std::string& prefs_path, bool def_value)
229     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
230     cb->init ( _("Enable gradient editing"), prefs_path, "gradientdrag", def_value);
231     p.add_line( false, "", *cb, "", _("Whether selected objects display gradient editing controls"));
234 void StyleFromSelectionToTool(gchar const *prefs_path, StyleSwatch *swatch)
236     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
237     if (desktop == NULL)
238         return;
240     Inkscape::Selection *selection = sp_desktop_selection(desktop);
242     if (selection->isEmpty()) {
243         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
244                                        _("<b>No objects selected</b> to take the style from."));
245         return;
246     }
247     SPItem *item = selection->singleItem();
248     if (!item) {
249         /* TODO: If each item in the selection has the same style then don't consider it an error.
250          * Maybe we should try to handle multiple selections anyway, e.g. the intersection of the
251          * style attributes for the selected items. */
252         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
253                                        _("<b>More than one object selected.</b>  Cannot take style from multiple objects."));
254         return;
255     }
257     SPCSSAttr *css = take_style_from_item (item);
259     if (!css) return;
261     // only store text style for the text tool
262     if (!g_strrstr ((const gchar *) prefs_path, "text")) {
263         css = sp_css_attr_unset_text (css);
264     }
266     // we cannot store properties with uris - they will be invalid in other documents
267     css = sp_css_attr_unset_uris (css);
269     sp_repr_css_change (inkscape_get_repr (INKSCAPE, prefs_path), css, "style");
270     sp_repr_css_attr_unref (css);
272     // update the swatch
273     if (swatch) {
274         Inkscape::XML::Node *tool_repr = inkscape_get_repr(INKSCAPE, prefs_path);
275         if (tool_repr) {
276             SPCSSAttr *css = sp_repr_css_attr_inherited(tool_repr, "style");
277             swatch->setStyle (css);
278             sp_repr_css_attr_unref(css);
279         }
280     }
283 void InkscapePreferences::AddNewObjectsStyle(DialogPage& p, const std::string& prefs_path)
287     p.add_group_header( _("Create new objects with:"));
288     PrefRadioButton* current = Gtk::manage( new PrefRadioButton);
289     current->init ( _("Last used style"), prefs_path, "usecurrent", 1, true, 0);
290     p.add_line( true, "", *current, "",
291                 _("Apply the style you last set on an object"));
293     PrefRadioButton* own = Gtk::manage( new PrefRadioButton);
294     Gtk::HBox* hb = Gtk::manage( new Gtk::HBox);
295     Gtk::Alignment* align = Gtk::manage( new Gtk::Alignment);
296     own->init ( _("This tool's own style:"), prefs_path, "usecurrent", 0, false, current);
297     align->set(0,0,0,0);    
298     align->add(*own);
299     hb->add(*align);
300     p.set_tip( *own, _("Each tool may store its own style to apply to the newly created objects. Use the button below to set it."));
301     p.add_line( true, "", *hb, "", "");
303     // style swatch
304     Inkscape::XML::Node *tool_repr = inkscape_get_repr(INKSCAPE, prefs_path.c_str());
305     Gtk::Button* button = Gtk::manage( new Gtk::Button(_("Take from selection"),true));
306     StyleSwatch *swatch = 0;
307     if (tool_repr) {
308         SPCSSAttr *css = sp_repr_css_attr_inherited(tool_repr, "style");
309         swatch = new StyleSwatch(css, _("This tool's style of new objects"));
310         hb->add(*swatch);
311         sp_repr_css_attr_unref(css);
312     }
314     button->signal_clicked().connect( sigc::bind( sigc::ptr_fun(StyleFromSelectionToTool), prefs_path.c_str(), swatch)  );
315     own->changed_signal.connect( sigc::mem_fun(*button, &Gtk::Button::set_sensitive) );
316     p.add_line( true, "", *button, "",
317                 _("Remember the style of the (first) selected object as this tool's style"));
320 void InkscapePreferences::initPageTools()
322     Gtk::TreeModel::iterator iter_tools = this->AddPage(_page_tools, _("Tools"), PREFS_PAGE_TOOLS);    
323     _path_tools = _page_list.get_model()->get_path(iter_tools);
325     _calligrapy_use_abs_size.init ( _("Width is in absolute units"), "tools.calligraphic", "abs_width", false);
326     _calligrapy_keep_selected.init ( _("Select new path"), "tools.calligraphic", "keep_selected", true);
327     _connector_ignore_text.init( _("Don't attach connectors to text objects"), "tools.connector", "ignoretext", true);
329     //Selector
330     this->AddPage(_page_selector, _("Selector"), iter_tools, PREFS_PAGE_TOOLS_SELECTOR);
332     AddSelcueCheckbox(_page_selector, "tools.select", false);
333     _page_selector.add_group_header( _("When transforming, show:"));
334     _t_sel_trans_obj.init ( _("Objects"), "tools.select", "show", "content", true, 0);
335     _page_selector.add_line( true, "", _t_sel_trans_obj, "", 
336                             _("Show the actual objects when moving or transforming"));
337     _t_sel_trans_outl.init ( _("Box outline"), "tools.select", "show", "outline", false, &_t_sel_trans_obj);
338     _page_selector.add_line( true, "", _t_sel_trans_outl, "", 
339                             _("Show only a box outline of the objects when moving or transforming"));
340     _page_selector.add_group_header( _("Per-object selection cue:"));
341     _t_sel_cue_none.init ( _("None"), "options.selcue", "value", Inkscape::SelCue::NONE, false, 0);
342     _page_selector.add_line( true, "", _t_sel_cue_none, "", 
343                             _("No per-object selection indication"));
344     _t_sel_cue_mark.init ( _("Mark"), "options.selcue", "value", Inkscape::SelCue::MARK, true, &_t_sel_cue_none);
345     _page_selector.add_line( true, "", _t_sel_cue_mark, "", 
346                             _("Each selected object has a diamond mark in the top left corner"));
347     _t_sel_cue_box.init ( _("Box"), "options.selcue", "value", Inkscape::SelCue::BBOX, false, &_t_sel_cue_none);
348     _page_selector.add_line( true, "", _t_sel_cue_box, "", 
349                             _("Each selected object displays its bounding box"));
351     _page_selector.add_group_header( _("Bounding box to use:"));
352     _t_sel_bbox_visual.init ( _("Visual bounding box"), "tools.select", "bounding_box", "visual", false, 0);
353     _page_selector.add_line( true, "", _t_sel_bbox_visual, "",
354                             _("This bounding box includes stroke width, markers, filter margins, etc."));
355     _t_sel_bbox_geometric.init ( _("Geometric bounding box"), "tools.select", "bounding_box", "geometric", true, &_t_sel_bbox_visual);
356     _page_selector.add_line( true, "", _t_sel_bbox_geometric, "",
357                             _("This bounding box includes only the bare path"));
359     //Node
360     this->AddPage(_page_node, _("Node"), iter_tools, PREFS_PAGE_TOOLS_NODE);
361     AddSelcueCheckbox(_page_node, "tools.nodes", true);
362     AddGradientCheckbox(_page_node, "tools.nodes", true);
363     //Zoom
364     this->AddPage(_page_zoom, _("Zoom"), iter_tools, PREFS_PAGE_TOOLS_ZOOM);
365     AddSelcueCheckbox(_page_zoom, "tools.zoom", true);
366     AddGradientCheckbox(_page_zoom, "tools.zoom", false);
367     //Shapes
368     Gtk::TreeModel::iterator iter_shapes = this->AddPage(_page_shapes, _("Shapes"), iter_tools, PREFS_PAGE_TOOLS_SHAPES);
369     _path_shapes = _page_list.get_model()->get_path(iter_shapes);
370     this->AddSelcueCheckbox(_page_shapes, "tools.shapes", true);
371     this->AddGradientCheckbox(_page_shapes, "tools.shapes", true);
372     //Rectangle
373     this->AddPage(_page_rectangle, _("Rectangle"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_RECT);
374     this->AddNewObjectsStyle(_page_rectangle, "tools.shapes.rect");
375     //3D box
376     this->AddPage(_page_3dbox, _("3D Box"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_3DBOX);
377     this->AddNewObjectsStyle(_page_3dbox, "tools.shapes.3dbox");
378     //ellipse
379     this->AddPage(_page_ellipse, _("Ellipse"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
380     this->AddNewObjectsStyle(_page_ellipse, "tools.shapes.arc");
381     //star
382     this->AddPage(_page_star, _("Star"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_STAR);
383     this->AddNewObjectsStyle(_page_star, "tools.shapes.star");
384     //spiral
385     this->AddPage(_page_spiral, _("Spiral"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
386     this->AddNewObjectsStyle(_page_spiral, "tools.shapes.spiral");
387     //Pencil
388     this->AddPage(_page_pencil, _("Pencil"), iter_tools, PREFS_PAGE_TOOLS_PENCIL);
389     this->AddSelcueCheckbox(_page_pencil, "tools.freehand.pencil", true);
390     _t_pencil_tolerance.init ( "tools.freehand.pencil", "tolerance", 0.0, 100.0, 0.5, 1.0, 10.0, false, false);
391     _page_pencil.add_line( false, _("Tolerance:"), _t_pencil_tolerance, "", 
392                            _("This value affects the amount of smoothing applied to freehand lines; lower values produce more uneven paths with more nodes"),
393                            false );
394     this->AddNewObjectsStyle(_page_pencil, "tools.freehand.pencil");
395     //Pen
396     this->AddPage(_page_pen, _("Pen"), iter_tools, PREFS_PAGE_TOOLS_PEN);
397     this->AddSelcueCheckbox(_page_pen, "tools.freehand.pen", true);
398     this->AddNewObjectsStyle(_page_pen, "tools.freehand.pen");
399     //Calligraphy
400     this->AddPage(_page_calligraphy, _("Calligraphy"), iter_tools, PREFS_PAGE_TOOLS_CALLIGRAPHY);
401     this->AddNewObjectsStyle(_page_calligraphy, "tools.calligraphic");
402     _page_calligraphy.add_line( false, "", _calligrapy_use_abs_size, "", 
403                             _("If on, pen width is in absolute units (px) independent of zoom; otherwise pen width depends on zoom so that it looks the same at any zoom"));
404     _page_calligraphy.add_line( false, "", _calligrapy_keep_selected, "", 
405                             _("If on, each newly created object will be selected (deselecting previous selection)"));
406     //Paint Bucket
407     this->AddPage(_page_paintbucket, _("Paint Bucket"), iter_tools, PREFS_PAGE_TOOLS_PAINTBUCKET);
408     this->AddNewObjectsStyle(_page_paintbucket, "tools.paintbucket");
409     //Text
410     this->AddPage(_page_text, _("Text"), iter_tools, PREFS_PAGE_TOOLS_TEXT);
411     this->AddSelcueCheckbox(_page_text, "tools.text", true);
412     this->AddGradientCheckbox(_page_text, "tools.text", true);
413     this->AddNewObjectsStyle(_page_text, "tools.text");
414     //Gradient
415     this->AddPage(_page_gradient, _("Gradient"), iter_tools, PREFS_PAGE_TOOLS_GRADIENT);
416     this->AddSelcueCheckbox(_page_gradient, "tools.gradient", true);
417     //Connector
418     this->AddPage(_page_connector, _("Connector"), iter_tools, PREFS_PAGE_TOOLS_CONNECTOR);
419     this->AddSelcueCheckbox(_page_connector, "tools.connector", true);
420     _page_connector.add_line(false, "", _connector_ignore_text, "", 
421             _("If on, connector attachment points will not be shown for text objects"));
422     //Dropper
423     this->AddPage(_page_dropper, _("Dropper"), iter_tools, PREFS_PAGE_TOOLS_DROPPER);
424     this->AddSelcueCheckbox(_page_dropper, "tools.dropper", true);
425     this->AddGradientCheckbox(_page_dropper, "tools.dropper", true);
428 void InkscapePreferences::initPageWindows()
430     _win_save_geom.init ( _("Save and restore window geometry for each document"), "options.savewindowgeometry", "value", 1, true, 0);
431     _win_save_geom_prefs.init ( _("Remember and use last window's geometry"), "options.savewindowgeometry", "value", 2, false, &_win_save_geom);
432     _win_save_geom_off.init ( _("Don't save window geometry"), "options.savewindowgeometry", "value", 0, false, &_win_save_geom);
434     _win_dockable.init ( _("Dockable"), "options.dialogtype", "value", 1, true, 0);
435     _win_floating.init ( _("Floating"), "options.dialogtype", "value", 0, false, &_win_dockable);
437     _win_hide_task.init ( _("Dialogs are hidden in taskbar"), "options.dialogsskiptaskbar", "value", true);
438     _win_zoom_resize.init ( _("Zoom when window is resized"), "options.stickyzoom", "value", false);
439     _win_show_close.init ( _("Show close button on dialogs"), "dialogs", "showclose", false);
440     _win_ontop_none.init ( _("None"), "options.transientpolicy", "value", 0, false, 0);
441     _win_ontop_normal.init ( _("Normal"), "options.transientpolicy", "value", 1, true, &_win_ontop_none);
442     _win_ontop_agressive.init ( _("Aggressive"), "options.transientpolicy", "value", 2, false, &_win_ontop_none);
444 // FIXME: Temporary Win32 special code to enable transient dialogs
445 #ifdef WIN32 
446     _win_ontop_win32.init ( _("Dialogs stay on top (experimental!)"), "options.dialogsontopwin32", "value", false);
447 #endif 
449     _page_windows.add_group_header( _("Saving window geometry (size and position):"));
450     _page_windows.add_line( false, "", _win_save_geom_off, "", 
451                             _("Let the window manager determine placement of all windows"));
452     _page_windows.add_line( false, "", _win_save_geom_prefs, "", 
453                             _("Remember and use the last window's geometry (saves geometry to user preferences)"));
454     _page_windows.add_line( false, "", _win_save_geom, "", 
455                             _("Save and restore window geometry for each document (saves geometry in the document)"));
457     _page_windows.add_group_header( _("Dialog behavior (requires restart):"));
458     _page_windows.add_line( true, "", _win_dockable, "", 
459                             _("Dockable"));
460     _page_windows.add_line( true, "", _win_floating, "", 
461                             _("Floating"));
463     _page_windows.add_group_header( _("Dialogs on top:"));
464 #ifndef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
465     _page_windows.add_line( true, "", _win_ontop_none, "", 
466                             _("Dialogs are treated as regular windows"));
467     _page_windows.add_line( true, "", _win_ontop_normal, "", 
468                             _("Dialogs stay on top of document windows"));
469     _page_windows.add_line( true, "", _win_ontop_agressive, "", 
470                             _("Same as Normal but may work better with some window managers"));
471 #else
472     _page_windows.add_line( false, "", _win_ontop_win32, "", 
473                             _("Whether dialogs should stay on top of document windows. Read the ReleaseNotes on this issue! (Rightclick the taskbar button and press 'Restore' to bring back a minimized document window)"));
474 #endif                            
476     _page_windows.add_group_header( _("Miscellaneous:"));
477 #ifndef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
478     _page_windows.add_line( false, "", _win_hide_task, "", 
479                             _("Whether dialog windows are to be hidden in the window manager taskbar"));
480 #endif                           
481     _page_windows.add_line( false, "", _win_zoom_resize, "", 
482                             _("Zoom drawing when document window is resized, to keep the same area visible (this is the default which can be changed in any window using the button above the right scrollbar)"));
483     _page_windows.add_line( false, "", _win_show_close, "", 
484                             _("Whether dialog windows have a close button (requires restart)"));
485     this->AddPage(_page_windows, _("Windows"), PREFS_PAGE_WINDOWS);
488 void InkscapePreferences::initPageClones()
490     _clone_option_parallel.init ( _("Move in parallel"), "options.clonecompensation", "value", 
491                                   SP_CLONE_COMPENSATION_PARALLEL, true, 0);
492     _clone_option_stay.init ( _("Stay unmoved"), "options.clonecompensation", "value", 
493                                   SP_CLONE_COMPENSATION_UNMOVED, false, &_clone_option_parallel);
494     _clone_option_transform.init ( _("Move according to transform"), "options.clonecompensation", "value", 
495                                   SP_CLONE_COMPENSATION_NONE, false, &_clone_option_parallel);
496     _clone_option_unlink.init ( _("Are unlinked"), "options.cloneorphans", "value", 
497                                   SP_CLONE_ORPHANS_UNLINK, true, 0);
498     _clone_option_delete.init ( _("Are deleted"), "options.cloneorphans", "value", 
499                                   SP_CLONE_ORPHANS_DELETE, false, &_clone_option_unlink);
501     _page_clones.add_group_header( _("When the original moves, its clones and linked offsets:"));
502     _page_clones.add_line( true, "", _clone_option_parallel, "", 
503                            _("Clones are translated by the same vector as their original."));
504     _page_clones.add_line( true, "", _clone_option_stay, "", 
505                            _("Clones preserve their positions when their original is moved."));
506     _page_clones.add_line( true, "", _clone_option_transform, "", 
507                            _("Each clone moves according to the value of its transform= attribute. For example, a rotated clone will move in a different direction than its original."));
508     _page_clones.add_group_header( _("When the original is deleted, its clones:"));
509     _page_clones.add_line( true, "", _clone_option_unlink, "", 
510                            _("Orphaned clones are converted to regular objects."));
511     _page_clones.add_line( true, "", _clone_option_delete, "", 
512                            _("Orphaned clones are deleted along with their original."));
514     this->AddPage(_page_clones, _("Clones"), PREFS_PAGE_CLONES);
517 void InkscapePreferences::initPageMasks()
519     _mask_mask_on_top.init ( _("When applying, use the topmost selected object as clippath/mask"), "options.maskobject", "topmost", true);
520     _page_mask.add_line(true, "", _mask_mask_on_top, "", 
521                         _("Uncheck this to use the bottom selected object as the clipping path or mask"));
522     _mask_mask_remove.init ( _("Remove clippath/mask object after applying"), "options.maskobject", "remove", true);
523     _page_mask.add_line(true, "", _mask_mask_remove, "", 
524                         _("After applying, remove the object used as the clipping path or mask from the drawing"));
525     this->AddPage(_page_mask, _("Clippaths and masks"), PREFS_PAGE_MASKS);
528 void InkscapePreferences::initPageTransforms()
530     _trans_scale_stroke.init ( _("Scale stroke width"), "options.transform", "stroke", true);
531     _trans_scale_corner.init ( _("Scale rounded corners in rectangles"), "options.transform", "rectcorners", false);
532     _trans_gradient.init ( _("Transform gradients"), "options.transform", "gradient", true);
533     _trans_pattern.init ( _("Transform patterns"), "options.transform", "pattern", false);
534     _trans_optimized.init ( _("Optimized"), "options.preservetransform", "value", 0, true, 0);
535     _trans_preserved.init ( _("Preserved"), "options.preservetransform", "value", 1, false, &_trans_optimized);
537     _page_transforms.add_line( false, "", _trans_scale_stroke, "", 
538                                _("When scaling objects, scale the stroke width by the same proportion"));
539     _page_transforms.add_line( false, "", _trans_scale_corner, "", 
540                                _("When scaling rectangles, scale the radii of rounded corners"));
541     _page_transforms.add_line( false, "", _trans_gradient, "", 
542                                _("Move gradients (in fill or stroke) along with the objects"));
543     _page_transforms.add_line( false, "", _trans_pattern, "", 
544                                _("Move patterns (in fill or stroke) along with the objects"));
545     _page_transforms.add_group_header( _("Store transformation:"));
546     _page_transforms.add_line( true, "", _trans_optimized, "", 
547                                _("If possible, apply transformation to objects without adding a transform= attribute"));
548     _page_transforms.add_line( true, "", _trans_preserved, "", 
549                                _("Always store transformation as a transform= attribute on objects"));
551     this->AddPage(_page_transforms, _("Transforms"), PREFS_PAGE_TRANSFORMS);
554 void InkscapePreferences::initPageFilters()
556     _blur_quality_best.init ( _("Best quality (slowest)"), "options.blurquality", "value", 
557                                   BLUR_QUALITY_BEST, false, 0);
558     _blur_quality_better.init ( _("Better quality (slower)"), "options.blurquality", "value", 
559                                   BLUR_QUALITY_BETTER, false, &_blur_quality_best);
560     _blur_quality_normal.init ( _("Average quality"), "options.blurquality", "value", 
561                                   BLUR_QUALITY_NORMAL, true, &_blur_quality_best);
562     _blur_quality_worse.init ( _("Lower quality (faster)"), "options.blurquality", "value", 
563                                   BLUR_QUALITY_WORSE, false, &_blur_quality_best);
564     _blur_quality_worst.init ( _("Lowest quality (fastest)"), "options.blurquality", "value", 
565                                   BLUR_QUALITY_WORST, false, &_blur_quality_best);
567     _page_filters.add_group_header( _("Gaussian blur quality for display:"));
568     _page_filters.add_line( true, "", _blur_quality_best, "", 
569                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
570     _page_filters.add_line( true, "", _blur_quality_better, "", 
571                            _("Better quality, but slower display"));
572     _page_filters.add_line( true, "", _blur_quality_normal, "", 
573                            _("Average quality, acceptable display speed"));
574     _page_filters.add_line( true, "", _blur_quality_worse, "", 
575                            _("Lower quality (some artifacts), but display is faster"));
576     _page_filters.add_line( true, "", _blur_quality_worst, "", 
577                            _("Lowest quality (considerable artifacts), but display is fastest"));
579     this->AddPage(_page_filters, _("Filters"), PREFS_PAGE_FILTERS);
583 void InkscapePreferences::initPageSelecting()
585     _sel_all.init ( _("Select in all layers"), "options.kbselection", "inlayer", PREFS_SELECTION_ALL, false, 0);
586     _sel_current.init ( _("Select only within current layer"), "options.kbselection", "inlayer", PREFS_SELECTION_LAYER, true, &_sel_all);
587     _sel_recursive.init ( _("Select in current layer and sublayers"), "options.kbselection", "inlayer", PREFS_SELECTION_LAYER_RECURSIVE, false, &_sel_all);
588     _sel_hidden.init ( _("Ignore hidden objects"), "options.kbselection", "onlyvisible", true);
589     _sel_locked.init ( _("Ignore locked objects"), "options.kbselection", "onlysensitive", true);
590     _sel_layer_deselects.init ( _("Deselect upon layer change"), "options.selection", "layerdeselect", true);
592     _page_select.add_group_header( _("Ctrl+A, Tab, Shift+Tab:"));
593     _page_select.add_line( true, "", _sel_all, "", 
594                            _("Make keyboard selection commands work on objects in all layers"));
595     _page_select.add_line( true, "", _sel_current, "", 
596                            _("Make keyboard selection commands work on objects in current layer only"));
597     _page_select.add_line( true, "", _sel_recursive, "", 
598                            _("Make keyboard selection commands work on objects in current layer and all its sublayers"));
599     _page_select.add_line( true, "", _sel_hidden, "", 
600                            _("Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden group or layer)"));
601     _page_select.add_line( true, "", _sel_locked, "", 
602                            _("Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked group or layer)"));
604     _page_select.add_line( false, "", _sel_layer_deselects, "", 
605                            _("Uncheck this to be able to keep the current objects selected when the current layer changes"));
607     this->AddPage(_page_select, _("Selecting"), PREFS_PAGE_SELECTING);
611 void InkscapePreferences::initPageImportExport()
613     _importexport_export.init("dialogs.export.defaultxdpi", "value", 0.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
614     _page_importexport.add_line( false, _("Default export resolution:"), _importexport_export, _("dpi"),
615                             _("Default bitmap resolution (in dots per inch) in the Export dialog"), false);
616     _importexport_ocal_url.init("options.ocalurl", "str", true, g_strdup_printf("openclipart.org"));
617     _page_importexport.add_line( false, _("Open Clip Art Library Server Name:"), _importexport_ocal_url, "", 
618         _("The server name of the Open Clip Art Library webdav server. It's used by the Import and Export to OCAL function."), true);
619     _importexport_ocal_username.init("options.ocalusername", "str", true);
620     _page_importexport.add_line( false, _("Open Clip Art Library Username:"), _importexport_ocal_username, "", 
621             _("The username used to log into Open Clip Art Library."), true);
622     _importexport_ocal_password.init("options.ocalpassword", "str", false);
623     _page_importexport.add_line( false, _("Open Clip Art Library Password:"), _importexport_ocal_password, "", 
624             _("The password used to log into Open Clip Art Library."), true);
626     this->AddPage(_page_importexport, _("Import/Export"), PREFS_PAGE_IMPORTEXPORT);
629 #if ENABLE_LCMS
630 static void forceUpdates() {
631     std::list<SPDesktop*> tops;
632     inkscape_get_all_desktops( tops );
633     for ( std::list<SPDesktop*>::iterator it = tops.begin(); it != tops.end(); ++it ) {
634         (*it)->requestRedraw();
635     }
638 static void profileComboChanged( Gtk::ComboBoxText* combo )
640     Glib::ustring active = combo->get_active_text();
642     Glib::ustring path = get_path_for_profile(active);
643     if ( !path.empty() ) {
644         prefs_set_string_attribute( "options.displayprofile", "uri", path.c_str() );
645         forceUpdates();
646     }
649 static void proofComboChanged( Gtk::ComboBoxText* combo )
651     Glib::ustring active = combo->get_active_text();
653     Glib::ustring path = get_path_for_profile(active);
654     if ( !path.empty() ) {
655         prefs_set_string_attribute( "options.softproof", "uri", path.c_str() );
656         forceUpdates();
657     }
659 #endif // ENABLE_LCMS
661 void InkscapePreferences::initPageCMS()
663     int const numIntents = 4;
664     Glib::ustring intentLabels[numIntents] = {_("Perceptual"), _("Relative Colorimetric"), _("Saturation"), _("Absolute Colorimetric")};
665     int intentValues[numIntents] = {0, 1, 2, 3};
667     _page_cms.add_group_header( _("Disply Calibration"));
669     _cms_display.init( _("Enable display calibration"), "options.displayprofile", "enable", false);
670     _page_cms.add_line( false, "", _cms_display, "",
671                         _("Enables application of the display using an ICC profile."), false);
673     _page_cms.add_line( false, _("Display profile:"), _cms_display_profile, "",
674                         _("The ICC profile to use to calibrate display output."), false);
676     _cms_intent.init("options.displayprofile", "intent", intentLabels, intentValues, numIntents, 0);
677     _page_cms.add_line( false, _("Display intent:"), _cms_intent, "",
678                         _("The rendering intent to use to calibrate display output."), false);
680     _page_cms.add_group_header( _("Proofing"));
682     _cms_softproof.init( _("Simulate output on screen."), "options.softproof", "enable", false);
683     _page_cms.add_line( false, "", _cms_softproof, "",
684                         _("Simulates output of target device."), false);
686     _cms_gamutwarn.init( _("Mark out of gamut colors."), "options.softproof", "gamutwarn", false);
687     _page_cms.add_line( false, "", _cms_gamutwarn, "",
688                         _("Highlights colors that are out of gamut for the target device."), false);
690     Gdk::Color tmpColor("#00ff00");
691     _cms_gamutcolor.set_color( tmpColor );
692     _cms_gamutcolor.set_sensitive( false );
693     _page_cms.add_line( true, "Out of gamut warning color:", _cms_gamutcolor, "",
694                         _("Selects the color used for out of gamut warning."), false);
696     _page_cms.add_line( false, _("Device profile:"), _cms_proof_profile, "",
697                         _("The ICC profile to use to simulate device output."), false);
699     _cms_proof_intent.init("options.softproof", "intent", intentLabels, intentValues, numIntents, 0);
700     _page_cms.add_line( false, _("Device intent:"), _cms_proof_intent, "",
701                         _("The rendering intent to use to calibrate display output."), false);
703     _cms_proof_blackpoint.init( _("Black Point Compensation."), "options.softproof", "bpc", false);
704     _page_cms.add_line( false, "", _cms_proof_blackpoint, "",
705                         _("Enables black point compensation."), false);
707     _cms_proof_preserveblack.init( _("Preserve black."), "options.softproof", "preserveblack", false);
708     _page_cms.add_line( false, "", _cms_proof_preserveblack, "",
709                         "", false);
711 #if ENABLE_LCMS
712     {
713         std::vector<Glib::ustring> names = ::Inkscape::colorprofile_get_display_names();
714         Glib::ustring current = prefs_get_string_attribute( "options.displayprofile", "uri" );
716         gint index = 0;
717         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
718             _cms_display_profile.append_text( *it );
719             Glib::ustring path = get_path_for_profile(*it);
720             if ( !path.empty() && path == current ) {
721                 _cms_display_profile.set_active(index);
722             }
723             index++;
724         }
726         names = ::Inkscape::colorprofile_get_softproof_names();
727         const gchar * tmp = prefs_get_string_attribute( "options.softproof", "uri" );
728         current = tmp ? tmp : "";
729         index = 0;
730         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
731             _cms_proof_profile.append_text( *it );
732             Glib::ustring path = get_path_for_profile(*it);
733             if ( !path.empty() && path == current ) {
734                 _cms_proof_profile.set_active(index);
735             }
736             index++;
737         }
738     }
740     _cms_display.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
741     _cms_softproof.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
742     _cms_gamutwarn.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
743     _cms_proof_blackpoint.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
744     _cms_proof_preserveblack.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
746     _cms_intent.signal_changed().connect( sigc::ptr_fun(forceUpdates) );
747     _cms_proof_intent.signal_changed().connect( sigc::ptr_fun(forceUpdates) );
749     _cms_display_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(profileComboChanged), &_cms_display_profile) );
750     _cms_proof_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(proofComboChanged), &_cms_proof_profile) );
751 #else
752     // disable it, but leave it visible
753     _cms_display.set_sensitive( false );
754     _cms_intent.set_sensitive( false );
755     _cms_display_profile.set_sensitive( false );
756     _cms_softproof.set_sensitive( false );
757     _cms_gamutwarn.set_sensitive( false );
758     _cms_gamutcolor.set_sensitive( false );
759     _cms_proof_intent.set_sensitive( false );
760     _cms_proof_profile.set_sensitive( false );
761     _cms_proof_blackpoint.set_sensitive( false );
762     _cms_proof_preserveblack_sensitive( false );
763 #endif // ENABLE_LCMS
765     this->AddPage(_page_cms, _("Color Management"), PREFS_PAGE_CMS);
768 void InkscapePreferences::initPageMisc()
770     _misc_comment.init( _("Add label comments to printing output"), "printing.debug", "show-label-comments", false);
771     _page_misc.add_line( false, "", _misc_comment, "", 
772                            _("When on, a comment will be added to the raw print output, marking the rendered output for an object with its label"), true);
774     _misc_small_toolbar.init( _("Make commands toolbar smaller"), "toolbox", "small", true);
775     _page_misc.add_line( false, "", _misc_small_toolbar, "",
776                            _("Make the commands toolbar use the 'secondary' toolbar size (requires restart)"), true);
778     _misc_recent.init("options.maxrecentdocuments", "value", 0.0, 1000.0, 1.0, 1.0, 1.0, true, false);
779     _page_misc.add_line( false, _("Max recent documents:"), _misc_recent, "", 
780                            _("The maximum length of the Open Recent list in the File menu"), false);
781     _misc_simpl.init("options.simplifythreshold", "value", 0.0001, 1.0, 0.0001, 0.0010, 0.0010, false, false);
782     _page_misc.add_line( false, _("Simplification threshold:"), _misc_simpl, "", 
783                            _("How strong is the Simplify command by default. If you invoke this command several times in quick succession, it will act more and more aggressively; invoking it again after a pause restores the default threshold."), false);
784     int const num_items = 5;
785     Glib::ustring labels[num_items] = {_("None"), _("2x2"), _("4x4"), _("8x8"), _("16x16")};
786     int values[num_items] = {0, 1, 2, 3, 4};
787     _misc_overs_bitmap.set_size_request(_sb_width);
788     _misc_overs_bitmap.init("options.bitmapoversample", "value", labels, values, num_items, 1);
789     _page_misc.add_line( false, _("Oversample bitmaps:"), _misc_overs_bitmap, "", "", false);
791     this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC);
794 bool InkscapePreferences::SetMaxDialogSize(const Gtk::TreeModel::iterator& iter)
796     Gtk::TreeModel::Row row = *iter;
797     DialogPage* page = row[_page_list_columns._col_page];
798     _page_frame.add(*page);
799     this->show_all_children();
800     Gtk:: Requisition sreq;
801     this->size_request(sreq);
802     _max_dialog_width=std::max(_max_dialog_width, sreq.width);
803     _max_dialog_height=std::max(_max_dialog_height, sreq.height);
804     _page_frame.remove();
805     return false;
808 bool InkscapePreferences::PresentPage(const Gtk::TreeModel::iterator& iter)
810     Gtk::TreeModel::Row row = *iter;
811     int desired_page = prefs_get_int_attribute("dialogs.preferences", "page", 0);
812     if (desired_page == row[_page_list_columns._col_id])
813     {
814         if (desired_page >= PREFS_PAGE_TOOLS && desired_page <= PREFS_PAGE_TOOLS_DROPPER)
815             _page_list.expand_row(_path_tools, false);
816         if (desired_page >= PREFS_PAGE_TOOLS_SHAPES && desired_page <= PREFS_PAGE_TOOLS_SHAPES_SPIRAL)
817             _page_list.expand_row(_path_shapes, false);
818         _page_list.get_selection()->select(iter);
819         return true;
820     }
821     return false;
824 void InkscapePreferences::on_pagelist_selection_changed()
826     // show new selection
827     Glib::RefPtr<Gtk::TreeSelection> selection = _page_list.get_selection();
828     Gtk::TreeModel::iterator iter = selection->get_selected();
829     if(iter)
830     {
831         if (_current_page) 
832             _page_frame.remove();
833         Gtk::TreeModel::Row row = *iter;
834         _current_page = row[_page_list_columns._col_page];
835         prefs_set_int_attribute("dialogs.preferences", "page", row[_page_list_columns._col_id]);
836         _page_title.set_markup("<span size='large'><b>" + row[_page_list_columns._col_name] + "</b></span>");
837         _page_frame.add(*_current_page);
838         _current_page->show();
839         while (Gtk::Main::events_pending()) 
840         {
841             Gtk::Main::iteration();
842         }
843         this->show_all_children();
844     }
847 } // namespace Dialog
848 } // namespace UI
849 } // namespace Inkscape
851 /*
852   Local Variables:
853   mode:c++
854   c-file-style:"stroustrup"
855   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
856   indent-tabs-mode:nil
857   fill-column:99
858   End:
859 */
860 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :