Code

Committing fixed patch for autosave. Fixes bug #171092.
[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"
41 #include "display/canvas-grid.h"
43 namespace Inkscape {
44 namespace UI {
45 namespace Dialog {
47 InkscapePreferences::InkscapePreferences()
48     : UI::Widget::Panel ("", "dialogs.preferences", SP_VERB_DIALOG_DISPLAY),
49       _max_dialog_width(0),
50       _max_dialog_height(0),
51       _current_page(0)
52 {
53     //get the width of a spinbutton
54     Gtk::SpinButton* sb = new Gtk::SpinButton;
55     sb->set_width_chars(6);
56     _getContents()->add(*sb);
57     show_all_children();
58     Gtk::Requisition sreq;
59     sb->size_request(sreq);
60     _sb_width = sreq.width;
61     _getContents()->remove(*sb);
62     delete sb;
64     //Main HBox
65     Gtk::HBox* hbox_list_page = Gtk::manage(new Gtk::HBox());
66     hbox_list_page->set_border_width(12);
67     hbox_list_page->set_spacing(12);
68     _getContents()->add(*hbox_list_page);
70     //Pagelist
71     Gtk::Frame* list_frame = Gtk::manage(new Gtk::Frame());
72     Gtk::ScrolledWindow* scrolled_window = Gtk::manage(new Gtk::ScrolledWindow());
73     hbox_list_page->pack_start(*list_frame, false, true, 0);
74     _page_list.set_headers_visible(false);
75     scrolled_window->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
76     scrolled_window->add(_page_list);
77     list_frame->set_shadow_type(Gtk::SHADOW_IN);
78     list_frame->add(*scrolled_window);
79     _page_list_model = Gtk::TreeStore::create(_page_list_columns);
80     _page_list.set_model(_page_list_model);
81     _page_list.append_column("name",_page_list_columns._col_name);
82     Glib::RefPtr<Gtk::TreeSelection> page_list_selection = _page_list.get_selection();
83     page_list_selection->signal_changed().connect(sigc::mem_fun(*this, &InkscapePreferences::on_pagelist_selection_changed));
84     page_list_selection->set_mode(Gtk::SELECTION_BROWSE);
86     //Pages
87     Gtk::VBox* vbox_page = Gtk::manage(new Gtk::VBox());
88     Gtk::Frame* title_frame = Gtk::manage(new Gtk::Frame());
89     hbox_list_page->pack_start(*vbox_page, true, true, 0);
90     title_frame->add(_page_title);
91     vbox_page->pack_start(*title_frame, false, false, 0);
92     vbox_page->pack_start(_page_frame, true, true, 0);
93     _page_frame.set_shadow_type(Gtk::SHADOW_IN);
94     title_frame->set_shadow_type(Gtk::SHADOW_IN);
96     initPageMouse();
97     initPageScrolling();
98     initPageSteps();
99     initPageTools();
100     initPageWindows();
101     initPageClones();
102     initPageMasks();
103     initPageTransforms();
104     initPageFilters();
105     initPageSelecting();
106     initPageImportExport();
107     initPageCMS();
108     initPageGrids();
109     initPageSVGOutput();
110     initPageMisc();
112     signalPresent().connect(sigc::mem_fun(*this, &InkscapePreferences::_presentPages));
114     //calculate the size request for this dialog
115     this->show_all_children();
116     _page_list.expand_all();
117     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::SetMaxDialogSize));
118     _getContents()->set_size_request(_max_dialog_width, _max_dialog_height);
119     _page_list.collapse_all();
122 InkscapePreferences::~InkscapePreferences()
126 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, int id)
128     return AddPage(p, title, Gtk::TreeModel::iterator() , id);
131 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id)
133     Gtk::TreeModel::iterator iter;
134     if (parent)
135        iter = _page_list_model->append((*parent).children());
136     else
137        iter = _page_list_model->append();
138     Gtk::TreeModel::Row row = *iter;
139     row[_page_list_columns._col_name] = title;
140     row[_page_list_columns._col_id] = id;
141     row[_page_list_columns._col_page] = &p;
142     return iter;
145 void InkscapePreferences::initPageMouse()
147     this->AddPage(_page_mouse, _("Mouse"), PREFS_PAGE_MOUSE);
148     _mouse_sens.init ( "options.cursortolerance", "value", 0.0, 30.0, 1.0, 1.0, 8.0, true, false);
149     _page_mouse.add_line( false, _("Grab sensitivity:"), _mouse_sens, _("pixels"),
150                            _("How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)"), false);
151     _mouse_thres.init ( "options.dragtolerance", "value", 0.0, 20.0, 1.0, 1.0, 4.0, true, false);
152     _page_mouse.add_line( false, _("Click/drag threshold:"), _mouse_thres, _("pixels"),
153                            _("Maximum mouse drag (in screen pixels) which is considered a click, not a drag"), false);
155     _mouse_use_ext_input.init( _("Use pressure-sensitive tablet (requires restart)"), "options.useextinput", "value", true);
156     _page_mouse.add_line(true, "",_mouse_use_ext_input, "",
157                         _("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)"));
159     _mouse_switch_on_ext_input.init( _("Switch tool based on tablet device (requires restart)"), "options.switchonextinput", "value", false);
160     _page_mouse.add_line(true, "",_mouse_switch_on_ext_input, "",
161                         _("Change tool as different devices are used on the tablet (pen, eraser, mouse)"));
164 void InkscapePreferences::initPageScrolling()
166     this->AddPage(_page_scrolling, _("Scrolling"), PREFS_PAGE_SCROLLING);
167     _scroll_wheel.init ( "options.wheelscroll", "value", 0.0, 1000.0, 1.0, 1.0, 40.0, true, false);
168     _page_scrolling.add_line( false, _("Mouse wheel scrolls by:"), _scroll_wheel, _("pixels"),
169                            _("One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)"), false);
170     _page_scrolling.add_group_header( _("Ctrl+arrows"));
171     _scroll_arrow_px.init ( "options.keyscroll", "value", 0.0, 1000.0, 1.0, 1.0, 10.0, true, false);
172     _page_scrolling.add_line( true, _("Scroll by:"), _scroll_arrow_px, _("pixels"),
173                            _("Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)"), false);
174     _scroll_arrow_acc.init ( "options.scrollingacceleration", "value", 0.0, 5.0, 0.01, 1.0, 0.35, false, false);
175     _page_scrolling.add_line( true, _("Acceleration:"), _scroll_arrow_acc, "",
176                            _("Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)"), false);
177     _page_scrolling.add_group_header( _("Autoscrolling"));
178     _scroll_auto_speed.init ( "options.autoscrollspeed", "value", 0.0, 5.0, 0.01, 1.0, 0.7, false, false);
179     _page_scrolling.add_line( true, _("Speed:"), _scroll_auto_speed, "",
180                            _("How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)"), false);
181     _scroll_auto_thres.init ( "options.autoscrolldistance", "value", -600.0, 600.0, 1.0, 1.0, -10.0, true, false);
182     _page_scrolling.add_line( true, _("Threshold:"), _scroll_auto_thres, _("pixels"),
183                            _("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);
184     _scroll_space.init ( _("Left mouse button pans when Space is pressed"), "options.spacepans", "value", false);
185     _page_scrolling.add_line( false, "", _scroll_space, "",
186                             _("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)."));
187     _wheel_zoom.init ( _("Mouse wheel zooms by default"), "options.wheelzooms", "value", false);
188     _page_scrolling.add_line( false, "", _wheel_zoom, "",
189                             _("When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl."));
192 void InkscapePreferences::initPageSteps()
194     this->AddPage(_page_steps, _("Steps"), PREFS_PAGE_STEPS);
196     _steps_arrow.init ( "options.nudgedistance", "value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
197     //nudgedistance is limited to 1000 in select-context.cpp: use the same limit here
198     _page_steps.add_line( false, _("Arrow keys move by:"), _steps_arrow, _("px"),
199                           _("Pressing an arrow key moves selected object(s) or node(s) by this distance (in px units)"), false);
200     _steps_scale.init ( "options.defaultscale", "value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
201     //defaultscale is limited to 1000 in select-context.cpp: use the same limit here
202     _page_steps.add_line( false, _("> and < scale by:"), _steps_scale, _("px"),
203                           _("Pressing > or < scales selection up or down by this increment (in px units)"), false);
204     _steps_inset.init ( "options.defaultoffsetwidth", "value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
205     _page_steps.add_line( false, _("Inset/Outset by:"), _steps_inset, _("px"),
206                           _("Inset and Outset commands displace the path by this distance (in px units)"), false);
207     _steps_compass.init ( _("Compass-like display of angles"), "options.compassangledisplay", "value", true);
208     _page_steps.add_line( false, "", _steps_compass, "",
209                             _("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"));
210     int const num_items = 17;
211     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")};
212     int values[num_items] = {2, 3, 4, 5, 6, 8, 10, 12, 15, 18, 24, 30, 60, 90, 180, 360, 0};
213     _steps_rot_snap.set_size_request(_sb_width);
214     _steps_rot_snap.init("options.rotationsnapsperpi", "value", labels, values, num_items, 12);
215     _page_steps.add_line( false, _("Rotation snaps every:"), _steps_rot_snap, _("degrees"),
216                            _("Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount"), false);
217     _steps_zoom.init ( "options.zoomincrement", "value", 101.0, 500.0, 1.0, 1.0, 1.414213562, true, true);
218     _page_steps.add_line( false, _("Zoom in/out by:"), _steps_zoom, _("%"),
219                           _("Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier"), false);
222 void InkscapePreferences::AddSelcueCheckbox(DialogPage& p, const std::string& prefs_path, bool def_value)
224     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
225     cb->init ( _("Show selection cue"), prefs_path, "selcue", def_value);
226     p.add_line( false, "", *cb, "", _("Whether selected objects display a selection cue (the same as in selector)"));
229 void InkscapePreferences::AddGradientCheckbox(DialogPage& p, const std::string& prefs_path, bool def_value)
231     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
232     cb->init ( _("Enable gradient editing"), prefs_path, "gradientdrag", def_value);
233     p.add_line( false, "", *cb, "", _("Whether selected objects display gradient editing controls"));
236 void InkscapePreferences::AddConvertGuidesCheckbox(DialogPage& p, const std::string& prefs_path, bool def_value) {
237     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
238     cb->init ( _("Conversion to guides uses edges instead of bounding box"), prefs_path, "convertguides", def_value);
239     p.add_line( false, "", *cb, "", _("Converting an object to guides places these along the object's true edges (imitating the object's shape), not along the bounding box."));
242 void InkscapePreferences::AddDotSizeSpinbutton(DialogPage& p, const std::string& prefs_path, double def_value)
244     PrefSpinButton* sb = Gtk::manage( new PrefSpinButton);
245     sb->init ( prefs_path, "dot-size", 0.0, 1000.0, 0.1, 10.0, def_value, false, false);
246     p.add_line( false, _("Ctrl+click dot size:"), *sb, _("times current stroke width"),
247                        _("Size of dots created with Ctrl+click (relative to current stroke width)"),
248                        false );
252 void StyleFromSelectionToTool(gchar const *prefs_path, StyleSwatch *swatch)
254     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
255     if (desktop == NULL)
256         return;
258     Inkscape::Selection *selection = sp_desktop_selection(desktop);
260     if (selection->isEmpty()) {
261         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
262                                        _("<b>No objects selected</b> to take the style from."));
263         return;
264     }
265     SPItem *item = selection->singleItem();
266     if (!item) {
267         /* TODO: If each item in the selection has the same style then don't consider it an error.
268          * Maybe we should try to handle multiple selections anyway, e.g. the intersection of the
269          * style attributes for the selected items. */
270         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
271                                        _("<b>More than one object selected.</b>  Cannot take style from multiple objects."));
272         return;
273     }
275     SPCSSAttr *css = take_style_from_item (item);
277     if (!css) return;
279     // only store text style for the text tool
280     if (!g_strrstr ((const gchar *) prefs_path, "text")) {
281         css = sp_css_attr_unset_text (css);
282     }
284     // we cannot store properties with uris - they will be invalid in other documents
285     css = sp_css_attr_unset_uris (css);
287     sp_repr_css_change (inkscape_get_repr (INKSCAPE, prefs_path), css, "style");
288     sp_repr_css_attr_unref (css);
290     // update the swatch
291     if (swatch) {
292         Inkscape::XML::Node *tool_repr = inkscape_get_repr(INKSCAPE, prefs_path);
293         if (tool_repr) {
294             SPCSSAttr *css = sp_repr_css_attr_inherited(tool_repr, "style");
295             swatch->setStyle (css);
296             sp_repr_css_attr_unref(css);
297         }
298     }
301 void InkscapePreferences::AddNewObjectsStyle(DialogPage& p, const std::string& prefs_path)
305     p.add_group_header( _("Create new objects with:"));
306     PrefRadioButton* current = Gtk::manage( new PrefRadioButton);
307     current->init ( _("Last used style"), prefs_path, "usecurrent", 1, true, 0);
308     p.add_line( true, "", *current, "",
309                 _("Apply the style you last set on an object"));
311     PrefRadioButton* own = Gtk::manage( new PrefRadioButton);
312     Gtk::HBox* hb = Gtk::manage( new Gtk::HBox);
313     Gtk::Alignment* align = Gtk::manage( new Gtk::Alignment);
314     own->init ( _("This tool's own style:"), prefs_path, "usecurrent", 0, false, current);
315     align->set(0,0,0,0);
316     align->add(*own);
317     hb->add(*align);
318     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."));
319     p.add_line( true, "", *hb, "", "");
321     // style swatch
322     Inkscape::XML::Node *tool_repr = inkscape_get_repr(INKSCAPE, prefs_path.c_str());
323     Gtk::Button* button = Gtk::manage( new Gtk::Button(_("Take from selection"),true));
324     StyleSwatch *swatch = 0;
325     if (tool_repr) {
326         SPCSSAttr *css = sp_repr_css_attr_inherited(tool_repr, "style");
327         swatch = new StyleSwatch(css, _("This tool's style of new objects"));
328         hb->add(*swatch);
329         sp_repr_css_attr_unref(css);
330     }
332     button->signal_clicked().connect( sigc::bind( sigc::ptr_fun(StyleFromSelectionToTool), prefs_path.c_str(), swatch)  );
333     own->changed_signal.connect( sigc::mem_fun(*button, &Gtk::Button::set_sensitive) );
334     p.add_line( true, "", *button, "",
335                 _("Remember the style of the (first) selected object as this tool's style"));
338 void InkscapePreferences::initPageTools()
340     Gtk::TreeModel::iterator iter_tools = this->AddPage(_page_tools, _("Tools"), PREFS_PAGE_TOOLS);
341     _path_tools = _page_list.get_model()->get_path(iter_tools);
343     _page_tools.add_group_header( _("Bounding box to use:"));
344     _t_bbox_visual.init ( _("Visual bounding box"), "tools", "bounding_box", "0", false, 0); // 0 means visual
345     _page_tools.add_line( true, "", _t_bbox_visual, "",
346                             _("This bounding box includes stroke width, markers, filter margins, etc."));
347     _t_bbox_geometric.init ( _("Geometric bounding box"), "tools", "bounding_box", "1", true, &_t_bbox_visual); // 1 means geometric
348     _page_tools.add_line( true, "", _t_bbox_geometric, "",
349                             _("This bounding box includes only the bare path"));
351     _page_tools.add_group_header( _("Conversion to guides:"));
352     _t_cvg_keep_objects.init ( _("Keep objects after conversion to guides"), "tools", "cvg_keep_objects", false);
353     _page_tools.add_line( true, "", _t_cvg_keep_objects, "",
354                             _("When converting an object to guides, don't delete the object after the conversion."));
355     _t_cvg_convert_whole_groups.init ( _("Treat groups as a single object"), "tools", "cvg_convert_whole_groups", false);
356     _page_tools.add_line( true, "", _t_cvg_convert_whole_groups, "",
357                             _("Treat groups as a single object during conversion to guides rather than converting each child separately."));
359     _calligrapy_use_abs_size.init ( _("Width is in absolute units"), "tools.calligraphic", "abs_width", false);
360     _calligrapy_keep_selected.init ( _("Select new path"), "tools.calligraphic", "keep_selected", true);
361     _connector_ignore_text.init( _("Don't attach connectors to text objects"), "tools.connector", "ignoretext", true);
363     //Selector
364     this->AddPage(_page_selector, _("Selector"), iter_tools, PREFS_PAGE_TOOLS_SELECTOR);
366     AddSelcueCheckbox(_page_selector, "tools.select", false);
367     _page_selector.add_group_header( _("When transforming, show:"));
368     _t_sel_trans_obj.init ( _("Objects"), "tools.select", "show", "content", true, 0);
369     _page_selector.add_line( true, "", _t_sel_trans_obj, "",
370                             _("Show the actual objects when moving or transforming"));
371     _t_sel_trans_outl.init ( _("Box outline"), "tools.select", "show", "outline", false, &_t_sel_trans_obj);
372     _page_selector.add_line( true, "", _t_sel_trans_outl, "",
373                             _("Show only a box outline of the objects when moving or transforming"));
374     _page_selector.add_group_header( _("Per-object selection cue:"));
375     _t_sel_cue_none.init ( _("None"), "options.selcue", "value", Inkscape::SelCue::NONE, false, 0);
376     _page_selector.add_line( true, "", _t_sel_cue_none, "",
377                             _("No per-object selection indication"));
378     _t_sel_cue_mark.init ( _("Mark"), "options.selcue", "value", Inkscape::SelCue::MARK, true, &_t_sel_cue_none);
379     _page_selector.add_line( true, "", _t_sel_cue_mark, "",
380                             _("Each selected object has a diamond mark in the top left corner"));
381     _t_sel_cue_box.init ( _("Box"), "options.selcue", "value", Inkscape::SelCue::BBOX, false, &_t_sel_cue_none);
382     _page_selector.add_line( true, "", _t_sel_cue_box, "",
383                             _("Each selected object displays its bounding box"));
385     //Node
386     this->AddPage(_page_node, _("Node"), iter_tools, PREFS_PAGE_TOOLS_NODE);
387     AddSelcueCheckbox(_page_node, "tools.nodes", true);
388     AddGradientCheckbox(_page_node, "tools.nodes", true);
389     _page_node.add_group_header( _("Path outline:"));
390     _t_node_pathoutline_color.init(_("Path outline color"), "tools.nodes", "highlight_color", 0xff0000ff);
391     _page_node.add_line( false, _("Path outline color"), _t_node_pathoutline_color, "", _("Selects the color used for showing the path outline."), false);
392     _t_node_pathflash_enabled.init ( _("Path outline flash on mouse-over"), "tools.nodes", "pathflash_enabled", false);
393     _page_node.add_line( true, "", _t_node_pathflash_enabled, "", _("When hovering over a path, briefly flash its outline."));
394     _t_node_pathflash_timeout.init("tools.nodes", "pathflash_timeout", 0, 10000.0, 100.0, 100.0, 1000.0, true, false);
395     _page_node.add_line( false, _("Flash time"), _t_node_pathflash_timeout, "ms", _("Specifies how long the path outline will be visible after a mouse-over (in milliseconds). Specify 0 to have the outline shown until mouse leaves the path."), false);
397     //Tweak
398     this->AddPage(_page_tweak, _("Tweak"), iter_tools, PREFS_PAGE_TOOLS_NODE);
399     AddSelcueCheckbox(_page_tweak, "tools.tweak", true);
400     AddGradientCheckbox(_page_tweak, "tools.tweak", false);
402     //Zoom
403     this->AddPage(_page_zoom, _("Zoom"), iter_tools, PREFS_PAGE_TOOLS_ZOOM);
404     AddSelcueCheckbox(_page_zoom, "tools.zoom", true);
405     AddGradientCheckbox(_page_zoom, "tools.zoom", false);
407     //Shapes
408     Gtk::TreeModel::iterator iter_shapes = this->AddPage(_page_shapes, _("Shapes"), iter_tools, PREFS_PAGE_TOOLS_SHAPES);
409     _path_shapes = _page_list.get_model()->get_path(iter_shapes);
410     this->AddSelcueCheckbox(_page_shapes, "tools.shapes", true);
411     this->AddGradientCheckbox(_page_shapes, "tools.shapes", true);
413     //Rectangle
414     this->AddPage(_page_rectangle, _("Rectangle"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_RECT);
415     this->AddNewObjectsStyle(_page_rectangle, "tools.shapes.rect");
416     this->AddConvertGuidesCheckbox(_page_rectangle, "tools.shapes.rect", true);
418     //3D box
419     this->AddPage(_page_3dbox, _("3D Box"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_3DBOX);
420     this->AddNewObjectsStyle(_page_3dbox, "tools.shapes.3dbox");
421     this->AddConvertGuidesCheckbox(_page_3dbox, "tools.shapes.3dbox", true);
423     //ellipse
424     this->AddPage(_page_ellipse, _("Ellipse"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
425     this->AddNewObjectsStyle(_page_ellipse, "tools.shapes.arc");
427     //star
428     this->AddPage(_page_star, _("Star"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_STAR);
429     this->AddNewObjectsStyle(_page_star, "tools.shapes.star");
431     //spiral
432     this->AddPage(_page_spiral, _("Spiral"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
433     this->AddNewObjectsStyle(_page_spiral, "tools.shapes.spiral");
435     //Pencil
436     this->AddPage(_page_pencil, _("Pencil"), iter_tools, PREFS_PAGE_TOOLS_PENCIL);
437     this->AddSelcueCheckbox(_page_pencil, "tools.freehand.pencil", true);
438     _t_pencil_tolerance.init ( "tools.freehand.pencil", "tolerance", 0.0, 100.0, 0.5, 1.0, 10.0, false, false);
439     _page_pencil.add_line( false, _("Tolerance:"), _t_pencil_tolerance, "",
440                            _("This value affects the amount of smoothing applied to freehand lines; lower values produce more uneven paths with more nodes"),
441                            false );
442     this->AddNewObjectsStyle(_page_pencil, "tools.freehand.pencil");
443     this->AddDotSizeSpinbutton(_page_pencil, "tools.freehand.pencil", 3.0);
445     //Pen
446     this->AddPage(_page_pen, _("Pen"), iter_tools, PREFS_PAGE_TOOLS_PEN);
447     this->AddSelcueCheckbox(_page_pen, "tools.freehand.pen", true);
448     this->AddNewObjectsStyle(_page_pen, "tools.freehand.pen");
449     this->AddDotSizeSpinbutton(_page_pen, "tools.freehand.pen", 3.0);
451     //Calligraphy
452     this->AddPage(_page_calligraphy, _("Calligraphy"), iter_tools, PREFS_PAGE_TOOLS_CALLIGRAPHY);
453     this->AddSelcueCheckbox(_page_calligraphy, "tools.calligraphic", false);
454     this->AddNewObjectsStyle(_page_calligraphy, "tools.calligraphic");
455     _page_calligraphy.add_line( false, "", _calligrapy_use_abs_size, "",
456                             _("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"));
457     _page_calligraphy.add_line( false, "", _calligrapy_keep_selected, "",
458                             _("If on, each newly created object will be selected (deselecting previous selection)"));
459     //Paint Bucket
460     this->AddPage(_page_paintbucket, _("Paint Bucket"), iter_tools, PREFS_PAGE_TOOLS_PAINTBUCKET);
461     this->AddSelcueCheckbox(_page_paintbucket, "tools.paintbucket", false);
462     this->AddNewObjectsStyle(_page_paintbucket, "tools.paintbucket");
464     //Eraser
465     this->AddPage(_page_eraser, _("Eraser"), iter_tools, PREFS_PAGE_TOOLS_ERASER);
466     this->AddNewObjectsStyle(_page_eraser, "tools.eraser");
468     //Text
469     this->AddPage(_page_text, _("Text"), iter_tools, PREFS_PAGE_TOOLS_TEXT);
470     this->AddSelcueCheckbox(_page_text, "tools.text", true);
471     this->AddGradientCheckbox(_page_text, "tools.text", true);
472     this->AddNewObjectsStyle(_page_text, "tools.text");
474     //Gradient
475     this->AddPage(_page_gradient, _("Gradient"), iter_tools, PREFS_PAGE_TOOLS_GRADIENT);
476     this->AddSelcueCheckbox(_page_gradient, "tools.gradient", true);
478     //Connector
479     this->AddPage(_page_connector, _("Connector"), iter_tools, PREFS_PAGE_TOOLS_CONNECTOR);
480     this->AddSelcueCheckbox(_page_connector, "tools.connector", true);
481     _page_connector.add_line(false, "", _connector_ignore_text, "",
482             _("If on, connector attachment points will not be shown for text objects"));
483     //Dropper
484     this->AddPage(_page_dropper, _("Dropper"), iter_tools, PREFS_PAGE_TOOLS_DROPPER);
485     this->AddSelcueCheckbox(_page_dropper, "tools.dropper", true);
486     this->AddGradientCheckbox(_page_dropper, "tools.dropper", true);
489 void InkscapePreferences::initPageWindows()
491     _win_save_geom.init ( _("Save and restore window geometry for each document"), "options.savewindowgeometry", "value", 1, true, 0);
492     _win_save_geom_prefs.init ( _("Remember and use last window's geometry"), "options.savewindowgeometry", "value", 2, false, &_win_save_geom);
493     _win_save_geom_off.init ( _("Don't save window geometry"), "options.savewindowgeometry", "value", 0, false, &_win_save_geom);
495     _win_dockable.init ( _("Dockable"), "options.dialogtype", "value", 1, true, 0);
496     _win_floating.init ( _("Floating"), "options.dialogtype", "value", 0, false, &_win_dockable);
498     _win_hide_task.init ( _("Dialogs are hidden in taskbar"), "options.dialogsskiptaskbar", "value", true);
499     _win_zoom_resize.init ( _("Zoom when window is resized"), "options.stickyzoom", "value", false);
500     _win_show_close.init ( _("Show close button on dialogs"), "dialogs", "showclose", false);
501     _win_ontop_none.init ( _("None"), "options.transientpolicy", "value", 0, false, 0);
502     _win_ontop_normal.init ( _("Normal"), "options.transientpolicy", "value", 1, true, &_win_ontop_none);
503     _win_ontop_agressive.init ( _("Aggressive"), "options.transientpolicy", "value", 2, false, &_win_ontop_none);
505     _page_windows.add_group_header( _("Saving window geometry (size and position):"));
506     _page_windows.add_line( false, "", _win_save_geom_off, "",
507                             _("Let the window manager determine placement of all windows"));
508     _page_windows.add_line( false, "", _win_save_geom_prefs, "",
509                             _("Remember and use the last window's geometry (saves geometry to user preferences)"));
510     _page_windows.add_line( false, "", _win_save_geom, "",
511                             _("Save and restore window geometry for each document (saves geometry in the document)"));
513     _page_windows.add_group_header( _("Dialog behavior (requires restart):"));
514     _page_windows.add_line( true, "", _win_dockable, "",
515                             _("Dockable"));
516     _page_windows.add_line( true, "", _win_floating, "",
517                             _("Floating"));
519 #ifndef WIN32 // non-Win32 special code to enable transient dialogs
520     _page_windows.add_group_header( _("Dialogs on top:"));
522     _page_windows.add_line( true, "", _win_ontop_none, "",
523                             _("Dialogs are treated as regular windows"));
524     _page_windows.add_line( true, "", _win_ontop_normal, "",
525                             _("Dialogs stay on top of document windows"));
526     _page_windows.add_line( true, "", _win_ontop_agressive, "",
527                             _("Same as Normal but may work better with some window managers"));
528 #endif
530     _page_windows.add_group_header( _("Miscellaneous:"));
531 #ifndef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
532     _page_windows.add_line( false, "", _win_hide_task, "",
533                             _("Whether dialog windows are to be hidden in the window manager taskbar"));
534 #endif
535     _page_windows.add_line( false, "", _win_zoom_resize, "",
536                             _("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)"));
537     _page_windows.add_line( false, "", _win_show_close, "",
538                             _("Whether dialog windows have a close button (requires restart)"));
539     this->AddPage(_page_windows, _("Windows"), PREFS_PAGE_WINDOWS);
542 void InkscapePreferences::initPageClones()
544     _clone_option_parallel.init ( _("Move in parallel"), "options.clonecompensation", "value",
545                                   SP_CLONE_COMPENSATION_PARALLEL, true, 0);
546     _clone_option_stay.init ( _("Stay unmoved"), "options.clonecompensation", "value",
547                                   SP_CLONE_COMPENSATION_UNMOVED, false, &_clone_option_parallel);
548     _clone_option_transform.init ( _("Move according to transform"), "options.clonecompensation", "value",
549                                   SP_CLONE_COMPENSATION_NONE, false, &_clone_option_parallel);
550     _clone_option_unlink.init ( _("Are unlinked"), "options.cloneorphans", "value",
551                                   SP_CLONE_ORPHANS_UNLINK, true, 0);
552     _clone_option_delete.init ( _("Are deleted"), "options.cloneorphans", "value",
553                                   SP_CLONE_ORPHANS_DELETE, false, &_clone_option_unlink);
555     _page_clones.add_group_header( _("When the original moves, its clones and linked offsets:"));
556     _page_clones.add_line( true, "", _clone_option_parallel, "",
557                            _("Clones are translated by the same vector as their original."));
558     _page_clones.add_line( true, "", _clone_option_stay, "",
559                            _("Clones preserve their positions when their original is moved."));
560     _page_clones.add_line( true, "", _clone_option_transform, "",
561                            _("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."));
562     _page_clones.add_group_header( _("When the original is deleted, its clones:"));
563     _page_clones.add_line( true, "", _clone_option_unlink, "",
564                            _("Orphaned clones are converted to regular objects."));
565     _page_clones.add_line( true, "", _clone_option_delete, "",
566                            _("Orphaned clones are deleted along with their original."));
568     //TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page
569     this->AddPage(_page_clones, _("Clones"), PREFS_PAGE_CLONES);
572 void InkscapePreferences::initPageMasks()
574     _mask_mask_on_top.init ( _("When applying, use the topmost selected object as clippath/mask"), "options.maskobject", "topmost", true);
575     _page_mask.add_line(true, "", _mask_mask_on_top, "",
576                         _("Uncheck this to use the bottom selected object as the clipping path or mask"));
577     _mask_mask_remove.init ( _("Remove clippath/mask object after applying"), "options.maskobject", "remove", true);
578     _page_mask.add_line(true, "", _mask_mask_remove, "",
579                         _("After applying, remove the object used as the clipping path or mask from the drawing"));
580     this->AddPage(_page_mask, _("Clippaths and masks"), PREFS_PAGE_MASKS);
583 void InkscapePreferences::initPageTransforms()
585     _trans_scale_stroke.init ( _("Scale stroke width"), "options.transform", "stroke", true);
586     _trans_scale_corner.init ( _("Scale rounded corners in rectangles"), "options.transform", "rectcorners", false);
587     _trans_gradient.init ( _("Transform gradients"), "options.transform", "gradient", true);
588     _trans_pattern.init ( _("Transform patterns"), "options.transform", "pattern", false);
589     _trans_optimized.init ( _("Optimized"), "options.preservetransform", "value", 0, true, 0);
590     _trans_preserved.init ( _("Preserved"), "options.preservetransform", "value", 1, false, &_trans_optimized);
592     _page_transforms.add_line( false, "", _trans_scale_stroke, "",
593                                _("When scaling objects, scale the stroke width by the same proportion"));
594     _page_transforms.add_line( false, "", _trans_scale_corner, "",
595                                _("When scaling rectangles, scale the radii of rounded corners"));
596     _page_transforms.add_line( false, "", _trans_gradient, "",
597                                _("Move gradients (in fill or stroke) along with the objects"));
598     _page_transforms.add_line( false, "", _trans_pattern, "",
599                                _("Move patterns (in fill or stroke) along with the objects"));
600     _page_transforms.add_group_header( _("Store transformation:"));
601     _page_transforms.add_line( true, "", _trans_optimized, "",
602                                _("If possible, apply transformation to objects without adding a transform= attribute"));
603     _page_transforms.add_line( true, "", _trans_preserved, "",
604                                _("Always store transformation as a transform= attribute on objects"));
606     this->AddPage(_page_transforms, _("Transforms"), PREFS_PAGE_TRANSFORMS);
609 void InkscapePreferences::initPageFilters()
611     _blur_quality_best.init ( _("Best quality (slowest)"), "options.blurquality", "value",
612                                   BLUR_QUALITY_BEST, false, 0);
613     _blur_quality_better.init ( _("Better quality (slower)"), "options.blurquality", "value",
614                                   BLUR_QUALITY_BETTER, false, &_blur_quality_best);
615     _blur_quality_normal.init ( _("Average quality"), "options.blurquality", "value",
616                                   BLUR_QUALITY_NORMAL, true, &_blur_quality_best);
617     _blur_quality_worse.init ( _("Lower quality (faster)"), "options.blurquality", "value",
618                                   BLUR_QUALITY_WORSE, false, &_blur_quality_best);
619     _blur_quality_worst.init ( _("Lowest quality (fastest)"), "options.blurquality", "value",
620                                   BLUR_QUALITY_WORST, false, &_blur_quality_best);
622     _page_filters.add_group_header( _("Gaussian blur quality for display:"));
623     _page_filters.add_line( true, "", _blur_quality_best, "",
624                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
625     _page_filters.add_line( true, "", _blur_quality_better, "",
626                            _("Better quality, but slower display"));
627     _page_filters.add_line( true, "", _blur_quality_normal, "",
628                            _("Average quality, acceptable display speed"));
629     _page_filters.add_line( true, "", _blur_quality_worse, "",
630                            _("Lower quality (some artifacts), but display is faster"));
631     _page_filters.add_line( true, "", _blur_quality_worst, "",
632                            _("Lowest quality (considerable artifacts), but display is fastest"));
634     _show_filters_info_box.init( _("Show filter primitives infobox"), "options.showfiltersinfobox", "value", true);
635     _page_filters.add_line(true, "", _show_filters_info_box, "",
636                         _("Show icons and descriptions for the filter primitives available at the filter effects dialog."));
638     this->AddPage(_page_filters, _("Filters"), PREFS_PAGE_FILTERS);
642 void InkscapePreferences::initPageSelecting()
644     _sel_all.init ( _("Select in all layers"), "options.kbselection", "inlayer", PREFS_SELECTION_ALL, false, 0);
645     _sel_current.init ( _("Select only within current layer"), "options.kbselection", "inlayer", PREFS_SELECTION_LAYER, true, &_sel_all);
646     _sel_recursive.init ( _("Select in current layer and sublayers"), "options.kbselection", "inlayer", PREFS_SELECTION_LAYER_RECURSIVE, false, &_sel_all);
647     _sel_hidden.init ( _("Ignore hidden objects and layers"), "options.kbselection", "onlyvisible", true);
648     _sel_locked.init ( _("Ignore locked objects and layers"), "options.kbselection", "onlysensitive", true);
649     _sel_layer_deselects.init ( _("Deselect upon layer change"), "options.selection", "layerdeselect", true);
651     _page_select.add_group_header( _("Ctrl+A, Tab, Shift+Tab:"));
652     _page_select.add_line( true, "", _sel_all, "",
653                            _("Make keyboard selection commands work on objects in all layers"));
654     _page_select.add_line( true, "", _sel_current, "",
655                            _("Make keyboard selection commands work on objects in current layer only"));
656     _page_select.add_line( true, "", _sel_recursive, "",
657                            _("Make keyboard selection commands work on objects in current layer and all its sublayers"));
658     _page_select.add_line( true, "", _sel_hidden, "",
659                            _("Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)"));
660     _page_select.add_line( true, "", _sel_locked, "",
661                            _("Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)"));
663     _page_select.add_line( false, "", _sel_layer_deselects, "",
664                            _("Uncheck this to be able to keep the current objects selected when the current layer changes"));
666     this->AddPage(_page_select, _("Selecting"), PREFS_PAGE_SELECTING);
670 void InkscapePreferences::initPageImportExport()
672     _importexport_export.init("dialogs.export.defaultxdpi", "value", 0.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
673     _page_importexport.add_line( false, _("Default export resolution:"), _importexport_export, _("dpi"),
674                             _("Default bitmap resolution (in dots per inch) in the Export dialog"), false);
675     _importexport_ocal_url.init("options.ocalurl", "str", true, g_strdup_printf("openclipart.org"));
676     _page_importexport.add_line( false, _("Open Clip Art Library Server Name:"), _importexport_ocal_url, "",
677         _("The server name of the Open Clip Art Library webdav server. It's used by the Import and Export to OCAL function."), true);
678     _importexport_ocal_username.init("options.ocalusername", "str", true);
679     _page_importexport.add_line( false, _("Open Clip Art Library Username:"), _importexport_ocal_username, "",
680             _("The username used to log into Open Clip Art Library."), true);
681     _importexport_ocal_password.init("options.ocalpassword", "str", false);
682     _page_importexport.add_line( false, _("Open Clip Art Library Password:"), _importexport_ocal_password, "",
683             _("The password used to log into Open Clip Art Library."), true);
685     this->AddPage(_page_importexport, _("Import/Export"), PREFS_PAGE_IMPORTEXPORT);
688 #if ENABLE_LCMS
689 static void profileComboChanged( Gtk::ComboBoxText* combo )
691     int rowNum = combo->get_active_row_number();
692     if ( rowNum < 1 ) {
693         prefs_set_string_attribute( "options.displayprofile", "uri", "" );
694     } else {
695         Glib::ustring active = combo->get_active_text();
697         Glib::ustring path = get_path_for_profile(active);
698         if ( !path.empty() ) {
699             prefs_set_string_attribute( "options.displayprofile", "uri", path.c_str() );
700         }
701     }
704 static void proofComboChanged( Gtk::ComboBoxText* combo )
706     Glib::ustring active = combo->get_active_text();
708     Glib::ustring path = get_path_for_profile(active);
709     if ( !path.empty() ) {
710         prefs_set_string_attribute( "options.softproof", "uri", path.c_str() );
711     }
714 static void gamutColorChanged( Gtk::ColorButton* btn ) {
715     Gdk::Color color = btn->get_color();
716     gushort r = color.get_red();
717     gushort g = color.get_green();
718     gushort b = color.get_blue();
720     gchar* tmp = g_strdup_printf("#%02x%02x%02x", (r >> 8), (g >> 8), (b >> 8) );
722     prefs_set_string_attribute( "options.softproof", "gamutcolor", tmp );
723     g_free(tmp);
725 #endif // ENABLE_LCMS
727 void InkscapePreferences::initPageCMS()
729     int const numIntents = 4;
730     /* TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm */
731     Glib::ustring intentLabels[numIntents] = {_("Perceptual"), _("Relative Colorimetric"), _("Saturation"), _("Absolute Colorimetric")};
732     int intentValues[numIntents] = {0, 1, 2, 3};
734 #if !ENABLE_LCMS
735     Gtk::Label* lbl = new Gtk::Label(_("(Note: Color management has been disabled in this build)"));
736     _page_cms.add_line( false, "", *lbl, "", "", true);
737 #endif // !ENABLE_LCMS
739     _page_cms.add_group_header( _("Display adjustment"));
741     _page_cms.add_line( false, _("Display profile:"), _cms_display_profile, "",
742                         _("The ICC profile to use to calibrate display output."), false);
744     _cms_from_display.init( _("Retrieve profile from display"), "options.displayprofile", "from_display", false);
745     _page_cms.add_line( false, "", _cms_from_display, "",
746 #ifdef GDK_WINDOWING_X11
747                         _("Retrieve profiles from those attached to displays via XICC."), false);
748 #else
749                         _("Retrieve profiles from those attached to displays."), false);
750 #endif // GDK_WINDOWING_X11
753     _cms_intent.init("options.displayprofile", "intent", intentLabels, intentValues, numIntents, 0);
754     _page_cms.add_line( false, _("Display rendering intent:"), _cms_intent, "",
755                         _("The rendering intent to use to calibrate display output."), false);
757     _page_cms.add_group_header( _("Proofing"));
759     _cms_softproof.init( _("Simulate output on screen"), "options.softproof", "enable", false);
760     _page_cms.add_line( false, "", _cms_softproof, "",
761                         _("Simulates output of target device."), false);
763     _cms_gamutwarn.init( _("Mark out of gamut colors"), "options.softproof", "gamutwarn", false);
764     _page_cms.add_line( false, "", _cms_gamutwarn, "",
765                         _("Highlights colors that are out of gamut for the target device."), false);
767     gchar const* colorStr = prefs_get_string_attribute("options.softproof", "gamutcolor");
768     Gdk::Color tmpColor( (colorStr && colorStr[0]) ? colorStr : "#00ff00");
769     _cms_gamutcolor.set_color( tmpColor );
770     _page_cms.add_line( true, _("Out of gamut warning color:"), _cms_gamutcolor, "",
771                         _("Selects the color used for out of gamut warning."), false);
773     _page_cms.add_line( false, _("Device profile:"), _cms_proof_profile, "",
774                         _("The ICC profile to use to simulate device output."), false);
776     _cms_proof_intent.init("options.softproof", "intent", intentLabels, intentValues, numIntents, 0);
777     _page_cms.add_line( false, _("Device rendering intent:"), _cms_proof_intent, "",
778                         _("The rendering intent to use to calibrate display output."), false);
780     _cms_proof_blackpoint.init( _("Black point compensation"), "options.softproof", "bpc", false);
781     _page_cms.add_line( false, "", _cms_proof_blackpoint, "",
782                         _("Enables black point compensation."), false);
784     _cms_proof_preserveblack.init( _("Preserve black"), "options.softproof", "preserveblack", false);
785     _page_cms.add_line( false, "", _cms_proof_preserveblack,
786 #if defined(cmsFLAGS_PRESERVEBLACK)
787                         "",
788 #else
789                         _("(LittleCMS 1.15 or later required)"),
790 #endif // defined(cmsFLAGS_PRESERVEBLACK)
791                         _("Preserve K channel in CMYK -> CMYK transforms"), false);
793 #if !defined(cmsFLAGS_PRESERVEBLACK)
794     _cms_proof_preserveblack.set_sensitive( false );
795 #endif // !defined(cmsFLAGS_PRESERVEBLACK)
798 #if ENABLE_LCMS
799     {
800         std::vector<Glib::ustring> names = ::Inkscape::colorprofile_get_display_names();
801         Glib::ustring current = prefs_get_string_attribute( "options.displayprofile", "uri" );
803         gint index = 0;
804         _cms_display_profile.append_text(_("<none>"));
805         index++;
806         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
807             _cms_display_profile.append_text( *it );
808             Glib::ustring path = get_path_for_profile(*it);
809             if ( !path.empty() && path == current ) {
810                 _cms_display_profile.set_active(index);
811             }
812             index++;
813         }
814         if ( current.empty() ) {
815             _cms_display_profile.set_active(0);
816         }
818         names = ::Inkscape::colorprofile_get_softproof_names();
819         const gchar * tmp = prefs_get_string_attribute( "options.softproof", "uri" );
820         current = tmp ? tmp : "";
821         index = 0;
822         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
823             _cms_proof_profile.append_text( *it );
824             Glib::ustring path = get_path_for_profile(*it);
825             if ( !path.empty() && path == current ) {
826                 _cms_proof_profile.set_active(index);
827             }
828             index++;
829         }
830     }
832     _cms_gamutcolor.signal_color_set().connect( sigc::bind( sigc::ptr_fun(gamutColorChanged), &_cms_gamutcolor) );
834     _cms_display_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(profileComboChanged), &_cms_display_profile) );
835     _cms_proof_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(proofComboChanged), &_cms_proof_profile) );
836 #else
837     // disable it, but leave it visible
838     _cms_intent.set_sensitive( false );
839     _cms_display_profile.set_sensitive( false );
840     _cms_from_display.set_sensitive( false );
841     _cms_softproof.set_sensitive( false );
842     _cms_gamutwarn.set_sensitive( false );
843     _cms_gamutcolor.set_sensitive( false );
844     _cms_proof_intent.set_sensitive( false );
845     _cms_proof_profile.set_sensitive( false );
846     _cms_proof_blackpoint.set_sensitive( false );
847     _cms_proof_preserveblack.set_sensitive( false );
848 #endif // ENABLE_LCMS
850     this->AddPage(_page_cms, _("Color management"), PREFS_PAGE_CMS);
853 void InkscapePreferences::initPageGrids()
855     _page_grids.add_group_header( _("Major grid line emphasizing"));
857     _grids_no_emphasize_on_zoom.init( _("Don't emphasize gridlines when zoomed out"), "options.grids", "no_emphasize_when_zoomedout", false);
858     _page_grids.add_line( false, "", _grids_no_emphasize_on_zoom, "", _("If set and zoomed out, the gridlines will be shown in normal color instead of major grid line color."), false);
860     _page_grids.add_group_header( _("Default grid settings"));
862     _page_grids.add_line( false, "", _grids_notebook, "", "", false);
863     _grids_notebook.append_page(_grids_xy,     CanvasGrid::getName( GRID_RECTANGULAR ));
864     _grids_notebook.append_page(_grids_axonom, CanvasGrid::getName( GRID_AXONOMETRIC ));
865         _grids_xy_units.init("options.grids.xy", "units");
866         _grids_xy.add_line( false, _("Grid units"), _grids_xy_units, "", "", false);
867         _grids_xy_origin_x.init("options.grids.xy", "origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
868         _grids_xy_origin_y.init("options.grids.xy", "origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
869         _grids_xy.add_line( false, _("Origin X"), _grids_xy_origin_x, "", _("X coordinate of grid origin"), false);
870         _grids_xy.add_line( false, _("Origin Y"), _grids_xy_origin_y, "", _("Y coordinate of grid origin"), false);
871         _grids_xy_spacing_x.init("options.grids.xy", "spacing_x", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
872         _grids_xy_spacing_y.init("options.grids.xy", "spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
873         _grids_xy.add_line( false, _("Spacing X"), _grids_xy_spacing_x, "", _("Distance between vertical grid lines"), false);
874         _grids_xy.add_line( false, _("Spacing Y"), _grids_xy_spacing_y, "", _("Distance between horizontal grid lines"), false);
876         _grids_xy_color.init(_("Grid line color"), "options.grids.xy", "color", 0x0000ff20);
877         _grids_xy.add_line( false, _("Grid line color"), _grids_xy_color, "", _("Selects the color used for normal grid lines."), false);
878         _grids_xy_empcolor.init(_("Major grid line color"), "options.grids.xy", "empcolor", 0x0000ff40);
879         _grids_xy.add_line( false, _("Major grid line color"), _grids_xy_empcolor, "", _("Selects the color used for major (highlighted) grid lines."), false);
880         _grids_xy_empspacing.init("options.grids.xy", "empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
881         _grids_xy.add_line( false, _("Major grid line every"), _grids_xy_empspacing, "", "", false);
882         _grids_xy_dotted.init( _("Show dots instead of lines"), "options.grids.xy", "dotted", false);
883         _grids_xy.add_line( false, "", _grids_xy_dotted, "", _("If set, displays dots at gridpoints instead of gridlines"), false);
885     // CanvasAxonomGrid properties:
886         _grids_axonom_units.init("options.grids.axonom", "units");
887         _grids_axonom.add_line( false, _("Grid units"), _grids_axonom_units, "", "", false);
888         _grids_axonom_origin_x.init("options.grids.axonom", "origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
889         _grids_axonom_origin_y.init("options.grids.axonom", "origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
890         _grids_axonom.add_line( false, _("Origin X"), _grids_axonom_origin_x, "", _("X coordinate of grid origin"), false);
891         _grids_axonom.add_line( false, _("Origin Y"), _grids_axonom_origin_y, "", _("Y coordinate of grid origin"), false);
892         _grids_axonom_spacing_y.init("options.grids.axonom", "spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
893         _grids_axonom.add_line( false, _("Spacing Y"), _grids_axonom_spacing_y, "", _("Base length of z-axis"), false);
894         _grids_axonom_angle_x.init("options.grids.axonom", "angle_x", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
895         _grids_axonom_angle_z.init("options.grids.axonom", "angle_z", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
896         _grids_axonom.add_line( false, _("Angle X"), _grids_axonom_angle_x, "", _("Angle of x-axis"), false);
897         _grids_axonom.add_line( false, _("Angle Z"), _grids_axonom_angle_z, "", _("Angle of z-axis"), false);
898         _grids_axonom_color.init(_("Grid line color"), "options.grids.axonom", "color", 0x0000ff20);
899         _grids_axonom.add_line( false, _("Grid line color"), _grids_axonom_color, "", _("Selects the color used for normal grid lines."), false);
900         _grids_axonom_empcolor.init(_("Major grid line color"), "options.grids.axonom", "empcolor", 0x0000ff40);
901         _grids_axonom.add_line( false, _("Major grid line color"), _grids_axonom_empcolor, "", _("Selects the color used for major (highlighted) grid lines."), false);
902         _grids_axonom_empspacing.init("options.grids.axonom", "empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
903         _grids_axonom.add_line( false, _("Major grid line every"), _grids_axonom_empspacing, "", "", false);
905     this->AddPage(_page_grids, _("Grids"), PREFS_PAGE_GRIDS);
908 void InkscapePreferences::initPageSVGOutput()
910     _svgoutput_usenamedcolors.init( _("Use named colors"), "options.svgoutput", "usenamedcolors", false);
911     _page_svgoutput.add_line( false, "", _svgoutput_usenamedcolors, "", _("If set, write the CSS name of the color instead of it's numeric value."), false);
913     _page_svgoutput.add_group_header( _("XML looks"));
915     _svgoutput_inlineattrs.init( _("Inline attributes"), "options.svgoutput", "inlineattrs", false);
916     _page_svgoutput.add_line( false, "", _svgoutput_inlineattrs, "", _("Inline the XML attributes"), false);
918     _svgoutput_indent.init("options.svgoutput", "indent", 0.0, 1000.0, 1.0, 2.0, 2.0, true, false);
919     _page_svgoutput.add_line( false, _("Indent spaces"), _svgoutput_indent, "", _("The number of spaces to use for indentation."), false);
921     _page_svgoutput.add_group_header( _("Path string"));
923     _svgoutput_allowrelativecoordinates.init( _("Allow relative coordinates"), "options.svgoutput", "allowrelativecoordinates", true);
924     _page_svgoutput.add_line( false, "", _svgoutput_allowrelativecoordinates, "", _("If set, relative coordinates may be used in path data"), false);
926     /* seems this is never used in Inkscape code
927     _svgoutput_allowshorthands.init( _("Allow shorthands"), "options.svgoutput", "allowshorthands", true);
928     _page_svgoutput.add_line( false, "", _svgoutput_allowshorthands, "", _(""), false);
929     */
931     _svgoutput_forcerepeatcommands.init( _("Force repeat commands"), "options.svgoutput", "forcerepeatcommands", false);
932     _page_svgoutput.add_line( false, "", _svgoutput_forcerepeatcommands, "", _("If set, force repeating of the same command (i.e. output 'L 1,2 L 3,4' instead of 'L 1,2 3,4')."), false);
934     _page_svgoutput.add_group_header( _("Numeric data"));
936     _svgoutput_numericprecision.init("options.svgoutput", "numericprecision", 0.0, 1000.0, 1.0, 2.0, 8.0, true, false);
937     _page_svgoutput.add_line( false, _("Numeric precision"), _svgoutput_numericprecision, "", _("The number of digits to use behind the comma."), false);
939     _svgoutput_minimumexponent.init("options.svgoutput", "minimumexponent", -100.0, 100.0, 1.0, 2.0, -8.0, true, false);
940     _page_svgoutput.add_line( false, _("Minimum exponent"), _svgoutput_minimumexponent, "", _("The minimum size of a number (10 to the power of this exponent), smaller numbers will be written as zero."), false);
942     this->AddPage(_page_svgoutput, _("SVG Output"), PREFS_PAGE_SVGOUTPUT);
945 void InkscapePreferences::initPageMisc()
947     _misc_comment.init( _("Add label comments to printing output"), "printing.debug", "show-label-comments", false);
948     _page_misc.add_line( false, "", _misc_comment, "",
949                            _("When on, a comment will be added to the raw print output, marking the rendered output for an object with its label"), true);
951     _misc_forkvectors.init( _("Prevent sharing of gradient definitions"), "options.forkgradientvectors", "value", true);
952     _page_misc.add_line( false, "", _misc_forkvectors, "",
953                            _("When on, shared gradient definitions are automatically forked on change; uncheck to allow sharing of gradient definitions so that editing one object may affect other objects using the same gradient"), true);
955     _page_misc.add_line( false, _("Simplification threshold:"), _misc_simpl, "",
956                            _("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);
957     {
958         Glib::ustring labels[] = {_("None"), _("2x2"), _("4x4"), _("8x8"), _("16x16")};
959         int values[] = {0, 1, 2, 3, 4};
960         _misc_overs_bitmap.set_size_request(_sb_width);
961         _misc_overs_bitmap.init("options.bitmapoversample", "value", labels, values, G_N_ELEMENTS(values), 1);
962         _page_misc.add_line( false, _("Oversample bitmaps:"), _misc_overs_bitmap, "", "", false);
963     }
966     // consider moving this to an UI tab:
968     Glib::ustring sizeLabels[] = {_("Normal"), _("Medium"), _("Small")};
969     int sizeValues[] = {0, 1, 2};
971     _misc_small_toolbar.init( "toolbox", "small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
972     _page_misc.add_line( false, _("Commands bar icon size"), _misc_small_toolbar, "",
973                            _("Set the size for the commands toolbar to use (requires restart)"), false);
975     _misc_small_secondary.init( "toolbox", "secondary", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 1 );
976     _page_misc.add_line( false, _("Tool controls bar icon size"), _misc_small_secondary, "",
977                            _("Set the size for the secondary toolbar to use (requires restart)"), false);
979     _misc_small_tools.init( "toolbox.tools", "small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
980     _page_misc.add_line( false, _("Main toolbar icon size"), _misc_small_tools, "",
981                            _("Set the size for the main tools to use (requires restart)"), false);
983     _misc_recent.init("options.maxrecentdocuments", "value", 0.0, 1000.0, 1.0, 1.0, 1.0, true, false);
984     _page_misc.add_line( false, _("Maximum number of recent documents:"), _misc_recent, "",
985                            _("The maximum length of the Open Recent list in the File menu"), false);
986     _misc_simpl.init("options.simplifythreshold", "value", 0.0001, 1.0, 0.0001, 0.0010, 0.0010, false, false);
989     // Autosave options 
990     _misc_autosave_enable.init( _("Enable auto-save of document"), "options.autosave", "enable", false);
991     _page_misc.add_line(false, "", _misc_autosave_enable, "", _("Automatically saves the current document to disk at a given interval, thus minimizing loss at a crash"), false);
992     _misc_autosave_interval.init("options.autosave", "interval", 1.0, 10800.0, 1.0, 10.0, 10.0, true, false);
993     _page_misc.add_line(true, _("Interval (in minutes):"), _misc_autosave_interval, "", _("Sets the interval (in minutes) at which a workspace will be automatically saved to disk"), false);
994     _misc_autosave_path.init("options.autosave", "path", true);
995     _page_misc.add_line(true, _("Path:"), _misc_autosave_path, "", _("Sets the directory where autosaves will be written"), false);
996     _misc_autosave_max.init("options.autosave", "max", 1.0, 100.0, 1.0, 10.0, 10.0, true, false);
997     _page_misc.add_line(true, _("Maximum number of autosaves"), _misc_autosave_max, "", _("Allows for limiting the space used by autosaves, by setting a maximum number of allowed files"), false);
999     /* When changing the interval or enabling/disabling the autosave function,
1000      * update our running configuration
1001      *
1002      * FIXME!
1003      * the inkscape_autosave_init should be called AFTER the values have been changed
1004      * (which cannot be guaranteed from here)
1005      *
1006      * For now, autosave-settings will not change until restart
1007      */
1008     /*
1009     _misc_autosave_enable.signal_toggled().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1010     _misc_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1011     */
1013     // -----------
1015     _misc_bitmap_autoreload.init(_("Automatically reload bitmaps"), "options.bitmapautoreload", "value", true);
1016     _page_misc.add_line( false, "", _misc_bitmap_autoreload, "",
1017                            _("Enbles automatic reload of linked images when changed on disk."));
1018     gchar const *choices = prefs_get_string_attribute("options.bitmapeditor", "choices");
1019     if ( choices && choices[0] ) {
1020         gchar** splits = g_strsplit(choices, ",", 0);
1021         gint numIems = g_strv_length(splits);
1023         Glib::ustring labels[numIems];
1024         int values[numIems];
1025         for ( gint i = 0; i < numIems; i++) {
1026             values[i] = i;
1027             labels[i] = splits[i];
1028         }
1029         _misc_bitmap_editor.init("options.bitmapeditor", "value", labels, values, numIems, 0);
1030         _page_misc.add_line( false, _("Bitmap editor:"), _misc_bitmap_editor, "", "", false);
1032         g_strfreev(splits);
1033     }
1036     this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC);
1039 bool InkscapePreferences::SetMaxDialogSize(const Gtk::TreeModel::iterator& iter)
1041     Gtk::TreeModel::Row row = *iter;
1042     DialogPage* page = row[_page_list_columns._col_page];
1043     _page_frame.add(*page);
1044     this->show_all_children();
1045     Gtk:: Requisition sreq;
1046     this->size_request(sreq);
1047     _max_dialog_width=std::max(_max_dialog_width, sreq.width);
1048     _max_dialog_height=std::max(_max_dialog_height, sreq.height);
1049     _page_frame.remove();
1050     return false;
1053 bool InkscapePreferences::PresentPage(const Gtk::TreeModel::iterator& iter)
1055     Gtk::TreeModel::Row row = *iter;
1056     int desired_page = prefs_get_int_attribute("dialogs.preferences", "page", 0);
1057     if (desired_page == row[_page_list_columns._col_id])
1058     {
1059         if (desired_page >= PREFS_PAGE_TOOLS && desired_page <= PREFS_PAGE_TOOLS_DROPPER)
1060             _page_list.expand_row(_path_tools, false);
1061         if (desired_page >= PREFS_PAGE_TOOLS_SHAPES && desired_page <= PREFS_PAGE_TOOLS_SHAPES_SPIRAL)
1062             _page_list.expand_row(_path_shapes, false);
1063         _page_list.get_selection()->select(iter);
1064         return true;
1065     }
1066     return false;
1069 void InkscapePreferences::on_pagelist_selection_changed()
1071     // show new selection
1072     Glib::RefPtr<Gtk::TreeSelection> selection = _page_list.get_selection();
1073     Gtk::TreeModel::iterator iter = selection->get_selected();
1074     if(iter)
1075     {
1076         if (_current_page)
1077             _page_frame.remove();
1078         Gtk::TreeModel::Row row = *iter;
1079         _current_page = row[_page_list_columns._col_page];
1080         prefs_set_int_attribute("dialogs.preferences", "page", row[_page_list_columns._col_id]);
1081         _page_title.set_markup("<span size='large'><b>" + row[_page_list_columns._col_name] + "</b></span>");
1082         _page_frame.add(*_current_page);
1083         _current_page->show();
1084         while (Gtk::Main::events_pending())
1085         {
1086             Gtk::Main::iteration();
1087         }
1088         this->show_all_children();
1089     }
1092 void InkscapePreferences::_presentPages()
1094     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::PresentPage));
1097 } // namespace Dialog
1098 } // namespace UI
1099 } // namespace Inkscape
1101 /*
1102   Local Variables:
1103   mode:c++
1104   c-file-style:"stroustrup"
1105   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
1106   indent-tabs-mode:nil
1107   fill-column:99
1108   End:
1109 */
1110 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :