Code

866ae01e5c1edd1f9b84a606b766914527b2c6e8
[inkscape.git] / src / ui / dialog / inkscape-preferences.cpp
1 /** @file
2  * @brief Inkscape Preferences dialog - implementation
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 <gtk/gtkicontheme.h>
26 #include "preferences.h"
27 #include "inkscape-preferences.h"
28 #include "verbs.h"
29 #include "selcue.h"
30 #include "unit-constants.h"
31 #include <iostream>
32 #include "enums.h"
33 // #include "inkscape.h"
34 #include "desktop-handles.h"
35 #include "message-stack.h"
36 #include "style.h"
37 #include "selection.h"
38 #include "selection-chemistry.h"
39 #include "xml/repr.h"
40 #include "ui/widget/style-swatch.h"
41 #include "display/nr-filter-gaussian.h"
42 #include "display/nr-filter-types.h"
43 #include "color-profile-fns.h"
44 #include "color-profile.h"
45 #include "display/canvas-grid.h"
46 #include "path-prefix.h"
48 #ifdef HAVE_ASPELL
49 # include <aspell.h>
50 # ifdef WIN32
51 #  include <windows.h>
52 # endif
53 #endif
55 namespace Inkscape {
56 namespace UI {
57 namespace Dialog {
59 using Inkscape::UI::Widget::DialogPage;
60 using Inkscape::UI::Widget::PrefCheckButton;
61 using Inkscape::UI::Widget::PrefRadioButton;
62 using Inkscape::UI::Widget::PrefSpinButton;
63 using Inkscape::UI::Widget::StyleSwatch;
66 InkscapePreferences::InkscapePreferences()
67     : UI::Widget::Panel ("", "/dialogs/preferences", SP_VERB_DIALOG_DISPLAY),
68       _max_dialog_width(0),
69       _max_dialog_height(0),
70       _current_page(0)
71 {
72     //get the width of a spinbutton
73     Gtk::SpinButton* sb = new Gtk::SpinButton;
74     sb->set_width_chars(6);
75     _getContents()->add(*sb);
76     show_all_children();
77     Gtk::Requisition sreq;
78     sb->size_request(sreq);
79     _sb_width = sreq.width;
80     _getContents()->remove(*sb);
81     delete sb;
83     //Main HBox
84     Gtk::HBox* hbox_list_page = Gtk::manage(new Gtk::HBox());
85     hbox_list_page->set_border_width(12);
86     hbox_list_page->set_spacing(12);
87     _getContents()->add(*hbox_list_page);
89     //Pagelist
90     Gtk::Frame* list_frame = Gtk::manage(new Gtk::Frame());
91     Gtk::ScrolledWindow* scrolled_window = Gtk::manage(new Gtk::ScrolledWindow());
92     hbox_list_page->pack_start(*list_frame, false, true, 0);
93     _page_list.set_headers_visible(false);
94     scrolled_window->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
95     scrolled_window->add(_page_list);
96     list_frame->set_shadow_type(Gtk::SHADOW_IN);
97     list_frame->add(*scrolled_window);
98     _page_list_model = Gtk::TreeStore::create(_page_list_columns);
99     _page_list.set_model(_page_list_model);
100     _page_list.append_column("name",_page_list_columns._col_name);
101     Glib::RefPtr<Gtk::TreeSelection> page_list_selection = _page_list.get_selection();
102     page_list_selection->signal_changed().connect(sigc::mem_fun(*this, &InkscapePreferences::on_pagelist_selection_changed));
103     page_list_selection->set_mode(Gtk::SELECTION_BROWSE);
105     //Pages
106     Gtk::VBox* vbox_page = Gtk::manage(new Gtk::VBox());
107     Gtk::Frame* title_frame = Gtk::manage(new Gtk::Frame());
109     Gtk::ScrolledWindow* pageScroller = Gtk::manage(new Gtk::ScrolledWindow());
110     pageScroller->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
111     pageScroller->add(*vbox_page);
112     hbox_list_page->pack_start(*pageScroller, true, true, 0);
114     title_frame->add(_page_title);
115     vbox_page->pack_start(*title_frame, false, false, 0);
116     vbox_page->pack_start(_page_frame, true, true, 0);
117     _page_frame.set_shadow_type(Gtk::SHADOW_IN);
118     title_frame->set_shadow_type(Gtk::SHADOW_IN);
120     initPageTools();
121     initPageSelecting();
122     initPageTransforms();
123     initPageClones();
124     initPageMasks();
125     initPageFilters();
126     initPageBitmaps();
127     initPageCMS();
128     initPageGrids();
129     initPageSVGOutput();
130     initPageSave();
131     initPageImportExport();
132     initPageMouse();
133     initPageScrolling();
134     initPageSnapping();
135     initPageSteps();
136     initPageUI();
137     initPageWindows();
138     initPageSpellcheck();
139     initPageMisc();
141     signalPresent().connect(sigc::mem_fun(*this, &InkscapePreferences::_presentPages));
143     //calculate the size request for this dialog
144     this->show_all_children();
145     _page_list.expand_all();
146     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::SetMaxDialogSize));
147     _getContents()->set_size_request(_max_dialog_width, _max_dialog_height);
148     _page_list.collapse_all();
151 InkscapePreferences::~InkscapePreferences()
155 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, int id)
157     return AddPage(p, title, Gtk::TreeModel::iterator() , id);
160 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id)
162     Gtk::TreeModel::iterator iter;
163     if (parent)
164        iter = _page_list_model->append((*parent).children());
165     else
166        iter = _page_list_model->append();
167     Gtk::TreeModel::Row row = *iter;
168     row[_page_list_columns._col_name] = title;
169     row[_page_list_columns._col_id] = id;
170     row[_page_list_columns._col_page] = &p;
171     return iter;
174 void InkscapePreferences::initPageMouse()
176     this->AddPage(_page_mouse, _("Mouse"), PREFS_PAGE_MOUSE);
177     _mouse_sens.init ( "/options/cursortolerance/value", 0.0, 30.0, 1.0, 1.0, 8.0, true, false);
178     _page_mouse.add_line( false, _("Grab sensitivity:"), _mouse_sens, _("pixels"),
179                            _("How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)"), false);
180     _mouse_thres.init ( "/options/dragtolerance/value", 0.0, 20.0, 1.0, 1.0, 4.0, true, false);
181     _page_mouse.add_line( false, _("Click/drag threshold:"), _mouse_thres, _("pixels"),
182                            _("Maximum mouse drag (in screen pixels) which is considered a click, not a drag"), false);
184     _mouse_use_ext_input.init( _("Use pressure-sensitive tablet (requires restart)"), "/options/useextinput/value", true);
185     _page_mouse.add_line(true, "",_mouse_use_ext_input, "",
186                         _("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)"));
188     _mouse_switch_on_ext_input.init( _("Switch tool based on tablet device (requires restart)"), "/options/switchonextinput/value", false);
189     _page_mouse.add_line(true, "",_mouse_switch_on_ext_input, "",
190                         _("Change tool as different devices are used on the tablet (pen, eraser, mouse)"));
193 void InkscapePreferences::initPageScrolling()
195     this->AddPage(_page_scrolling, _("Scrolling"), PREFS_PAGE_SCROLLING);
196     _scroll_wheel.init ( "/options/wheelscroll/value", 0.0, 1000.0, 1.0, 1.0, 40.0, true, false);
197     _page_scrolling.add_line( false, _("Mouse wheel scrolls by:"), _scroll_wheel, _("pixels"),
198                            _("One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)"), false);
199     _page_scrolling.add_group_header( _("Ctrl+arrows"));
200     _scroll_arrow_px.init ( "/options/keyscroll/value", 0.0, 1000.0, 1.0, 1.0, 10.0, true, false);
201     _page_scrolling.add_line( true, _("Scroll by:"), _scroll_arrow_px, _("pixels"),
202                            _("Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)"), false);
203     _scroll_arrow_acc.init ( "/options/scrollingacceleration/value", 0.0, 5.0, 0.01, 1.0, 0.35, false, false);
204     _page_scrolling.add_line( true, _("Acceleration:"), _scroll_arrow_acc, "",
205                            _("Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)"), false);
206     _page_scrolling.add_group_header( _("Autoscrolling"));
207     _scroll_auto_speed.init ( "/options/autoscrollspeed/value", 0.0, 5.0, 0.01, 1.0, 0.7, false, false);
208     _page_scrolling.add_line( true, _("Speed:"), _scroll_auto_speed, "",
209                            _("How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)"), false);
210     _scroll_auto_thres.init ( "/options/autoscrolldistance/value", -600.0, 600.0, 1.0, 1.0, -10.0, true, false);
211     _page_scrolling.add_line( true, _("Threshold:"), _scroll_auto_thres, _("pixels"),
212                            _("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);
213     _scroll_space.init ( _("Left mouse button pans when Space is pressed"), "/options/spacepans/value", false);
214     _page_scrolling.add_line( false, "", _scroll_space, "",
215                             _("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)"));
216     _wheel_zoom.init ( _("Mouse wheel zooms by default"), "/options/wheelzooms/value", false);
217     _page_scrolling.add_line( false, "", _wheel_zoom, "",
218                             _("When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl"));
221 void InkscapePreferences::initPageSnapping()
224     _snap_indicator.init( _("Enable snap indicator"), "/options/snapindicator/value", true);
225     _page_snapping.add_line( false, "", _snap_indicator, "",
226                              _("After snapping, a symbol is drawn at the point that has snapped"));
228     _snap_delay.init("/options/snapdelay/value", 0, 1000, 50, 100, 300, 0);
229     _page_snapping.add_line( false, _("Delay (in ms):"), _snap_delay, "",
230                              _("Postpone snapping as long as the mouse is moving, and then wait an additional fraction of a second. This additional delay is specified here. When set to zero or to a very small number, snapping will be immediate."), true);
232     _snap_closest_only.init( _("Only snap the node closest to the pointer"), "/options/snapclosestonly/value", false);
233     _page_snapping.add_line( false, "", _snap_closest_only, "",
234                              _("Only try to snap the node that is initially closest to the mouse pointer"));
236     _snap_weight.init("/options/snapweight/value", 0, 1, 0.1, 0.2, 0.5, 1);
237     _page_snapping.add_line( false, _("Weight factor:"), _snap_weight, "",
238                              _("When multiple snap solutions are found, then Inkscape can either prefer the closest transformation (when set to 0), or prefer the node that was initially the closest to the pointer (when set to 1)"), true);
240     _snap_mouse_pointer.init( _("Snap the mouse pointer when dragging a constrained knot"), "/options/snapmousepointer/value", false);
241     _page_snapping.add_line( false, "", _snap_mouse_pointer, "",
242                              _("When dragging a knot along a constraint line, then snap the position of the mouse pointer instead of snapping the projection of the knot onto the constraint line"));
244     this->AddPage(_page_snapping, _("Snapping"), PREFS_PAGE_SNAPPING);
247 void InkscapePreferences::initPageSteps()
249     this->AddPage(_page_steps, _("Steps"), PREFS_PAGE_STEPS);
251     _steps_arrow.init ( "/options/nudgedistance/value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
252     //nudgedistance is limited to 1000 in select-context.cpp: use the same limit here
253     _page_steps.add_line( false, _("Arrow keys move by:"), _steps_arrow, _("px"),
254                           _("Pressing an arrow key moves selected object(s) or node(s) by this distance (in px units)"), false);
255     _steps_scale.init ( "/options/defaultscale/value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
256     //defaultscale is limited to 1000 in select-context.cpp: use the same limit here
257     _page_steps.add_line( false, _("> and < scale by:"), _steps_scale, _("px"),
258                           _("Pressing > or < scales selection up or down by this increment (in px units)"), false);
259     _steps_inset.init ( "/options/defaultoffsetwidth/value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
260     _page_steps.add_line( false, _("Inset/Outset by:"), _steps_inset, _("px"),
261                           _("Inset and Outset commands displace the path by this distance (in px units)"), false);
262     _steps_compass.init ( _("Compass-like display of angles"), "/options/compassangledisplay/value", true);
263     _page_steps.add_line( false, "", _steps_compass, "",
264                             _("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"));
265     int const num_items = 17;
266     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")};
267     int values[num_items] = {2, 3, 4, 5, 6, 8, 10, 12, 15, 18, 24, 30, 60, 90, 180, 360, 0};
268     _steps_rot_snap.set_size_request(_sb_width);
269     _steps_rot_snap.init("/options/rotationsnapsperpi/value", labels, values, num_items, 12);
270     _page_steps.add_line( false, _("Rotation snaps every:"), _steps_rot_snap, _("degrees"),
271                            _("Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount"), false);
272     _steps_zoom.init ( "/options/zoomincrement/value", 101.0, 500.0, 1.0, 1.0, 1.414213562, true, true);
273     _page_steps.add_line( false, _("Zoom in/out by:"), _steps_zoom, _("%"),
274                           _("Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier"), false);
277 void InkscapePreferences::AddSelcueCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
279     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
280     cb->init ( _("Show selection cue"), prefs_path + "/selcue", def_value);
281     p.add_line( false, "", *cb, "", _("Whether selected objects display a selection cue (the same as in selector)"));
284 void InkscapePreferences::AddGradientCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
286     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
287     cb->init ( _("Enable gradient editing"), prefs_path + "/gradientdrag", def_value);
288     p.add_line( false, "", *cb, "", _("Whether selected objects display gradient editing controls"));
291 void InkscapePreferences::AddConvertGuidesCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value) {
292     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
293     cb->init ( _("Conversion to guides uses edges instead of bounding box"), prefs_path + "/convertguides", def_value);
294     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"));
297 void InkscapePreferences::AddDotSizeSpinbutton(DialogPage &p, Glib::ustring const &prefs_path, double def_value)
299     PrefSpinButton* sb = Gtk::manage( new PrefSpinButton);
300     sb->init ( prefs_path + "/dot-size", 0.0, 1000.0, 0.1, 10.0, def_value, false, false);
301     p.add_line( false, _("Ctrl+click dot size:"), *sb, _("times current stroke width"),
302                        _("Size of dots created with Ctrl+click (relative to current stroke width)"),
303                        false );
307 void StyleFromSelectionToTool(Glib::ustring const &prefs_path, StyleSwatch *swatch)
309     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
310     if (desktop == NULL)
311         return;
313     Inkscape::Selection *selection = sp_desktop_selection(desktop);
315     if (selection->isEmpty()) {
316         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
317                                        _("<b>No objects selected</b> to take the style from."));
318         return;
319     }
320     SPItem *item = selection->singleItem();
321     if (!item) {
322         /* TODO: If each item in the selection has the same style then don't consider it an error.
323          * Maybe we should try to handle multiple selections anyway, e.g. the intersection of the
324          * style attributes for the selected items. */
325         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
326                                        _("<b>More than one object selected.</b>  Cannot take style from multiple objects."));
327         return;
328     }
330     SPCSSAttr *css = take_style_from_item (item);
332     if (!css) return;
334     // only store text style for the text tool
335     if (prefs_path != "/tools/text") {
336         css = sp_css_attr_unset_text (css);
337     }
339     // we cannot store properties with uris - they will be invalid in other documents
340     css = sp_css_attr_unset_uris (css);
342     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
343     prefs->setStyle(prefs_path + "/style", css);
344     sp_repr_css_attr_unref (css);
346     // update the swatch
347     if (swatch) {
348         SPCSSAttr *css = prefs->getInheritedStyle(prefs_path + "/style");
349         swatch->setStyle (css);
350         sp_repr_css_attr_unref(css);
351     }
354 void InkscapePreferences::AddNewObjectsStyle(DialogPage &p, Glib::ustring const &prefs_path, const gchar *banner)
356     if (banner)
357         p.add_group_header(banner);
358     else
359         p.add_group_header( _("Create new objects with:"));
360     PrefRadioButton* current = Gtk::manage( new PrefRadioButton);
361     current->init ( _("Last used style"), prefs_path + "/usecurrent", 1, true, 0);
362     p.add_line( true, "", *current, "",
363                 _("Apply the style you last set on an object"));
365     PrefRadioButton* own = Gtk::manage( new PrefRadioButton);
366     Gtk::HBox* hb = Gtk::manage( new Gtk::HBox);
367     Gtk::Alignment* align = Gtk::manage( new Gtk::Alignment);
368     own->init ( _("This tool's own style:"), prefs_path + "/usecurrent", 0, false, current);
369     align->set(0,0,0,0);
370     align->add(*own);
371     hb->add(*align);
372     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."));
373     p.add_line( true, "", *hb, "", "");
375     // style swatch
376     Gtk::Button* button = Gtk::manage( new Gtk::Button(_("Take from selection"),true));
377     StyleSwatch *swatch = 0;
378     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
380     SPCSSAttr *css = prefs->getStyle(prefs_path + "/style");
381     swatch = new StyleSwatch(css, _("This tool's style of new objects"));
382     hb->add(*swatch);
383     sp_repr_css_attr_unref(css);
385     button->signal_clicked().connect( sigc::bind( sigc::ptr_fun(StyleFromSelectionToTool), prefs_path, swatch)  );
386     own->changed_signal.connect( sigc::mem_fun(*button, &Gtk::Button::set_sensitive) );
387     p.add_line( true, "", *button, "",
388                 _("Remember the style of the (first) selected object as this tool's style"));
391 void InkscapePreferences::initPageTools()
393     Gtk::TreeModel::iterator iter_tools = this->AddPage(_page_tools, _("Tools"), PREFS_PAGE_TOOLS);
394     _path_tools = _page_list.get_model()->get_path(iter_tools);
396     _page_tools.add_group_header( _("Bounding box to use:"));
397     _t_bbox_visual.init ( _("Visual bounding box"), "/tools/bounding_box", 0, false, 0); // 0 means visual
398     _page_tools.add_line( true, "", _t_bbox_visual, "",
399                             _("This bounding box includes stroke width, markers, filter margins, etc."));
400     _t_bbox_geometric.init ( _("Geometric bounding box"), "/tools/bounding_box", 1, true, &_t_bbox_visual); // 1 means geometric
401     _page_tools.add_line( true, "", _t_bbox_geometric, "",
402                             _("This bounding box includes only the bare path"));
404     _page_tools.add_group_header( _("Conversion to guides:"));
405     _t_cvg_keep_objects.init ( _("Keep objects after conversion to guides"), "/tools/cvg_keep_objects", false);
406     _page_tools.add_line( true, "", _t_cvg_keep_objects, "",
407                             _("When converting an object to guides, don't delete the object after the conversion"));
408     _t_cvg_convert_whole_groups.init ( _("Treat groups as a single object"), "/tools/cvg_convert_whole_groups", false);
409     _page_tools.add_line( true, "", _t_cvg_convert_whole_groups, "",
410                             _("Treat groups as a single object during conversion to guides rather than converting each child separately"));
412     _pencil_average_all_sketches.init ( _("Average all sketches"), "/tools/freehand/pencil/average_all_sketches", false);
413     _calligrapy_use_abs_size.init ( _("Width is in absolute units"), "/tools/calligraphic/abs_width", false);
414     _calligrapy_keep_selected.init ( _("Select new path"), "/tools/calligraphic/keep_selected", true);
415     _connector_ignore_text.init( _("Don't attach connectors to text objects"), "/tools/connector/ignoretext", true);
417     //Selector
418     this->AddPage(_page_selector, _("Selector"), iter_tools, PREFS_PAGE_TOOLS_SELECTOR);
420     AddSelcueCheckbox(_page_selector, "/tools/select", false);
421     _page_selector.add_group_header( _("When transforming, show:"));
422     _t_sel_trans_obj.init ( _("Objects"), "/tools/select/show", "content", true, 0);
423     _page_selector.add_line( true, "", _t_sel_trans_obj, "",
424                             _("Show the actual objects when moving or transforming"));
425     _t_sel_trans_outl.init ( _("Box outline"), "/tools/select/show", "outline", false, &_t_sel_trans_obj);
426     _page_selector.add_line( true, "", _t_sel_trans_outl, "",
427                             _("Show only a box outline of the objects when moving or transforming"));
428     _page_selector.add_group_header( _("Per-object selection cue:"));
429     _t_sel_cue_none.init ( _("None"), "/options/selcue/value", Inkscape::SelCue::NONE, false, 0);
430     _page_selector.add_line( true, "", _t_sel_cue_none, "",
431                             _("No per-object selection indication"));
432     _t_sel_cue_mark.init ( _("Mark"), "/options/selcue/value", Inkscape::SelCue::MARK, true, &_t_sel_cue_none);
433     _page_selector.add_line( true, "", _t_sel_cue_mark, "",
434                             _("Each selected object has a diamond mark in the top left corner"));
435     _t_sel_cue_box.init ( _("Box"), "/options/selcue/value", Inkscape::SelCue::BBOX, false, &_t_sel_cue_none);
436     _page_selector.add_line( true, "", _t_sel_cue_box, "",
437                             _("Each selected object displays its bounding box"));
439     //Node
440     this->AddPage(_page_node, _("Node"), iter_tools, PREFS_PAGE_TOOLS_NODE);
441     AddSelcueCheckbox(_page_node, "/tools/nodes", true);
442     AddGradientCheckbox(_page_node, "/tools/nodes", true);
443     _page_node.add_group_header( _("Path outline"));
444     _t_node_pathoutline_color.init(_("Path outline color"), "/tools/nodes/highlight_color", 0xff0000ff);
445     _page_node.add_line( false, "", _t_node_pathoutline_color, "", _("Selects the color used for showing the path outline"), false);
446     _t_node_show_outline.init(_("Always show outline"), "/tools/nodes/show_outline", false);
447     _page_node.add_line( true, "", _t_node_show_outline, "", _("Show outlines for all paths, not only invisible paths"));
448     _t_node_live_outline.init(_("Update outline when dragging nodes"), "/tools/nodes/live_outline", false);
449     _page_node.add_line( true, "", _t_node_live_outline, "", _("Update the outline when dragging or transforming nodes; if this is off, the outline will only update when completing a drag"));
450     _t_node_live_objects.init(_("Update paths when dragging nodes"), "/tools/nodes/live_objects", false);
451     _page_node.add_line( true, "", _t_node_live_objects, "", _("Update paths when dragging or transforming nodes; if this is off, paths will only be updated when completing a drag"));
452     _t_node_show_path_direction.init(_("Show path direction on outlines"), "/tools/nodes/show_path_direction", false);
453     _page_node.add_line( true, "", _t_node_show_path_direction, "", _("Visualize the direction of selected paths by drawing small arrows in the middle of each outline segment"));
454     _t_node_pathflash_enabled.init ( _("Show temporary path outline"), "/tools/nodes/pathflash_enabled", false);
455     _page_node.add_line( true, "", _t_node_pathflash_enabled, "", _("When hovering over a path, briefly flash its outline"));
456     _t_node_pathflash_selected.init ( _("Show temporary outline for selected paths"), "/tools/nodes/pathflash_selected", false);
457     _page_node.add_line( true, "", _t_node_pathflash_selected, "", _("Show temporary outline even when a path is selected for editing"));
458     _t_node_pathflash_timeout.init("/tools/nodes/pathflash_timeout", 0, 10000.0, 100.0, 100.0, 1000.0, true, false);
459     _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);
460     _page_node.add_group_header(_("Editing preferences"));
461     _t_node_single_node_transform_handles.init(_("Show transform handles for single nodes"), "/tools/nodes/single_node_transform_handles", false);
462     _page_node.add_line( true, "", _t_node_single_node_transform_handles, "", _("Show transform handles even when only a single node is selected"));
463     _t_node_delete_preserves_shape.init(_("Deleting nodes preserves shape"), "/tools/nodes/delete_preserves_shape", true);
464     _page_node.add_line( true, "", _t_node_delete_preserves_shape, "", _("Move handles next to deleted nodes to resemble original shape; hold Ctrl to get the other behavior"));
466     //Tweak
467     this->AddPage(_page_tweak, _("Tweak"), iter_tools, PREFS_PAGE_TOOLS_TWEAK);
468     this->AddNewObjectsStyle(_page_tweak, "/tools/tweak", _("Paint objects with:"));
469     AddSelcueCheckbox(_page_tweak, "/tools/tweak", true);
470     AddGradientCheckbox(_page_tweak, "/tools/tweak", false);
472     //Spray
473     this->AddPage(_page_spray, _("Spray"), iter_tools, PREFS_PAGE_TOOLS_SPRAY);
474     AddSelcueCheckbox(_page_spray, "/tools/spray", true);
475     AddGradientCheckbox(_page_spray, "/tools/spray", false);
477     //Zoom
478     this->AddPage(_page_zoom, _("Zoom"), iter_tools, PREFS_PAGE_TOOLS_ZOOM);
479     AddSelcueCheckbox(_page_zoom, "/tools/zoom", true);
480     AddGradientCheckbox(_page_zoom, "/tools/zoom", false);
482     //Shapes
483     Gtk::TreeModel::iterator iter_shapes = this->AddPage(_page_shapes, _("Shapes"), iter_tools, PREFS_PAGE_TOOLS_SHAPES);
484     _path_shapes = _page_list.get_model()->get_path(iter_shapes);
485     this->AddSelcueCheckbox(_page_shapes, "/tools/shapes", true);
486     this->AddGradientCheckbox(_page_shapes, "/tools/shapes", true);
488     //Rectangle
489     this->AddPage(_page_rectangle, _("Rectangle"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_RECT);
490     this->AddNewObjectsStyle(_page_rectangle, "/tools/shapes/rect");
491     this->AddConvertGuidesCheckbox(_page_rectangle, "/tools/shapes/rect", true);
493     //3D box
494     this->AddPage(_page_3dbox, _("3D Box"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_3DBOX);
495     this->AddNewObjectsStyle(_page_3dbox, "/tools/shapes/3dbox");
496     this->AddConvertGuidesCheckbox(_page_3dbox, "/tools/shapes/3dbox", true);
498     //Ellipse
499     this->AddPage(_page_ellipse, _("Ellipse"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
500     this->AddNewObjectsStyle(_page_ellipse, "/tools/shapes/arc");
502     //Star
503     this->AddPage(_page_star, _("Star"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_STAR);
504     this->AddNewObjectsStyle(_page_star, "/tools/shapes/star");
506     //Spiral
507     this->AddPage(_page_spiral, _("Spiral"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
508     this->AddNewObjectsStyle(_page_spiral, "/tools/shapes/spiral");
510     //Pencil
511     this->AddPage(_page_pencil, _("Pencil"), iter_tools, PREFS_PAGE_TOOLS_PENCIL);
512     this->AddSelcueCheckbox(_page_pencil, "/tools/freehand/pencil", true);
513     this->AddNewObjectsStyle(_page_pencil, "/tools/freehand/pencil");
514     this->AddDotSizeSpinbutton(_page_pencil, "/tools/freehand/pencil", 3.0);
515     _page_pencil.add_group_header( _("Sketch mode"));
516     _page_pencil.add_line( true, "", _pencil_average_all_sketches, "",
517                             _("If on, the sketch result will be the normal average of all sketches made, instead of averaging the old result with the new sketch"));
519     //Pen
520     this->AddPage(_page_pen, _("Pen"), iter_tools, PREFS_PAGE_TOOLS_PEN);
521     this->AddSelcueCheckbox(_page_pen, "/tools/freehand/pen", true);
522     this->AddNewObjectsStyle(_page_pen, "/tools/freehand/pen");
523     this->AddDotSizeSpinbutton(_page_pen, "/tools/freehand/pen", 3.0);
525     //Calligraphy
526     this->AddPage(_page_calligraphy, _("Calligraphy"), iter_tools, PREFS_PAGE_TOOLS_CALLIGRAPHY);
527     this->AddSelcueCheckbox(_page_calligraphy, "/tools/calligraphic", false);
528     this->AddNewObjectsStyle(_page_calligraphy, "/tools/calligraphic");
529     _page_calligraphy.add_line( false, "", _calligrapy_use_abs_size, "",
530                             _("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"));
531     _page_calligraphy.add_line( false, "", _calligrapy_keep_selected, "",
532                             _("If on, each newly created object will be selected (deselecting previous selection)"));
533     //Paint Bucket
534     this->AddPage(_page_paintbucket, _("Paint Bucket"), iter_tools, PREFS_PAGE_TOOLS_PAINTBUCKET);
535     this->AddSelcueCheckbox(_page_paintbucket, "/tools/paintbucket", false);
536     this->AddNewObjectsStyle(_page_paintbucket, "/tools/paintbucket");
538     //Eraser
539     this->AddPage(_page_eraser, _("Eraser"), iter_tools, PREFS_PAGE_TOOLS_ERASER);
540     this->AddNewObjectsStyle(_page_eraser, "/tools/eraser");
542     //LPETool
543     this->AddPage(_page_lpetool, _("LPE Tool"), iter_tools, PREFS_PAGE_TOOLS_LPETOOL);
544     this->AddNewObjectsStyle(_page_lpetool, "/tools/lpetool");
546     //Text
547     this->AddPage(_page_text, _("Text"), iter_tools, PREFS_PAGE_TOOLS_TEXT);
548     this->AddSelcueCheckbox(_page_text, "/tools/text", true);
549     this->AddGradientCheckbox(_page_text, "/tools/text", true);
550     {
551     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
552     cb->init ( _("Show font samples in the drop-down list"), "/tools/text/show_sample_in_list", 1);
553     _page_text.add_line( false, "", *cb, "", _("Show font samples alongside font names in the drop-down list in Text bar"));
554     }
555     this->AddNewObjectsStyle(_page_text, "/tools/text");
557     //Gradient
558     this->AddPage(_page_gradient, _("Gradient"), iter_tools, PREFS_PAGE_TOOLS_GRADIENT);
559     this->AddSelcueCheckbox(_page_gradient, "/tools/gradient", true);
561     //Connector
562     this->AddPage(_page_connector, _("Connector"), iter_tools, PREFS_PAGE_TOOLS_CONNECTOR);
563     this->AddSelcueCheckbox(_page_connector, "/tools/connector", true);
564     _page_connector.add_line(false, "", _connector_ignore_text, "",
565             _("If on, connector attachment points will not be shown for text objects"));
566     //Dropper
567     this->AddPage(_page_dropper, _("Dropper"), iter_tools, PREFS_PAGE_TOOLS_DROPPER);
568     this->AddSelcueCheckbox(_page_dropper, "/tools/dropper", true);
569     this->AddGradientCheckbox(_page_dropper, "/tools/dropper", true);
572 void InkscapePreferences::initPageWindows()
574     _win_save_geom.init ( _("Save and restore window geometry for each document"), "/options/savewindowgeometry/value", 1, true, 0);
575     _win_save_geom_prefs.init ( _("Remember and use last window's geometry"), "/options/savewindowgeometry/value", 2, false, &_win_save_geom);
576     _win_save_geom_off.init ( _("Don't save window geometry"), "/options/savewindowgeometry/value", 0, false, &_win_save_geom);
578     _win_dockable.init ( _("Dockable"), "/options/dialogtype/value", 1, true, 0);
579     _win_floating.init ( _("Floating"), "/options/dialogtype/value", 0, false, &_win_dockable);
581     _win_hide_task.init ( _("Dialogs are hidden in taskbar"), "/options/dialogsskiptaskbar/value", true);
582     _win_zoom_resize.init ( _("Zoom when window is resized"), "/options/stickyzoom/value", false);
583     _win_show_close.init ( _("Show close button on dialogs"), "/dialogs/showclose", false);
584     _win_ontop_none.init ( _("None"), "/options/transientpolicy/value", 0, false, 0);
585     _win_ontop_normal.init ( _("Normal"), "/options/transientpolicy/value", 1, true, &_win_ontop_none);
586     _win_ontop_agressive.init ( _("Aggressive"), "/options/transientpolicy/value", 2, false, &_win_ontop_none);
588     _page_windows.add_group_header( _("Saving window geometry (size and position):"));
589     _page_windows.add_line( true, "", _win_save_geom_off, "",
590                             _("Let the window manager determine placement of all windows"));
591     _page_windows.add_line( true, "", _win_save_geom_prefs, "",
592                             _("Remember and use the last window's geometry (saves geometry to user preferences)"));
593     _page_windows.add_line( true, "", _win_save_geom, "",
594                             _("Save and restore window geometry for each document (saves geometry in the document)"));
596     _page_windows.add_group_header( _("Dialog behavior (requires restart):"));
597     _page_windows.add_line( true, "", _win_dockable, "",
598                             _("Dockable"));
599     _page_windows.add_line( true, "", _win_floating, "",
600                             _("Floating"));
602 #ifndef WIN32 // non-Win32 special code to enable transient dialogs
603     _page_windows.add_group_header( _("Dialogs on top:"));
605     _page_windows.add_line( true, "", _win_ontop_none, "",
606                             _("Dialogs are treated as regular windows"));
607     _page_windows.add_line( true, "", _win_ontop_normal, "",
608                             _("Dialogs stay on top of document windows"));
609     _page_windows.add_line( true, "", _win_ontop_agressive, "",
610                             _("Same as Normal but may work better with some window managers"));
611 #endif
613 #if GTK_VERSION_GE(2, 12)
614     _page_windows.add_group_header( _("Dialog Transparency:"));
615     _win_trans_focus.init("/dialogs/transparency/on-focus", 0.5, 1.0, 0.01, 0.1, 1.0, false, false);
616     _page_windows.add_line( true, _("Opacity when focused:"), _win_trans_focus, "", "");
617     _win_trans_blur.init("/dialogs/transparency/on-blur", 0.0, 1.0, 0.01, 0.1, 0.5, false, false);
618     _page_windows.add_line( true, _("Opacity when unfocused:"), _win_trans_blur, "", "");
619     _win_trans_time.init("/dialogs/transparency/animate-time", 0, 1000, 10, 100, 100, true, false);
620     _page_windows.add_line( true, _("Time of opacity change animation:"), _win_trans_time, "ms", "");
621 #endif
623     _page_windows.add_group_header( _("Miscellaneous:"));
624 #ifndef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
625     _page_windows.add_line( false, "", _win_hide_task, "",
626                             _("Whether dialog windows are to be hidden in the window manager taskbar"));
627 #endif
628     _page_windows.add_line( false, "", _win_zoom_resize, "",
629                             _("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)"));
630     _page_windows.add_line( false, "", _win_show_close, "",
631                             _("Whether dialog windows have a close button (requires restart)"));
632     this->AddPage(_page_windows, _("Windows"), PREFS_PAGE_WINDOWS);
635 void InkscapePreferences::initPageClones()
637     _clone_option_parallel.init ( _("Move in parallel"), "/options/clonecompensation/value",
638                                   SP_CLONE_COMPENSATION_PARALLEL, true, 0);
639     _clone_option_stay.init ( _("Stay unmoved"), "/options/clonecompensation/value",
640                                   SP_CLONE_COMPENSATION_UNMOVED, false, &_clone_option_parallel);
641     _clone_option_transform.init ( _("Move according to transform"), "/options/clonecompensation/value",
642                                   SP_CLONE_COMPENSATION_NONE, false, &_clone_option_parallel);
643     _clone_option_unlink.init ( _("Are unlinked"), "/options/cloneorphans/value",
644                                   SP_CLONE_ORPHANS_UNLINK, true, 0);
645     _clone_option_delete.init ( _("Are deleted"), "/options/cloneorphans/value",
646                                   SP_CLONE_ORPHANS_DELETE, false, &_clone_option_unlink);
648     _page_clones.add_group_header( _("When the original moves, its clones and linked offsets:"));
649     _page_clones.add_line( true, "", _clone_option_parallel, "",
650                            _("Clones are translated by the same vector as their original"));
651     _page_clones.add_line( true, "", _clone_option_stay, "",
652                            _("Clones preserve their positions when their original is moved"));
653     _page_clones.add_line( true, "", _clone_option_transform, "",
654                            _("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"));
655     _page_clones.add_group_header( _("When the original is deleted, its clones:"));
656     _page_clones.add_line( true, "", _clone_option_unlink, "",
657                            _("Orphaned clones are converted to regular objects"));
658     _page_clones.add_line( true, "", _clone_option_delete, "",
659                            _("Orphaned clones are deleted along with their original"));
661     _page_clones.add_group_header( _("When duplicating original+clones:"));
663     _clone_relink_on_duplicate.init ( _("Relink duplicated clones"), "/options/relinkclonesonduplicate/value", false);
664     _page_clones.add_line(true, "", _clone_relink_on_duplicate, "",
665                         _("When duplicating a selection containing both a clone and its original (possibly in groups), relink the duplicated clone to the duplicated original instead of the old original"));
667     //TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page
668     this->AddPage(_page_clones, _("Clones"), PREFS_PAGE_CLONES);
671 void InkscapePreferences::initPageMasks()
673     _mask_mask_on_top.init ( _("When applying, use the topmost selected object as clippath/mask"), "/options/maskobject/topmost", true);
674     _page_mask.add_line(true, "", _mask_mask_on_top, "",
675                         _("Uncheck this to use the bottom selected object as the clipping path or mask"));
676     _mask_mask_remove.init ( _("Remove clippath/mask object after applying"), "/options/maskobject/remove", true);
677     _page_mask.add_line(true, "", _mask_mask_remove, "",
678                         _("After applying, remove the object used as the clipping path or mask from the drawing"));
679     
680     _page_mask.add_group_header( _("Before applying clippath/mask:"));
681     
682     _mask_grouping_none.init( _("Do not group clipped/masked objects"), "/options/maskobject/grouping", PREFS_MASKOBJECT_GROUPING_NONE, true, 0);
683     _mask_grouping_separate.init( _("Enclose every clipped/masked object in its own group"), "/options/maskobject/grouping", PREFS_MASKOBJECT_GROUPING_SEPARATE, false, &_mask_grouping_none);
684     _mask_grouping_all.init( _("Put all clipped/masked objects into one group"), "/options/maskobject/grouping", PREFS_MASKOBJECT_GROUPING_ALL, false, &_mask_grouping_none);
685     
686     _page_mask.add_line(true, "", _mask_grouping_none, "",
687                         _("Apply clippath/mask to every object"));
688     
689     _page_mask.add_line(true, "", _mask_grouping_separate, "",
690                         _("Apply clippath/mask to groups containing single object"));
691     
692     _page_mask.add_line(true, "", _mask_grouping_all, "",
693                         _("Apply clippath/mask to group containing all objects"));
694                         
695     _page_mask.add_group_header( _("After releasing clippath/mask:"));
696     
697     _mask_ungrouping.init ( _("Ungroup automatically created groups"), "/options/maskobject/ungrouping", true);
698     _page_mask.add_line(true, "", _mask_ungrouping, "",
699                         _("Ungroup groups created when setting clip/mask"));
700     
701     this->AddPage(_page_mask, _("Clippaths and masks"), PREFS_PAGE_MASKS);
704 void InkscapePreferences::initPageTransforms()
706     _trans_scale_stroke.init ( _("Scale stroke width"), "/options/transform/stroke", true);
707     _trans_scale_corner.init ( _("Scale rounded corners in rectangles"), "/options/transform/rectcorners", false);
708     _trans_gradient.init ( _("Transform gradients"), "/options/transform/gradient", true);
709     _trans_pattern.init ( _("Transform patterns"), "/options/transform/pattern", false);
710     _trans_optimized.init ( _("Optimized"), "/options/preservetransform/value", 0, true, 0);
711     _trans_preserved.init ( _("Preserved"), "/options/preservetransform/value", 1, false, &_trans_optimized);
713     _page_transforms.add_line( false, "", _trans_scale_stroke, "",
714                                _("When scaling objects, scale the stroke width by the same proportion"));
715     _page_transforms.add_line( false, "", _trans_scale_corner, "",
716                                _("When scaling rectangles, scale the radii of rounded corners"));
717     _page_transforms.add_line( false, "", _trans_gradient, "",
718                                _("Move gradients (in fill or stroke) along with the objects"));
719     _page_transforms.add_line( false, "", _trans_pattern, "",
720                                _("Move patterns (in fill or stroke) along with the objects"));
721     _page_transforms.add_group_header( _("Store transformation:"));
722     _page_transforms.add_line( true, "", _trans_optimized, "",
723                                _("If possible, apply transformation to objects without adding a transform= attribute"));
724     _page_transforms.add_line( true, "", _trans_preserved, "",
725                                _("Always store transformation as a transform= attribute on objects"));
727     this->AddPage(_page_transforms, _("Transforms"), PREFS_PAGE_TRANSFORMS);
730 void InkscapePreferences::initPageFilters()
732     /* blur quality */
733     _blur_quality_best.init ( _("Best quality (slowest)"), "/options/blurquality/value",
734                                   BLUR_QUALITY_BEST, false, 0);
735     _blur_quality_better.init ( _("Better quality (slower)"), "/options/blurquality/value",
736                                   BLUR_QUALITY_BETTER, false, &_blur_quality_best);
737     _blur_quality_normal.init ( _("Average quality"), "/options/blurquality/value",
738                                   BLUR_QUALITY_NORMAL, true, &_blur_quality_best);
739     _blur_quality_worse.init ( _("Lower quality (faster)"), "/options/blurquality/value",
740                                   BLUR_QUALITY_WORSE, false, &_blur_quality_best);
741     _blur_quality_worst.init ( _("Lowest quality (fastest)"), "/options/blurquality/value",
742                                   BLUR_QUALITY_WORST, false, &_blur_quality_best);
744     _page_filters.add_group_header( _("Gaussian blur quality for display:"));
745     _page_filters.add_line( true, "", _blur_quality_best, "",
746                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
747     _page_filters.add_line( true, "", _blur_quality_better, "",
748                            _("Better quality, but slower display"));
749     _page_filters.add_line( true, "", _blur_quality_normal, "",
750                            _("Average quality, acceptable display speed"));
751     _page_filters.add_line( true, "", _blur_quality_worse, "",
752                            _("Lower quality (some artifacts), but display is faster"));
753     _page_filters.add_line( true, "", _blur_quality_worst, "",
754                            _("Lowest quality (considerable artifacts), but display is fastest"));
756     /* filter quality */
757     _filter_quality_best.init ( _("Best quality (slowest)"), "/options/filterquality/value",
758                                   Inkscape::Filters::FILTER_QUALITY_BEST, false, 0);
759     _filter_quality_better.init ( _("Better quality (slower)"), "/options/filterquality/value",
760                                   Inkscape::Filters::FILTER_QUALITY_BETTER, false, &_filter_quality_best);
761     _filter_quality_normal.init ( _("Average quality"), "/options/filterquality/value",
762                                   Inkscape::Filters::FILTER_QUALITY_NORMAL, true, &_filter_quality_best);
763     _filter_quality_worse.init ( _("Lower quality (faster)"), "/options/filterquality/value",
764                                   Inkscape::Filters::FILTER_QUALITY_WORSE, false, &_filter_quality_best);
765     _filter_quality_worst.init ( _("Lowest quality (fastest)"), "/options/filterquality/value",
766                                   Inkscape::Filters::FILTER_QUALITY_WORST, false, &_filter_quality_best);
768     _page_filters.add_group_header( _("Filter effects quality for display:"));
769     _page_filters.add_line( true, "", _filter_quality_best, "",
770                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
771     _page_filters.add_line( true, "", _filter_quality_better, "",
772                            _("Better quality, but slower display"));
773     _page_filters.add_line( true, "", _filter_quality_normal, "",
774                            _("Average quality, acceptable display speed"));
775     _page_filters.add_line( true, "", _filter_quality_worse, "",
776                            _("Lower quality (some artifacts), but display is faster"));
777     _page_filters.add_line( true, "", _filter_quality_worst, "",
778                            _("Lowest quality (considerable artifacts), but display is fastest"));
780     /* show infobox */
781     _show_filters_info_box.init( _("Show filter primitives infobox"), "/options/showfiltersinfobox/value", true);
782     _page_filters.add_line(true, "", _show_filters_info_box, "",
783                         _("Show icons and descriptions for the filter primitives available at the filter effects dialog"));
785     /* threaded blur */ //related comments/widgets/functions should be renamed and option should be moved elsewhere when inkscape is fully multi-threaded
786     _filter_multi_threaded.init("/options/threading/numthreads", 1.0, 8.0, 1.0, 2.0, 4.0, true, false);
787     _page_filters.add_line( false, _("Number of Threads:"), _filter_multi_threaded, _("(requires restart)"),
788                            _("Configure number of processors/threads to use with rendering of gaussian blur"), false);
790     this->AddPage(_page_filters, _("Filters"), PREFS_PAGE_FILTERS);
794 void InkscapePreferences::initPageSelecting()
796     _sel_all.init ( _("Select in all layers"), "/options/kbselection/inlayer", PREFS_SELECTION_ALL, false, 0);
797     _sel_current.init ( _("Select only within current layer"), "/options/kbselection/inlayer", PREFS_SELECTION_LAYER, true, &_sel_all);
798     _sel_recursive.init ( _("Select in current layer and sublayers"), "/options/kbselection/inlayer", PREFS_SELECTION_LAYER_RECURSIVE, false, &_sel_all);
799     _sel_hidden.init ( _("Ignore hidden objects and layers"), "/options/kbselection/onlyvisible", true);
800     _sel_locked.init ( _("Ignore locked objects and layers"), "/options/kbselection/onlysensitive", true);
801     _sel_layer_deselects.init ( _("Deselect upon layer change"), "/options/selection/layerdeselect", true);
803     _page_select.add_group_header( _("Ctrl+A, Tab, Shift+Tab:"));
804     _page_select.add_line( true, "", _sel_all, "",
805                            _("Make keyboard selection commands work on objects in all layers"));
806     _page_select.add_line( true, "", _sel_current, "",
807                            _("Make keyboard selection commands work on objects in current layer only"));
808     _page_select.add_line( true, "", _sel_recursive, "",
809                            _("Make keyboard selection commands work on objects in current layer and all its sublayers"));
810     _page_select.add_line( true, "", _sel_hidden, "",
811                            _("Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)"));
812     _page_select.add_line( true, "", _sel_locked, "",
813                            _("Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)"));
815     _page_select.add_line( false, "", _sel_layer_deselects, "",
816                            _("Uncheck this to be able to keep the current objects selected when the current layer changes"));
818     this->AddPage(_page_select, _("Selecting"), PREFS_PAGE_SELECTING);
822 void InkscapePreferences::initPageImportExport()
824     _importexport_export.init("/dialogs/export/defaultxdpi/value", 0.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
825     _page_importexport.add_line( false, _("Default export resolution:"), _importexport_export, _("dpi"),
826                             _("Default bitmap resolution (in dots per inch) in the Export dialog"), false);
827     _importexport_ocal_url.init("/options/ocalurl/str", true, g_strdup_printf("openclipart.org"));
828     _page_importexport.add_line( false, _("Open Clip Art Library Server Name:"), _importexport_ocal_url, "",
829         _("The server name of the Open Clip Art Library webdav server; it's used by the Import and Export to OCAL function"), true);
830     _importexport_ocal_username.init("/options/ocalusername/str", true);
831     _page_importexport.add_line( false, _("Open Clip Art Library Username:"), _importexport_ocal_username, "",
832             _("The username used to log into Open Clip Art Library"), true);
833     _importexport_ocal_password.init("/options/ocalpassword/str", false);
834     _page_importexport.add_line( false, _("Open Clip Art Library Password:"), _importexport_ocal_password, "",
835             _("The password used to log into Open Clip Art Library"), true);
837     this->AddPage(_page_importexport, _("Import/Export"), PREFS_PAGE_IMPORTEXPORT);
840 #if ENABLE_LCMS
841 static void profileComboChanged( Gtk::ComboBoxText* combo )
843     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
844     int rowNum = combo->get_active_row_number();
845     if ( rowNum < 1 ) {
846         prefs->setString("/options/displayprofile/uri", "");
847     } else {
848         Glib::ustring active = combo->get_active_text();
850         Glib::ustring path = get_path_for_profile(active);
851         if ( !path.empty() ) {
852             prefs->setString("/options/displayprofile/uri", path);
853         }
854     }
857 static void proofComboChanged( Gtk::ComboBoxText* combo )
859     Glib::ustring active = combo->get_active_text();
860     Glib::ustring path = get_path_for_profile(active);
862     if ( !path.empty() ) {
863         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
864         prefs->setString("/options/softproof/uri", path);
865     }
868 static void gamutColorChanged( Gtk::ColorButton* btn ) {
869     Gdk::Color color = btn->get_color();
870     gushort r = color.get_red();
871     gushort g = color.get_green();
872     gushort b = color.get_blue();
874     gchar* tmp = g_strdup_printf("#%02x%02x%02x", (r >> 8), (g >> 8), (b >> 8) );
876     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
877     prefs->setString("/options/softproof/gamutcolor", tmp);
878     g_free(tmp);
880 #endif // ENABLE_LCMS
882 void InkscapePreferences::initPageCMS()
884     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
885     int const numIntents = 4;
886     /* TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm */
887     Glib::ustring intentLabels[numIntents] = {_("Perceptual"), _("Relative Colorimetric"), _("Saturation"), _("Absolute Colorimetric")};
888     int intentValues[numIntents] = {0, 1, 2, 3};
890 #if !ENABLE_LCMS
891     Gtk::Label* lbl = new Gtk::Label(_("(Note: Color management has been disabled in this build)"));
892     _page_cms.add_line( false, "", *lbl, "", "", true);
893 #endif // !ENABLE_LCMS
895     _page_cms.add_group_header( _("Display adjustment"));
897     Glib::ustring tmpStr;
898     std::list<Glib::ustring> sources = ColorProfile::getProfileDirs();
899     for ( std::list<Glib::ustring>::const_iterator it = sources.begin(); it != sources.end(); ++it ) {
900         gchar* part = g_strdup_printf( "\n%s", it->c_str() );
901         tmpStr += part;
902         g_free(part);
903     }
905     gchar* profileTip = g_strdup_printf(_("The ICC profile to use to calibrate display output.\nSearched directories:%s"), tmpStr.c_str());
906     _page_cms.add_line( false, _("Display profile:"), _cms_display_profile, "",
907                         profileTip, false);
908     g_free(profileTip);
909     profileTip = 0;
911     _cms_from_display.init( _("Retrieve profile from display"), "/options/displayprofile/from_display", false);
912     _page_cms.add_line( false, "", _cms_from_display, "",
913 #ifdef GDK_WINDOWING_X11
914                         _("Retrieve profiles from those attached to displays via XICC"), false);
915 #else
916                         _("Retrieve profiles from those attached to displays"), false);
917 #endif // GDK_WINDOWING_X11
920     _cms_intent.init("/options/displayprofile/intent", intentLabels, intentValues, numIntents, 0);
921     _page_cms.add_line( false, _("Display rendering intent:"), _cms_intent, "",
922                         _("The rendering intent to use to calibrate display output"), false);
924     _page_cms.add_group_header( _("Proofing"));
926     _cms_softproof.init( _("Simulate output on screen"), "/options/softproof/enable", false);
927     _page_cms.add_line( false, "", _cms_softproof, "",
928                         _("Simulates output of target device"), false);
930     _cms_gamutwarn.init( _("Mark out of gamut colors"), "/options/softproof/gamutwarn", false);
931     _page_cms.add_line( false, "", _cms_gamutwarn, "",
932                         _("Highlights colors that are out of gamut for the target device"), false);
934     Glib::ustring colorStr = prefs->getString("/options/softproof/gamutcolor");
935     Gdk::Color tmpColor( colorStr.empty() ? "#00ff00" : colorStr);
936     _cms_gamutcolor.set_color( tmpColor );
937     _page_cms.add_line( true, _("Out of gamut warning color:"), _cms_gamutcolor, "",
938                         _("Selects the color used for out of gamut warning"), false);
940     _page_cms.add_line( false, _("Device profile:"), _cms_proof_profile, "",
941                         _("The ICC profile to use to simulate device output"), false);
943     _cms_proof_intent.init("/options/softproof/intent", intentLabels, intentValues, numIntents, 0);
944     _page_cms.add_line( false, _("Device rendering intent:"), _cms_proof_intent, "",
945                         _("The rendering intent to use to calibrate device output"), false);
947     _cms_proof_blackpoint.init( _("Black point compensation"), "/options/softproof/bpc", false);
948     _page_cms.add_line( false, "", _cms_proof_blackpoint, "",
949                         _("Enables black point compensation"), false);
951     _cms_proof_preserveblack.init( _("Preserve black"), "/options/softproof/preserveblack", false);
952     _page_cms.add_line( false, "", _cms_proof_preserveblack,
953 #if defined(cmsFLAGS_PRESERVEBLACK)
954                         "",
955 #else
956                         _("(LittleCMS 1.15 or later required)"),
957 #endif // defined(cmsFLAGS_PRESERVEBLACK)
958                         _("Preserve K channel in CMYK -> CMYK transforms"), false);
960 #if !defined(cmsFLAGS_PRESERVEBLACK)
961     _cms_proof_preserveblack.set_sensitive( false );
962 #endif // !defined(cmsFLAGS_PRESERVEBLACK)
965 #if ENABLE_LCMS
966     {
967         std::vector<Glib::ustring> names = ::Inkscape::colorprofile_get_display_names();
968         Glib::ustring current = prefs->getString( "/options/displayprofile/uri" );
970         gint index = 0;
971         _cms_display_profile.append_text(_("<none>"));
972         index++;
973         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
974             _cms_display_profile.append_text( *it );
975             Glib::ustring path = get_path_for_profile(*it);
976             if ( !path.empty() && path == current ) {
977                 _cms_display_profile.set_active(index);
978             }
979             index++;
980         }
981         if ( current.empty() ) {
982             _cms_display_profile.set_active(0);
983         }
985         names = ::Inkscape::colorprofile_get_softproof_names();
986         current = prefs->getString("/options/softproof/uri");
987         index = 0;
988         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
989             _cms_proof_profile.append_text( *it );
990             Glib::ustring path = get_path_for_profile(*it);
991             if ( !path.empty() && path == current ) {
992                 _cms_proof_profile.set_active(index);
993             }
994             index++;
995         }
996     }
998     _cms_gamutcolor.signal_color_set().connect( sigc::bind( sigc::ptr_fun(gamutColorChanged), &_cms_gamutcolor) );
1000     _cms_display_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(profileComboChanged), &_cms_display_profile) );
1001     _cms_proof_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(proofComboChanged), &_cms_proof_profile) );
1002 #else
1003     // disable it, but leave it visible
1004     _cms_intent.set_sensitive( false );
1005     _cms_display_profile.set_sensitive( false );
1006     _cms_from_display.set_sensitive( false );
1007     _cms_softproof.set_sensitive( false );
1008     _cms_gamutwarn.set_sensitive( false );
1009     _cms_gamutcolor.set_sensitive( false );
1010     _cms_proof_intent.set_sensitive( false );
1011     _cms_proof_profile.set_sensitive( false );
1012     _cms_proof_blackpoint.set_sensitive( false );
1013     _cms_proof_preserveblack.set_sensitive( false );
1014 #endif // ENABLE_LCMS
1016     this->AddPage(_page_cms, _("Color management"), PREFS_PAGE_CMS);
1019 void InkscapePreferences::initPageGrids()
1021     _page_grids.add_group_header( _("Major grid line emphasizing"));
1023     _grids_no_emphasize_on_zoom.init( _("Don't emphasize gridlines when zoomed out"), "/options/grids/no_emphasize_when_zoomedout", false);
1024     _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);
1026     _page_grids.add_group_header( _("Default grid settings"));
1028     _page_grids.add_line( false, "", _grids_notebook, "", "", false);
1029     _grids_notebook.append_page(_grids_xy,     CanvasGrid::getName( GRID_RECTANGULAR ));
1030     _grids_notebook.append_page(_grids_axonom, CanvasGrid::getName( GRID_AXONOMETRIC ));
1031         _grids_xy_units.init("/options/grids/xy/units");
1032         _grids_xy.add_line( false, _("Grid units:"), _grids_xy_units, "", "", false);
1033         _grids_xy_origin_x.init("/options/grids/xy/origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
1034         _grids_xy_origin_y.init("/options/grids/xy/origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
1035         _grids_xy.add_line( false, _("Origin X:"), _grids_xy_origin_x, "", _("X coordinate of grid origin"), false);
1036         _grids_xy.add_line( false, _("Origin Y:"), _grids_xy_origin_y, "", _("Y coordinate of grid origin"), false);
1037         _grids_xy_spacing_x.init("/options/grids/xy/spacing_x", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
1038         _grids_xy_spacing_y.init("/options/grids/xy/spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
1039         _grids_xy.add_line( false, _("Spacing X:"), _grids_xy_spacing_x, "", _("Distance between vertical grid lines"), false);
1040         _grids_xy.add_line( false, _("Spacing Y:"), _grids_xy_spacing_y, "", _("Distance between horizontal grid lines"), false);
1042         _grids_xy_color.init(_("Grid line color:"), "/options/grids/xy/color", 0x0000ff20);
1043         _grids_xy.add_line( false, _("Grid line color:"), _grids_xy_color, "", _("Color used for normal grid lines"), false);
1044         _grids_xy_empcolor.init(_("Major grid line color:"), "/options/grids/xy/empcolor", 0x0000ff40);
1045         _grids_xy.add_line( false, _("Major grid line color:"), _grids_xy_empcolor, "", _("Color used for major (highlighted) grid lines"), false);
1046         _grids_xy_empspacing.init("/options/grids/xy/empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
1047         _grids_xy.add_line( false, _("Major grid line every:"), _grids_xy_empspacing, "", "", false);
1048         _grids_xy_dotted.init( _("Show dots instead of lines"), "/options/grids/xy/dotted", false);
1049         _grids_xy.add_line( false, "", _grids_xy_dotted, "", _("If set, display dots at gridpoints instead of gridlines"), false);
1051     // CanvasAxonomGrid properties:
1052         _grids_axonom_units.init("/options/grids/axonom/units");
1053         _grids_axonom.add_line( false, _("Grid units:"), _grids_axonom_units, "", "", false);
1054         _grids_axonom_origin_x.init("/options/grids/axonom/origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
1055         _grids_axonom_origin_y.init("/options/grids/axonom/origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
1056         _grids_axonom.add_line( false, _("Origin X:"), _grids_axonom_origin_x, "", _("X coordinate of grid origin"), false);
1057         _grids_axonom.add_line( false, _("Origin Y:"), _grids_axonom_origin_y, "", _("Y coordinate of grid origin"), false);
1058         _grids_axonom_spacing_y.init("/options/grids/axonom/spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
1059         _grids_axonom.add_line( false, _("Spacing Y:"), _grids_axonom_spacing_y, "", _("Base length of z-axis"), false);
1060         _grids_axonom_angle_x.init("/options/grids/axonom/angle_x", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
1061         _grids_axonom_angle_z.init("/options/grids/axonom/angle_z", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
1062         _grids_axonom.add_line( false, _("Angle X:"), _grids_axonom_angle_x, "", _("Angle of x-axis"), false);
1063         _grids_axonom.add_line( false, _("Angle Z:"), _grids_axonom_angle_z, "", _("Angle of z-axis"), false);
1064         _grids_axonom_color.init(_("Grid line color:"), "/options/grids/axonom/color", 0x0000ff20);
1065         _grids_axonom.add_line( false, _("Grid line color:"), _grids_axonom_color, "", _("Color used for normal grid lines"), false);
1066         _grids_axonom_empcolor.init(_("Major grid line color:"), "/options/grids/axonom/empcolor", 0x0000ff40);
1067         _grids_axonom.add_line( false, _("Major grid line color:"), _grids_axonom_empcolor, "", _("Color used for major (highlighted) grid lines"), false);
1068         _grids_axonom_empspacing.init("/options/grids/axonom/empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
1069         _grids_axonom.add_line( false, _("Major grid line every:"), _grids_axonom_empspacing, "", "", false);
1071     this->AddPage(_page_grids, _("Grids"), PREFS_PAGE_GRIDS);
1074 void InkscapePreferences::initPageSVGOutput()
1076     _svgoutput_usenamedcolors.init( _("Use named colors"), "/options/svgoutput/usenamedcolors", false);
1077     _page_svgoutput.add_line( false, "", _svgoutput_usenamedcolors, "", _("If set, write the CSS name of the color when available (e.g. 'red' or 'magenta') instead of the numeric value"), false);
1079     _page_svgoutput.add_group_header( _("XML formatting"));
1081     _svgoutput_inlineattrs.init( _("Inline attributes"), "/options/svgoutput/inlineattrs", false);
1082     _page_svgoutput.add_line( false, "", _svgoutput_inlineattrs, "", _("Put attributes on the same line as the element tag"), false);
1084     _svgoutput_indent.init("/options/svgoutput/indent", 0.0, 1000.0, 1.0, 2.0, 2.0, true, false);
1085     _page_svgoutput.add_line( false, _("Indent, spaces:"), _svgoutput_indent, "", _("The number of spaces to use for indenting nested elements; set to 0 for no indentation"), false);
1087     _page_svgoutput.add_group_header( _("Path data"));
1089     _svgoutput_allowrelativecoordinates.init( _("Allow relative coordinates"), "/options/svgoutput/allowrelativecoordinates", true);
1090     _page_svgoutput.add_line( false, "", _svgoutput_allowrelativecoordinates, "", _("If set, relative coordinates may be used in path data"), false);
1092     _svgoutput_forcerepeatcommands.init( _("Force repeat commands"), "/options/svgoutput/forcerepeatcommands", false);
1093     _page_svgoutput.add_line( false, "", _svgoutput_forcerepeatcommands, "", _("Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead of 'L 1,2 3,4')"), false);
1095     _page_svgoutput.add_group_header( _("Numbers"));
1097     _svgoutput_numericprecision.init("/options/svgoutput/numericprecision", 1.0, 16.0, 1.0, 2.0, 8.0, true, false);
1098     _page_svgoutput.add_line( false, _("Numeric precision:"), _svgoutput_numericprecision, "", _("Significant figures of the values written to the SVG file"), false);
1100     _svgoutput_minimumexponent.init("/options/svgoutput/minimumexponent", -32.0, -1, 1.0, 2.0, -8.0, true, false);
1101     _page_svgoutput.add_line( false, _("Minimum exponent:"), _svgoutput_minimumexponent, "", _("The smallest number written to SVG is 10 to the power of this exponent; anything smaller is written as zero"), false);
1103     this->AddPage(_page_svgoutput, _("SVG output"), PREFS_PAGE_SVGOUTPUT);
1106 void InkscapePreferences::initPageUI()
1108     Glib::ustring languages[] = {_("System default"), _("Albanian (sq)"), _("Amharic (am)"), _("Arabic (ar)"), _("Armenian (hy)"),_("Azerbaijani (az)"), _("Basque (eu)"), _("Belarusian (be)"),
1109         _("Bulgarian (bg)"), _("Bengali (bn)"), _("Breton (br)"), _("Catalan (ca)"), _("Valencian Catalan (ca@valencia)"), _("Chinese/China (zh_CN)"),
1110                                  _("Chinese/Taiwan (zh_TW)"), _("Croatian (hr)"), _("Czech (cs)"),
1111         _("Danish (da)"), _("Dutch (nl)"), _("Dzongkha (dz)"), _("German (de)"), _("Greek (el)"), _("English (en)"), _("English/Australia (en_AU)"),
1112         _("English/Canada (en_CA)"), _("English/Great Britain (en_GB)"), _("Pig Latin (en_US@piglatin)"),
1113         _("Esperanto (eo)"), _("Estonian (et)"), _("Farsi (fa)"), _("Finnish (fi)"),
1114         _("French (fr)"), _("Irish (ga)"), _("Galician (gl)"), _("Hebrew (he)"), _("Hungarian (hu)"),
1115         _("Indonesian (id)"), _("Italian (it)"), _("Japanese (ja)"), _("Khmer (km)"), _("Kinyarwanda (rw)"), _("Korean (ko)"), _("Lithuanian (lt)"), _("Macedonian (mk)"),
1116         _("Mongolian (mn)"), _("Nepali (ne)"), _("Norwegian BokmÃ¥l (nb)"), _("Norwegian Nynorsk (nn)"), _("Panjabi (pa)"),
1117         _("Polish (pl)"), _("Portuguese (pt)"), _("Portuguese/Brazil (pt_BR)"), _("Romanian (ro)"), _("Russian (ru)"),
1118         _("Serbian (sr)"), _("Serbian in Latin script (sr@latin)"), _("Slovak (sk)"), _("Slovenian (sl)"),  _("Spanish (es)"), _("Spanish/Mexico (es_MX)"),
1119         _("Swedish (sv)"),_("Telugu (te_IN)"), _("Thai (th)"), _("Turkish (tr)"), _("Ukrainian (uk)"), _("Vietnamese (vi)")};
1120     Glib::ustring langValues[] = {"", "sq", "am", "ar", "hy", "az", "eu", "be", "bg", "bn", "br", "ca", "ca@valencia", "zh_CN", "zh_TW", "hr", "cs", "da", "nl",
1121         "dz", "de", "el", "en", "en_AU", "en_CA", "en_GB", "en_US@piglatin", "eo", "et", "fa", "fi", "fr", "ga",
1122         "gl", "he", "hu", "id", "it", "ja", "km", "rw", "ko", "lt", "mk", "mn", "ne", "nb", "nn", "pa",
1123         "pl", "pt", "pt_BR", "ro", "ru", "sr", "sr@latin", "sk", "sl", "es", "es_MX", "sv", "te_IN", "th", "tr", "uk", "vi" };
1125     _ui_languages.init( "/ui/language", languages, langValues, G_N_ELEMENTS(languages), languages[0]);
1126     _page_ui.add_line( false, _("Language (requires restart):"), _ui_languages, "",
1127                               _("Set the language for menus and number formats"), false);
1129      Glib::ustring sizeLabels[] = {_("Large"), _("Small"), _("Smaller")};
1130     int sizeValues[] = {0, 1, 2};
1132     _misc_small_tools.init( "/toolbox/tools/small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
1133     _page_ui.add_line( false, _("Toolbox icon size:"), _misc_small_tools, "",
1134                               _("Set the size for the tool icons (requires restart)"), false);
1136     _misc_small_toolbar.init( "/toolbox/small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
1137     _page_ui.add_line( false, _("Control bar icon size:"), _misc_small_toolbar, "",
1138                               _("Set the size for the icons in tools' control bars to use (requires restart)"), false);
1140     _misc_small_secondary.init( "/toolbox/secondary", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 1 );
1141     _page_ui.add_line( false, _("Secondary toolbar icon size:"), _misc_small_secondary, "",
1142                               _("Set the size for the icons in secondary toolbars to use (requires restart)"), false);
1145     _ui_colorsliders_top.init( _("Work-around color sliders not drawing"), "/options/workarounds/colorsontop", false);
1146     _page_ui.add_line( false, "", _ui_colorsliders_top, "",
1147                        _("When on, will attempt to work around bugs in certain GTK themes drawing color sliders"), true);
1150     _misc_recent.init("/options/maxrecentdocuments/value", 0.0, 1000.0, 1.0, 1.0, 1.0, true, false);
1152     Gtk::HBox* recent_hbox = Gtk::manage(new Gtk::HBox());
1153     Gtk::Button* reset_recent = Gtk::manage(new Gtk::Button(_("Clear list")));
1154     reset_recent->signal_clicked().connect(sigc::mem_fun(*this, &InkscapePreferences::on_reset_open_recent_clicked));
1155     recent_hbox->pack_start(_misc_recent, false, false);
1156     recent_hbox->pack_start(*reset_recent, false, false);
1158     _page_ui.add_line( false, _("Maximum documents in Open Recent:"), *recent_hbox, "",
1159                               _("Set the maximum length of the Open Recent list in the File menu, or clear the list"), false);
1161     _ui_zoom_correction.init(300, 30, 1.00, 200.0, 1.0, 10.0, 1.0);
1162     _page_ui.add_line( false, _("Zoom correction factor (in %):"), _ui_zoom_correction, "",
1163                               _("Adjust the slider until the length of the ruler on your screen matches its real length. This information is used when zooming to 1:1, 1:2, etc., to display objects in their true sizes"), true);
1166     _ui_partialdynamic.init( _("Enable dynamic relayout for incomplete sections"), "/options/workarounds/dynamicnotdone", false);
1167     _page_ui.add_line( false, "", _ui_partialdynamic, "",
1168                        _("When on, will allow dynamic layout of components that are not completely finished being refactored"), true);
1171     this->AddPage(_page_ui, _("Interface"), PREFS_PAGE_UI);
1175 void InkscapePreferences::initPageSave()
1177     _save_use_current_dir.init( _("Use current directory for \"Save As ...\""), "/dialogs/save_as/use_current_dir", true);
1178     _page_save.add_line( false, "", _save_use_current_dir, "",
1179                          _("When this option is on, the \"Save as...\" dialog will always open in the directory where the currently open document is; when it's off, it will open in the directory where you last saved a file using that dialog"), true);
1182     // Autosave options
1183     _save_autosave_enable.init( _("Enable autosave (requires restart)"), "/options/autosave/enable", false);
1184     _page_save.add_line(false, "", _save_autosave_enable, "", _("Automatically save the current document(s) at a given interval, thus minimizing loss in case of a crash"), false);
1185     _save_autosave_interval.init("/options/autosave/interval", 1.0, 10800.0, 1.0, 10.0, 10.0, true, false);
1186     _page_save.add_line(true, _("Interval (in minutes):"), _save_autosave_interval, "", _("Interval (in minutes) at which document will be autosaved"), false);
1187     _save_autosave_path.init("/options/autosave/path", true);
1188     //TRANSLATORS: only translate "string" in "context|string".
1189     // For more details, see http://developer.gnome.org/doc/API/2.0/glib/glib-I18N.html#Q-:CAPS
1190     _page_save.add_line(true, Q_("filesystem|Path:"), _save_autosave_path, "", _("The directory where autosaves will be written"), false);
1191     _save_autosave_max.init("/options/autosave/max", 1.0, 100.0, 1.0, 10.0, 10.0, true, false);
1192     _page_save.add_line(true, _("Maximum number of autosaves:"), _save_autosave_max, "", _("Maximum number of autosaved files; use this to limit the storage space used"), false);
1194     /* When changing the interval or enabling/disabling the autosave function,
1195      * update our running configuration
1196      *
1197      * FIXME!
1198      * the inkscape_autosave_init should be called AFTER the values have been changed
1199      * (which cannot be guaranteed from here) - use a PrefObserver somewhere
1200      */
1201     /*
1202     _autosave_autosave_enable.signal_toggled().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1203     _autosave_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1204     */
1206     // -----------
1208     this->AddPage(_page_save, _("Save"), PREFS_PAGE_SAVE);
1211 void InkscapePreferences::initPageBitmaps()
1213     {
1214         Glib::ustring labels[] = {_("None"), _("2x2"), _("4x4"), _("8x8"), _("16x16")};
1215         int values[] = {0, 1, 2, 3, 4};
1216         _misc_overs_bitmap.set_size_request(_sb_width);
1217         _misc_overs_bitmap.init("/options/bitmapoversample/value", labels, values, G_N_ELEMENTS(values), 1);
1218         _page_bitmaps.add_line( false, _("Oversample bitmaps:"), _misc_overs_bitmap, "", "", false);
1219     }
1221     _misc_bitmap_autoreload.init(_("Automatically reload bitmaps"), "/options/bitmapautoreload/value", true);
1222     _page_bitmaps.add_line( false, "", _misc_bitmap_autoreload, "",
1223                            _("Automatically reload linked images when file is changed on disk"));
1224     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1225     Glib::ustring choices = prefs->getString("/options/bitmapeditor/choices");
1226     if (!choices.empty()) {
1227         gchar** splits = g_strsplit(choices.data(), ",", 0);
1228         gint numIems = g_strv_length(splits);
1230         Glib::ustring labels[numIems];
1231         int values[numIems];
1232         for ( gint i = 0; i < numIems; i++) {
1233             values[i] = i;
1234             labels[i] = splits[i];
1235         }
1236         _misc_bitmap_editor.init("/options/bitmapeditor/value", labels, values, numIems, 0);
1237         _page_bitmaps.add_line( false, _("Bitmap editor:"), _misc_bitmap_editor, "", "", false);
1239         g_strfreev(splits);
1240     }
1242     _bitmap_copy_res.init("/options/createbitmap/resolution", 1.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
1243     _page_bitmaps.add_line( false, _("Resolution for Create Bitmap Copy:"), _bitmap_copy_res, _("dpi"),
1244                             _("Resolution used by the Create Bitmap Copy command"), false);
1246     this->AddPage(_page_bitmaps, _("Bitmaps"), PREFS_PAGE_BITMAPS);
1250 void InkscapePreferences::initPageSpellcheck()
1252 #ifdef HAVE_ASPELL
1254     std::vector<Glib::ustring> languages;
1255     std::vector<Glib::ustring> langValues;
1257   AspellConfig *config = new_aspell_config();
1259 #ifdef WIN32
1260     // on windows, dictionaries are in a lib/aspell-0.60 subdir off inkscape's executable dir;
1261     // this is some black magick to find out the executable path to give it to aspell
1262     char exeName[MAX_PATH+1];
1263     GetModuleFileName(NULL, exeName, MAX_PATH);
1264     char *slashPos = strrchr(exeName, '\\');
1265     if (slashPos)
1266         *slashPos = '\0';
1267     g_print ("%s\n", exeName);
1268     aspell_config_replace(config, "prefix", exeName);
1269 #endif
1271   /* the returned pointer should _not_ need to be deleted */
1272   AspellDictInfoList *dlist = get_aspell_dict_info_list(config);
1274   /* config is no longer needed */
1275   delete_aspell_config(config);
1277   AspellDictInfoEnumeration *dels = aspell_dict_info_list_elements(dlist);
1279   languages.push_back(Glib::ustring(_("None")));
1280   langValues.push_back(Glib::ustring(""));
1282   const AspellDictInfo *entry;
1283   int en_index = 0;
1284   int i = 0;
1285   while ( (entry = aspell_dict_info_enumeration_next(dels)) != 0)
1286   {
1287       languages.push_back(Glib::ustring(entry->name));
1288       langValues.push_back(Glib::ustring(entry->name));
1289       if (!strcmp (entry->name, "en"))
1290           en_index = i;
1291       i ++;
1292   }
1294   delete_aspell_dict_info_enumeration(dels);
1297   _spell_language.init( "/dialogs/spellcheck/lang", &languages[0], &langValues[0], languages.size(), languages[en_index]);
1298     _page_spellcheck.add_line( false, _("Language:"), _spell_language, "",
1299                               _("Set the main spell check language"), false);
1301     _spell_language2.init( "/dialogs/spellcheck/lang2", &languages[0], &langValues[0], languages.size(), languages[0]);
1302     _page_spellcheck.add_line( false, _("Second language:"), _spell_language2, "",
1303                               _("Set the second spell check language; checking will only stop on words unknown in ALL chosen languages"), false);
1305     _spell_language3.init( "/dialogs/spellcheck/lang3", &languages[0], &langValues[0], languages.size(), languages[0]);
1306     _page_spellcheck.add_line( false, _("Third language:"), _spell_language3, "",
1307                               _("Set the third spell check language; checking will only stop on words unknown in ALL chosen languages"), false);
1309     _spell_ignorenumbers.init( _("Ignore words with digits"), "/dialogs/spellcheck/ignorenumbers", true);
1310     _page_spellcheck.add_line( false, "", _spell_ignorenumbers, "",
1311                            _("Ignore words containing digits, such as \"R2D2\""), true);
1313     _spell_ignoreallcaps.init( _("Ignore words in ALL CAPITALS"), "/dialogs/spellcheck/ignoreallcaps", false);
1314     _page_spellcheck.add_line( false, "", _spell_ignoreallcaps, "",
1315                            _("Ignore words in all capitals, such as \"IUPAC\""), true);
1317     this->AddPage(_page_spellcheck, _("Spellcheck"), PREFS_PAGE_SPELLCHECK);
1318 #endif
1321 static void appendList( Glib::ustring& tmp, const gchar* const*listing )
1323     bool first = true;
1324     for (const gchar* const* ptr = listing; *ptr; ptr++) {
1325         if (!first) {
1326             tmp += "  ";
1327         }
1328         first = false;
1329         tmp += *ptr;
1330         tmp += "\n";
1331     }
1334 void InkscapePreferences::initPageMisc()
1336     _misc_comment.init( _("Add label comments to printing output"), "/printing/debug/show-label-comments", false);
1337     _page_misc.add_line( false, "", _misc_comment, "",
1338                            _("When on, a comment will be added to the raw print output, marking the rendered output for an object with its label"), true);
1340     _misc_forkvectors.init( _("Prevent sharing of gradient definitions"), "/options/forkgradientvectors/value", true);
1341     _page_misc.add_line( false, "", _misc_forkvectors, "",
1342                            _("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);
1344     _misc_simpl.init("/options/simplifythreshold/value", 0.0001, 1.0, 0.0001, 0.0010, 0.0010, false, false);
1345     _page_misc.add_line( false, _("Simplification threshold:"), _misc_simpl, "",
1346                            _("How strong is the Node tool's 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);
1348     _misc_latency_skew.init("/debug/latency/skew", 0.5, 2.0, 0.01, 0.10, 1.0, false, false);
1349     _page_misc.add_line( false, _("Latency skew:"), _misc_latency_skew, _("(requires restart)"),
1350                            _("Factor by which the event clock is skewed from the actual time (0.9766 on some systems)"), false);
1352     _misc_namedicon_delay.init( _("Pre-render named icons"), "/options/iconrender/named_nodelay", false);
1353     _page_misc.add_line( false, "", _misc_namedicon_delay, "",
1354                            _("When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification"), true);
1357     {
1358         Glib::ustring tmp;
1359         // TRANSLATORS: following strings are paths in Inkscape preferences - Misc - System info
1360         tmp += _("User config: ");
1361         tmp += g_get_user_config_dir();
1362         tmp += "\n";
1364         tmp += _("User data: ");
1365         tmp += g_get_user_data_dir();
1366         tmp += "\n";
1368         tmp += _("User cache: ");
1369         tmp += g_get_user_cache_dir();
1370         tmp += "\n";
1372         tmp += _("System config: ");
1373         appendList( tmp, g_get_system_config_dirs() );
1375         tmp += _("System data: ");
1376         appendList( tmp, g_get_system_data_dirs() );
1378         tmp += _("PIXMAP: ");
1379         tmp += INKSCAPE_PIXMAPDIR;
1380         tmp += "\n";
1382         tmp += _("DATA: ");
1383         tmp += INKSCAPE_DATADIR;
1384         tmp += "\n";
1386         tmp += _("UI: ");
1387         tmp += INKSCAPE_UIDIR;
1388         tmp += "\n";
1390         {
1391             gchar** paths = 0;
1392             gint count = 0;
1393             gtk_icon_theme_get_search_path(gtk_icon_theme_get_default(), &paths, &count);
1394             if (count > 0) {
1395                 tmp += _("Icon theme: ");
1396                 tmp += paths[0];
1397                 tmp += "\n";
1398                 for (int i = 1; i < count; i++) {
1399                     tmp += "  ";
1400                     tmp += paths[i];
1401                     tmp += "\n";
1402                 }
1403             }
1404         }
1406         _misc_info.get_buffer()->insert(_misc_info.get_buffer()->end(), tmp);
1407     }
1408     _misc_info.set_editable(false);
1409     _misc_info_scroll.add(_misc_info);
1410     _page_misc.add_line( false, _("System info"), _misc_info_scroll, "", _("General system information"), true);
1412     this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC);
1415 bool InkscapePreferences::SetMaxDialogSize(const Gtk::TreeModel::iterator& iter)
1417     Gtk::TreeModel::Row row = *iter;
1418     DialogPage* page = row[_page_list_columns._col_page];
1419     _page_frame.add(*page);
1420     this->show_all_children();
1421     Gtk:: Requisition sreq;
1422     this->size_request(sreq);
1423     _max_dialog_width=std::max(_max_dialog_width, sreq.width);
1424     _max_dialog_height=std::max(_max_dialog_height, sreq.height);
1425     _page_frame.remove();
1426     return false;
1429 bool InkscapePreferences::PresentPage(const Gtk::TreeModel::iterator& iter)
1431     Gtk::TreeModel::Row row = *iter;
1432     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1433     int desired_page = prefs->getInt("/dialogs/preferences/page", 0);
1434     if (desired_page == row[_page_list_columns._col_id])
1435     {
1436         if (desired_page >= PREFS_PAGE_TOOLS && desired_page <= PREFS_PAGE_TOOLS_DROPPER)
1437             _page_list.expand_row(_path_tools, false);
1438         if (desired_page >= PREFS_PAGE_TOOLS_SHAPES && desired_page <= PREFS_PAGE_TOOLS_SHAPES_SPIRAL)
1439             _page_list.expand_row(_path_shapes, false);
1440         _page_list.get_selection()->select(iter);
1441         return true;
1442     }
1443     return false;
1446 void InkscapePreferences::on_reset_open_recent_clicked()
1448     GtkRecentManager* manager = gtk_recent_manager_get_default();
1449     GList* recent_list = gtk_recent_manager_get_items(manager);
1450     GList* element;
1451     GError* error;
1453     //Remove only elements that were added by Inkscape
1454     for (element = g_list_first(recent_list); element; element = g_list_next(element)){
1455         error = NULL;
1456         GtkRecentInfo* info = (GtkRecentInfo*) element->data;
1457         if (gtk_recent_info_has_application(info, g_get_prgname())){
1458             gtk_recent_manager_remove_item(manager, gtk_recent_info_get_uri(info), &error);
1459         }
1460         gtk_recent_info_unref (info);
1461     }
1462     g_list_free(recent_list);
1465 void InkscapePreferences::on_pagelist_selection_changed()
1467     // show new selection
1468     Glib::RefPtr<Gtk::TreeSelection> selection = _page_list.get_selection();
1469     Gtk::TreeModel::iterator iter = selection->get_selected();
1470     if(iter)
1471     {
1472         if (_current_page)
1473             _page_frame.remove();
1474         Gtk::TreeModel::Row row = *iter;
1475         _current_page = row[_page_list_columns._col_page];
1476         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1477         prefs->setInt("/dialogs/preferences/page", row[_page_list_columns._col_id]);
1478         _page_title.set_markup("<span size='large'><b>" + row[_page_list_columns._col_name] + "</b></span>");
1479         _page_frame.add(*_current_page);
1480         _current_page->show();
1481         while (Gtk::Main::events_pending())
1482         {
1483             Gtk::Main::iteration();
1484         }
1485         this->show_all_children();
1486     }
1489 void InkscapePreferences::_presentPages()
1491     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::PresentPage));
1494 } // namespace Dialog
1495 } // namespace UI
1496 } // namespace Inkscape
1498 /*
1499   Local Variables:
1500   mode:c++
1501   c-file-style:"stroustrup"
1502   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
1503   indent-tabs-mode:nil
1504   fill-column:99
1505   End:
1506 */
1507 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :