Code

Follow-up ui rollback for fixing bug #399604.
[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 InkscapePreferences::InkscapePreferences()
60     : UI::Widget::Panel ("", "/dialogs/preferences", SP_VERB_DIALOG_DISPLAY),
61       _max_dialog_width(0),
62       _max_dialog_height(0),
63       _current_page(0)
64 {
65     //get the width of a spinbutton
66     Gtk::SpinButton* sb = new Gtk::SpinButton;
67     sb->set_width_chars(6);
68     _getContents()->add(*sb);
69     show_all_children();
70     Gtk::Requisition sreq;
71     sb->size_request(sreq);
72     _sb_width = sreq.width;
73     _getContents()->remove(*sb);
74     delete sb;
76     //Main HBox
77     Gtk::HBox* hbox_list_page = Gtk::manage(new Gtk::HBox());
78     hbox_list_page->set_border_width(12);
79     hbox_list_page->set_spacing(12);
80     _getContents()->add(*hbox_list_page);
82     //Pagelist
83     Gtk::Frame* list_frame = Gtk::manage(new Gtk::Frame());
84     Gtk::ScrolledWindow* scrolled_window = Gtk::manage(new Gtk::ScrolledWindow());
85     hbox_list_page->pack_start(*list_frame, false, true, 0);
86     _page_list.set_headers_visible(false);
87     scrolled_window->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
88     scrolled_window->add(_page_list);
89     list_frame->set_shadow_type(Gtk::SHADOW_IN);
90     list_frame->add(*scrolled_window);
91     _page_list_model = Gtk::TreeStore::create(_page_list_columns);
92     _page_list.set_model(_page_list_model);
93     _page_list.append_column("name",_page_list_columns._col_name);
94     Glib::RefPtr<Gtk::TreeSelection> page_list_selection = _page_list.get_selection();
95     page_list_selection->signal_changed().connect(sigc::mem_fun(*this, &InkscapePreferences::on_pagelist_selection_changed));
96     page_list_selection->set_mode(Gtk::SELECTION_BROWSE);
98     //Pages
99     Gtk::VBox* vbox_page = Gtk::manage(new Gtk::VBox());
100     Gtk::Frame* title_frame = Gtk::manage(new Gtk::Frame());
102     Gtk::ScrolledWindow* pageScroller = Gtk::manage(new Gtk::ScrolledWindow());
103     pageScroller->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
104     pageScroller->add(*vbox_page);
105     hbox_list_page->pack_start(*pageScroller, true, true, 0);
107     title_frame->add(_page_title);
108     vbox_page->pack_start(*title_frame, false, false, 0);
109     vbox_page->pack_start(_page_frame, true, true, 0);
110     _page_frame.set_shadow_type(Gtk::SHADOW_IN);
111     title_frame->set_shadow_type(Gtk::SHADOW_IN);
113     initPageTools();
114     initPageSelecting();
115     initPageTransforms();
116     initPageClones();
117     initPageMasks();
118     initPageFilters();
119     initPageBitmaps();
120     initPageCMS();
121     initPageGrids();
122     initPageSVGOutput();
123     initPageSave();
124     initPageImportExport();
125     initPageMouse();
126     initPageScrolling();
127     initPageSnapping();
128     initPageSteps();
129     initPageUI();
130     initPageWindows();
131     initPageSpellcheck();
132     initPageMisc();
134     signalPresent().connect(sigc::mem_fun(*this, &InkscapePreferences::_presentPages));
136     //calculate the size request for this dialog
137     this->show_all_children();
138     _page_list.expand_all();
139     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::SetMaxDialogSize));
140     _getContents()->set_size_request(_max_dialog_width, _max_dialog_height);
141     _page_list.collapse_all();
144 InkscapePreferences::~InkscapePreferences()
148 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, int id)
150     return AddPage(p, title, Gtk::TreeModel::iterator() , id);
153 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id)
155     Gtk::TreeModel::iterator iter;
156     if (parent)
157        iter = _page_list_model->append((*parent).children());
158     else
159        iter = _page_list_model->append();
160     Gtk::TreeModel::Row row = *iter;
161     row[_page_list_columns._col_name] = title;
162     row[_page_list_columns._col_id] = id;
163     row[_page_list_columns._col_page] = &p;
164     return iter;
167 void InkscapePreferences::initPageMouse()
169     this->AddPage(_page_mouse, _("Mouse"), PREFS_PAGE_MOUSE);
170     _mouse_sens.init ( "/options/cursortolerance/value", 0.0, 30.0, 1.0, 1.0, 8.0, true, false);
171     _page_mouse.add_line( false, _("Grab sensitivity:"), _mouse_sens, _("pixels"),
172                            _("How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)"), false);
173     _mouse_thres.init ( "/options/dragtolerance/value", 0.0, 20.0, 1.0, 1.0, 4.0, true, false);
174     _page_mouse.add_line( false, _("Click/drag threshold:"), _mouse_thres, _("pixels"),
175                            _("Maximum mouse drag (in screen pixels) which is considered a click, not a drag"), false);
177     _mouse_use_ext_input.init( _("Use pressure-sensitive tablet (requires restart)"), "/options/useextinput/value", true);
178     _page_mouse.add_line(true, "",_mouse_use_ext_input, "",
179                         _("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)"));
181     _mouse_switch_on_ext_input.init( _("Switch tool based on tablet device (requires restart)"), "/options/switchonextinput/value", false);
182     _page_mouse.add_line(true, "",_mouse_switch_on_ext_input, "",
183                         _("Change tool as different devices are used on the tablet (pen, eraser, mouse)"));
186 void InkscapePreferences::initPageScrolling()
188     this->AddPage(_page_scrolling, _("Scrolling"), PREFS_PAGE_SCROLLING);
189     _scroll_wheel.init ( "/options/wheelscroll/value", 0.0, 1000.0, 1.0, 1.0, 40.0, true, false);
190     _page_scrolling.add_line( false, _("Mouse wheel scrolls by:"), _scroll_wheel, _("pixels"),
191                            _("One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)"), false);
192     _page_scrolling.add_group_header( _("Ctrl+arrows"));
193     _scroll_arrow_px.init ( "/options/keyscroll/value", 0.0, 1000.0, 1.0, 1.0, 10.0, true, false);
194     _page_scrolling.add_line( true, _("Scroll by:"), _scroll_arrow_px, _("pixels"),
195                            _("Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)"), false);
196     _scroll_arrow_acc.init ( "/options/scrollingacceleration/value", 0.0, 5.0, 0.01, 1.0, 0.35, false, false);
197     _page_scrolling.add_line( true, _("Acceleration:"), _scroll_arrow_acc, "",
198                            _("Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)"), false);
199     _page_scrolling.add_group_header( _("Autoscrolling"));
200     _scroll_auto_speed.init ( "/options/autoscrollspeed/value", 0.0, 5.0, 0.01, 1.0, 0.7, false, false);
201     _page_scrolling.add_line( true, _("Speed:"), _scroll_auto_speed, "",
202                            _("How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)"), false);
203     _scroll_auto_thres.init ( "/options/autoscrolldistance/value", -600.0, 600.0, 1.0, 1.0, -10.0, true, false);
204     _page_scrolling.add_line( true, _("Threshold:"), _scroll_auto_thres, _("pixels"),
205                            _("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);
206     _scroll_space.init ( _("Left mouse button pans when Space is pressed"), "/options/spacepans/value", false);
207     _page_scrolling.add_line( false, "", _scroll_space, "",
208                             _("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)."));
209     _wheel_zoom.init ( _("Mouse wheel zooms by default"), "/options/wheelzooms/value", false);
210     _page_scrolling.add_line( false, "", _wheel_zoom, "",
211                             _("When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl."));
214 void InkscapePreferences::initPageSnapping()
217     _snap_indicator.init( _("Enable snap indicator"), "/options/snapindicator/value", true);
218     _page_snapping.add_line( false, "", _snap_indicator, "",
219                              _("After snapping, a symbol is drawn at the point that has snapped"));
221     _snap_delay.init("/options/snapdelay/value", 0, 1000, 50, 100, 300, 0);
222     _page_snapping.add_line( false, _("Delay (in ms):"), _snap_delay, "",
223                              _("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);
225     _snap_closest_only.init( _("Only snap the node closest to the pointer"), "/options/snapclosestonly/value", false);
226     _page_snapping.add_line( false, "", _snap_closest_only, "",
227                              _("Only try to snap the node that is initially closest to the mouse pointer"));
229     _snap_weight.init("/options/snapweight/value", 0, 1, 0.1, 0.2, 0.5, 1);
230     _page_snapping.add_line( false, _("Weight factor:"), _snap_weight, "",
231                              _("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);
233     _snap_mouse_pointer.init( _("Snap the mouse pointer when dragging a constrained knot"), "/options/snapmousepointer/value", false);
234     _page_snapping.add_line( false, "", _snap_mouse_pointer, "",
235                              _("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"));
237     this->AddPage(_page_snapping, _("Snapping"), PREFS_PAGE_SNAPPING);
240 void InkscapePreferences::initPageSteps()
242     this->AddPage(_page_steps, _("Steps"), PREFS_PAGE_STEPS);
244     _steps_arrow.init ( "/options/nudgedistance/value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
245     //nudgedistance is limited to 1000 in select-context.cpp: use the same limit here
246     _page_steps.add_line( false, _("Arrow keys move by:"), _steps_arrow, _("px"),
247                           _("Pressing an arrow key moves selected object(s) or node(s) by this distance (in px units)"), false);
248     _steps_scale.init ( "/options/defaultscale/value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
249     //defaultscale is limited to 1000 in select-context.cpp: use the same limit here
250     _page_steps.add_line( false, _("> and < scale by:"), _steps_scale, _("px"),
251                           _("Pressing > or < scales selection up or down by this increment (in px units)"), false);
252     _steps_inset.init ( "/options/defaultoffsetwidth/value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
253     _page_steps.add_line( false, _("Inset/Outset by:"), _steps_inset, _("px"),
254                           _("Inset and Outset commands displace the path by this distance (in px units)"), false);
255     _steps_compass.init ( _("Compass-like display of angles"), "/options/compassangledisplay/value", true);
256     _page_steps.add_line( false, "", _steps_compass, "",
257                             _("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"));
258     int const num_items = 17;
259     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")};
260     int values[num_items] = {2, 3, 4, 5, 6, 8, 10, 12, 15, 18, 24, 30, 60, 90, 180, 360, 0};
261     _steps_rot_snap.set_size_request(_sb_width);
262     _steps_rot_snap.init("/options/rotationsnapsperpi/value", labels, values, num_items, 12);
263     _page_steps.add_line( false, _("Rotation snaps every:"), _steps_rot_snap, _("degrees"),
264                            _("Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount"), false);
265     _steps_zoom.init ( "/options/zoomincrement/value", 101.0, 500.0, 1.0, 1.0, 1.414213562, true, true);
266     _page_steps.add_line( false, _("Zoom in/out by:"), _steps_zoom, _("%"),
267                           _("Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier"), false);
270 void InkscapePreferences::AddSelcueCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
272     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
273     cb->init ( _("Show selection cue"), prefs_path + "/selcue", def_value);
274     p.add_line( false, "", *cb, "", _("Whether selected objects display a selection cue (the same as in selector)"));
277 void InkscapePreferences::AddGradientCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
279     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
280     cb->init ( _("Enable gradient editing"), prefs_path + "/gradientdrag", def_value);
281     p.add_line( false, "", *cb, "", _("Whether selected objects display gradient editing controls"));
284 void InkscapePreferences::AddConvertGuidesCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value) {
285     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
286     cb->init ( _("Conversion to guides uses edges instead of bounding box"), prefs_path + "/convertguides", def_value);
287     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."));
290 void InkscapePreferences::AddDotSizeSpinbutton(DialogPage &p, Glib::ustring const &prefs_path, double def_value)
292     PrefSpinButton* sb = Gtk::manage( new PrefSpinButton);
293     sb->init ( prefs_path + "/dot-size", 0.0, 1000.0, 0.1, 10.0, def_value, false, false);
294     p.add_line( false, _("Ctrl+click dot size:"), *sb, _("times current stroke width"),
295                        _("Size of dots created with Ctrl+click (relative to current stroke width)"),
296                        false );
300 void StyleFromSelectionToTool(Glib::ustring const &prefs_path, StyleSwatch *swatch)
302     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
303     if (desktop == NULL)
304         return;
306     Inkscape::Selection *selection = sp_desktop_selection(desktop);
308     if (selection->isEmpty()) {
309         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
310                                        _("<b>No objects selected</b> to take the style from."));
311         return;
312     }
313     SPItem *item = selection->singleItem();
314     if (!item) {
315         /* TODO: If each item in the selection has the same style then don't consider it an error.
316          * Maybe we should try to handle multiple selections anyway, e.g. the intersection of the
317          * style attributes for the selected items. */
318         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
319                                        _("<b>More than one object selected.</b>  Cannot take style from multiple objects."));
320         return;
321     }
323     SPCSSAttr *css = take_style_from_item (item);
325     if (!css) return;
327     // only store text style for the text tool
328     if (prefs_path != "/tools/text") {
329         css = sp_css_attr_unset_text (css);
330     }
332     // we cannot store properties with uris - they will be invalid in other documents
333     css = sp_css_attr_unset_uris (css);
335     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
336     prefs->setStyle(prefs_path + "/style", css);
337     sp_repr_css_attr_unref (css);
339     // update the swatch
340     if (swatch) {
341         SPCSSAttr *css = prefs->getInheritedStyle(prefs_path + "/style");
342         swatch->setStyle (css);
343         sp_repr_css_attr_unref(css);
344     }
347 void InkscapePreferences::AddNewObjectsStyle(DialogPage &p, Glib::ustring const &prefs_path, const gchar *banner)
349     if (banner)
350         p.add_group_header(banner);
351     else
352         p.add_group_header( _("Create new objects with:"));
353     PrefRadioButton* current = Gtk::manage( new PrefRadioButton);
354     current->init ( _("Last used style"), prefs_path + "/usecurrent", 1, true, 0);
355     p.add_line( true, "", *current, "",
356                 _("Apply the style you last set on an object"));
358     PrefRadioButton* own = Gtk::manage( new PrefRadioButton);
359     Gtk::HBox* hb = Gtk::manage( new Gtk::HBox);
360     Gtk::Alignment* align = Gtk::manage( new Gtk::Alignment);
361     own->init ( _("This tool's own style:"), prefs_path + "/usecurrent", 0, false, current);
362     align->set(0,0,0,0);
363     align->add(*own);
364     hb->add(*align);
365     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."));
366     p.add_line( true, "", *hb, "", "");
368     // style swatch
369     Gtk::Button* button = Gtk::manage( new Gtk::Button(_("Take from selection"),true));
370     StyleSwatch *swatch = 0;
371     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
373     SPCSSAttr *css = prefs->getStyle(prefs_path + "/style");
374     swatch = new StyleSwatch(css, _("This tool's style of new objects"));
375     hb->add(*swatch);
376     sp_repr_css_attr_unref(css);
378     button->signal_clicked().connect( sigc::bind( sigc::ptr_fun(StyleFromSelectionToTool), prefs_path, swatch)  );
379     own->changed_signal.connect( sigc::mem_fun(*button, &Gtk::Button::set_sensitive) );
380     p.add_line( true, "", *button, "",
381                 _("Remember the style of the (first) selected object as this tool's style"));
384 void InkscapePreferences::initPageTools()
386     Gtk::TreeModel::iterator iter_tools = this->AddPage(_page_tools, _("Tools"), PREFS_PAGE_TOOLS);
387     _path_tools = _page_list.get_model()->get_path(iter_tools);
389     _page_tools.add_group_header( _("Bounding box to use:"));
390     _t_bbox_visual.init ( _("Visual bounding box"), "/tools/bounding_box", 0, false, 0); // 0 means visual
391     _page_tools.add_line( true, "", _t_bbox_visual, "",
392                             _("This bounding box includes stroke width, markers, filter margins, etc."));
393     _t_bbox_geometric.init ( _("Geometric bounding box"), "/tools/bounding_box", 1, true, &_t_bbox_visual); // 1 means geometric
394     _page_tools.add_line( true, "", _t_bbox_geometric, "",
395                             _("This bounding box includes only the bare path"));
397     _page_tools.add_group_header( _("Conversion to guides:"));
398     _t_cvg_keep_objects.init ( _("Keep objects after conversion to guides"), "/tools/cvg_keep_objects", false);
399     _page_tools.add_line( true, "", _t_cvg_keep_objects, "",
400                             _("When converting an object to guides, don't delete the object after the conversion."));
401     _t_cvg_convert_whole_groups.init ( _("Treat groups as a single object"), "/tools/cvg_convert_whole_groups", false);
402     _page_tools.add_line( true, "", _t_cvg_convert_whole_groups, "",
403                             _("Treat groups as a single object during conversion to guides rather than converting each child separately."));
405     _pencil_average_all_sketches.init ( _("Average all sketches"), "/tools/freehand/pencil/average_all_sketches", false);
406     _calligrapy_use_abs_size.init ( _("Width is in absolute units"), "/tools/calligraphic/abs_width", false);
407     _calligrapy_keep_selected.init ( _("Select new path"), "/tools/calligraphic/keep_selected", true);
408     _connector_ignore_text.init( _("Don't attach connectors to text objects"), "/tools/connector/ignoretext", true);
410     //Selector
411     this->AddPage(_page_selector, _("Selector"), iter_tools, PREFS_PAGE_TOOLS_SELECTOR);
413     AddSelcueCheckbox(_page_selector, "/tools/select", false);
414     _page_selector.add_group_header( _("When transforming, show:"));
415     _t_sel_trans_obj.init ( _("Objects"), "/tools/select/show", "content", true, 0);
416     _page_selector.add_line( true, "", _t_sel_trans_obj, "",
417                             _("Show the actual objects when moving or transforming"));
418     _t_sel_trans_outl.init ( _("Box outline"), "/tools/select/show", "outline", false, &_t_sel_trans_obj);
419     _page_selector.add_line( true, "", _t_sel_trans_outl, "",
420                             _("Show only a box outline of the objects when moving or transforming"));
421     _page_selector.add_group_header( _("Per-object selection cue:"));
422     _t_sel_cue_none.init ( _("None"), "/options/selcue/value", Inkscape::SelCue::NONE, false, 0);
423     _page_selector.add_line( true, "", _t_sel_cue_none, "",
424                             _("No per-object selection indication"));
425     _t_sel_cue_mark.init ( _("Mark"), "/options/selcue/value", Inkscape::SelCue::MARK, true, &_t_sel_cue_none);
426     _page_selector.add_line( true, "", _t_sel_cue_mark, "",
427                             _("Each selected object has a diamond mark in the top left corner"));
428     _t_sel_cue_box.init ( _("Box"), "/options/selcue/value", Inkscape::SelCue::BBOX, false, &_t_sel_cue_none);
429     _page_selector.add_line( true, "", _t_sel_cue_box, "",
430                             _("Each selected object displays its bounding box"));
432     //Node
433     this->AddPage(_page_node, _("Node"), iter_tools, PREFS_PAGE_TOOLS_NODE);
434     AddSelcueCheckbox(_page_node, "/tools/nodes", true);
435     AddGradientCheckbox(_page_node, "/tools/nodes", true);
436     _page_node.add_group_header( _("Path outline:"));
437     _t_node_pathoutline_color.init(_("Path outline color"), "/tools/nodes/highlight_color", 0xff0000ff);
438     _page_node.add_line( false, _("Path outline color"), _t_node_pathoutline_color, "", _("Selects the color used for showing the path outline."), false);
439     _t_node_pathflash_enabled.init ( _("Path outline flash on mouse-over"), "/tools/nodes/pathflash_enabled", false);
440     _page_node.add_line( true, "", _t_node_pathflash_enabled, "", _("When hovering over a path, briefly flash its outline."));
441     _t_node_pathflash_unselected.init ( _("Suppress path outline flash when one path selected"), "/tools/nodes/pathflash_unselected", false);
442     _page_node.add_line( true, "", _t_node_pathflash_unselected, "", _("If a path is selected, do not continue flashing path outlines."));
443     _t_node_pathflash_timeout.init("/tools/nodes/pathflash_timeout", 0, 10000.0, 100.0, 100.0, 1000.0, true, false);
444     _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);
446     //Tweak
447     this->AddPage(_page_tweak, _("Tweak"), iter_tools, PREFS_PAGE_TOOLS_TWEAK);
448     this->AddNewObjectsStyle(_page_tweak, "/tools/tweak", _("Paint objects with:"));
449     AddSelcueCheckbox(_page_tweak, "/tools/tweak", true);
450     AddGradientCheckbox(_page_tweak, "/tools/tweak", false);
452     //Zoom
453     this->AddPage(_page_zoom, _("Zoom"), iter_tools, PREFS_PAGE_TOOLS_ZOOM);
454     AddSelcueCheckbox(_page_zoom, "/tools/zoom", true);
455     AddGradientCheckbox(_page_zoom, "/tools/zoom", false);
457     //Shapes
458     Gtk::TreeModel::iterator iter_shapes = this->AddPage(_page_shapes, _("Shapes"), iter_tools, PREFS_PAGE_TOOLS_SHAPES);
459     _path_shapes = _page_list.get_model()->get_path(iter_shapes);
460     this->AddSelcueCheckbox(_page_shapes, "/tools/shapes", true);
461     this->AddGradientCheckbox(_page_shapes, "/tools/shapes", true);
463     //Rectangle
464     this->AddPage(_page_rectangle, _("Rectangle"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_RECT);
465     this->AddNewObjectsStyle(_page_rectangle, "/tools/shapes/rect");
466     this->AddConvertGuidesCheckbox(_page_rectangle, "/tools/shapes/rect", true);
468     //3D box
469     this->AddPage(_page_3dbox, _("3D Box"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_3DBOX);
470     this->AddNewObjectsStyle(_page_3dbox, "/tools/shapes/3dbox");
471     this->AddConvertGuidesCheckbox(_page_3dbox, "/tools/shapes/3dbox", true);
473     //ellipse
474     this->AddPage(_page_ellipse, _("Ellipse"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
475     this->AddNewObjectsStyle(_page_ellipse, "/tools/shapes/arc");
477     //star
478     this->AddPage(_page_star, _("Star"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_STAR);
479     this->AddNewObjectsStyle(_page_star, "/tools/shapes/star");
481     //spiral
482     this->AddPage(_page_spiral, _("Spiral"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
483     this->AddNewObjectsStyle(_page_spiral, "/tools/shapes/spiral");
485     //Pencil
486     this->AddPage(_page_pencil, _("Pencil"), iter_tools, PREFS_PAGE_TOOLS_PENCIL);
487     this->AddSelcueCheckbox(_page_pencil, "/tools/freehand/pencil", true);
488     this->AddNewObjectsStyle(_page_pencil, "/tools/freehand/pencil");
489     this->AddDotSizeSpinbutton(_page_pencil, "/tools/freehand/pencil", 3.0);
490     _page_pencil.add_group_header( _("Sketch mode"));
491     _page_pencil.add_line( true, "", _pencil_average_all_sketches, "",
492                             _("If on, the sketch result will be the normal average of all sketches made, instead of averaging the old result with the new sketch."));
494     //Pen
495     this->AddPage(_page_pen, _("Pen"), iter_tools, PREFS_PAGE_TOOLS_PEN);
496     this->AddSelcueCheckbox(_page_pen, "/tools/freehand/pen", true);
497     this->AddNewObjectsStyle(_page_pen, "/tools/freehand/pen");
498     this->AddDotSizeSpinbutton(_page_pen, "/tools/freehand/pen", 3.0);
500     //Calligraphy
501     this->AddPage(_page_calligraphy, _("Calligraphy"), iter_tools, PREFS_PAGE_TOOLS_CALLIGRAPHY);
502     this->AddSelcueCheckbox(_page_calligraphy, "/tools/calligraphic", false);
503     this->AddNewObjectsStyle(_page_calligraphy, "/tools/calligraphic");
504     _page_calligraphy.add_line( false, "", _calligrapy_use_abs_size, "",
505                             _("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"));
506     _page_calligraphy.add_line( false, "", _calligrapy_keep_selected, "",
507                             _("If on, each newly created object will be selected (deselecting previous selection)"));
508     //Paint Bucket
509     this->AddPage(_page_paintbucket, _("Paint Bucket"), iter_tools, PREFS_PAGE_TOOLS_PAINTBUCKET);
510     this->AddSelcueCheckbox(_page_paintbucket, "/tools/paintbucket", false);
511     this->AddNewObjectsStyle(_page_paintbucket, "/tools/paintbucket");
513     //Eraser
514     this->AddPage(_page_eraser, _("Eraser"), iter_tools, PREFS_PAGE_TOOLS_ERASER);
515     this->AddNewObjectsStyle(_page_eraser, "/tools/eraser");
517     //LPETool
518     this->AddPage(_page_lpetool, _("LPE Tool"), iter_tools, PREFS_PAGE_TOOLS_LPETOOL);
519     this->AddNewObjectsStyle(_page_lpetool, "/tools/lpetool");
521     //Text
522     this->AddPage(_page_text, _("Text"), iter_tools, PREFS_PAGE_TOOLS_TEXT);
523     this->AddSelcueCheckbox(_page_text, "/tools/text", true);
524     this->AddGradientCheckbox(_page_text, "/tools/text", true);
525     this->AddNewObjectsStyle(_page_text, "/tools/text");
527     //Gradient
528     this->AddPage(_page_gradient, _("Gradient"), iter_tools, PREFS_PAGE_TOOLS_GRADIENT);
529     this->AddSelcueCheckbox(_page_gradient, "/tools/gradient", true);
531     //Connector
532     this->AddPage(_page_connector, _("Connector"), iter_tools, PREFS_PAGE_TOOLS_CONNECTOR);
533     this->AddSelcueCheckbox(_page_connector, "/tools/connector", true);
534     _page_connector.add_line(false, "", _connector_ignore_text, "",
535             _("If on, connector attachment points will not be shown for text objects"));
536     //Dropper
537     this->AddPage(_page_dropper, _("Dropper"), iter_tools, PREFS_PAGE_TOOLS_DROPPER);
538     this->AddSelcueCheckbox(_page_dropper, "/tools/dropper", true);
539     this->AddGradientCheckbox(_page_dropper, "/tools/dropper", true);
542 void InkscapePreferences::initPageWindows()
544     _win_save_geom.init ( _("Save and restore window geometry for each document"), "/options/savewindowgeometry/value", 1, true, 0);
545     _win_save_geom_prefs.init ( _("Remember and use last window's geometry"), "/options/savewindowgeometry/value", 2, false, &_win_save_geom);
546     _win_save_geom_off.init ( _("Don't save window geometry"), "/options/savewindowgeometry/value", 0, false, &_win_save_geom);
548     _win_dockable.init ( _("Dockable"), "/options/dialogtype/value", 1, true, 0);
549     _win_floating.init ( _("Floating"), "/options/dialogtype/value", 0, false, &_win_dockable);
551     _win_hide_task.init ( _("Dialogs are hidden in taskbar"), "/options/dialogsskiptaskbar/value", true);
552     _win_zoom_resize.init ( _("Zoom when window is resized"), "/options/stickyzoom/value", false);
553     _win_show_close.init ( _("Show close button on dialogs"), "/dialogs/showclose", false);
554     _win_ontop_none.init ( _("None"), "/options/transientpolicy/value", 0, false, 0);
555     _win_ontop_normal.init ( _("Normal"), "/options/transientpolicy/value", 1, true, &_win_ontop_none);
556     _win_ontop_agressive.init ( _("Aggressive"), "/options/transientpolicy/value", 2, false, &_win_ontop_none);
558     _page_windows.add_group_header( _("Saving window geometry (size and position):"));
559     _page_windows.add_line( true, "", _win_save_geom_off, "",
560                             _("Let the window manager determine placement of all windows"));
561     _page_windows.add_line( true, "", _win_save_geom_prefs, "",
562                             _("Remember and use the last window's geometry (saves geometry to user preferences)"));
563     _page_windows.add_line( true, "", _win_save_geom, "",
564                             _("Save and restore window geometry for each document (saves geometry in the document)"));
566     _page_windows.add_group_header( _("Dialog behavior (requires restart):"));
567     _page_windows.add_line( true, "", _win_dockable, "",
568                             _("Dockable"));
569     _page_windows.add_line( true, "", _win_floating, "",
570                             _("Floating"));
572 #ifndef WIN32 // non-Win32 special code to enable transient dialogs
573     _page_windows.add_group_header( _("Dialogs on top:"));
575     _page_windows.add_line( true, "", _win_ontop_none, "",
576                             _("Dialogs are treated as regular windows"));
577     _page_windows.add_line( true, "", _win_ontop_normal, "",
578                             _("Dialogs stay on top of document windows"));
579     _page_windows.add_line( true, "", _win_ontop_agressive, "",
580                             _("Same as Normal but may work better with some window managers"));
581 #endif
583 #if GTK_VERSION_GE(2, 12)
584     _page_windows.add_group_header( _("Dialog Transparency:"));
585     _win_trans_focus.init("/dialogs/transparency/on-focus", 0.5, 1.0, 0.01, 0.1, 1.0, false, false);
586     _page_windows.add_line( true, _("Opacity when focused:"), _win_trans_focus, "", "");
587     _win_trans_blur.init("/dialogs/transparency/on-blur", 0.0, 1.0, 0.01, 0.1, 0.5, false, false);
588     _page_windows.add_line( true, _("Opacity when unfocused:"), _win_trans_blur, "", "");
589     _win_trans_time.init("/dialogs/transparency/animate-time", 0, 1000, 10, 100, 100, true, false);
590     _page_windows.add_line( true, _("Time of opacity change animation:"), _win_trans_time, "ms", "");
591 #endif
593     _page_windows.add_group_header( _("Miscellaneous:"));
594 #ifndef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
595     _page_windows.add_line( false, "", _win_hide_task, "",
596                             _("Whether dialog windows are to be hidden in the window manager taskbar"));
597 #endif
598     _page_windows.add_line( false, "", _win_zoom_resize, "",
599                             _("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)"));
600     _page_windows.add_line( false, "", _win_show_close, "",
601                             _("Whether dialog windows have a close button (requires restart)"));
602     this->AddPage(_page_windows, _("Windows"), PREFS_PAGE_WINDOWS);
605 void InkscapePreferences::initPageClones()
607     _clone_option_parallel.init ( _("Move in parallel"), "/options/clonecompensation/value",
608                                   SP_CLONE_COMPENSATION_PARALLEL, true, 0);
609     _clone_option_stay.init ( _("Stay unmoved"), "/options/clonecompensation/value",
610                                   SP_CLONE_COMPENSATION_UNMOVED, false, &_clone_option_parallel);
611     _clone_option_transform.init ( _("Move according to transform"), "/options/clonecompensation/value",
612                                   SP_CLONE_COMPENSATION_NONE, false, &_clone_option_parallel);
613     _clone_option_unlink.init ( _("Are unlinked"), "/options/cloneorphans/value",
614                                   SP_CLONE_ORPHANS_UNLINK, true, 0);
615     _clone_option_delete.init ( _("Are deleted"), "/options/cloneorphans/value",
616                                   SP_CLONE_ORPHANS_DELETE, false, &_clone_option_unlink);
618     _page_clones.add_group_header( _("When the original moves, its clones and linked offsets:"));
619     _page_clones.add_line( true, "", _clone_option_parallel, "",
620                            _("Clones are translated by the same vector as their original."));
621     _page_clones.add_line( true, "", _clone_option_stay, "",
622                            _("Clones preserve their positions when their original is moved."));
623     _page_clones.add_line( true, "", _clone_option_transform, "",
624                            _("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."));
625     _page_clones.add_group_header( _("When the original is deleted, its clones:"));
626     _page_clones.add_line( true, "", _clone_option_unlink, "",
627                            _("Orphaned clones are converted to regular objects."));
628     _page_clones.add_line( true, "", _clone_option_delete, "",
629                            _("Orphaned clones are deleted along with their original."));
631     _page_clones.add_group_header( _("When duplicating original+clones:"));
633     _clone_relink_on_duplicate.init ( _("Relink duplicated clones"), "/options/relinkclonesonduplicate/value", false);
634     _page_clones.add_line(true, "", _clone_relink_on_duplicate, "",
635                         _("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"));
637     //TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page
638     this->AddPage(_page_clones, _("Clones"), PREFS_PAGE_CLONES);
641 void InkscapePreferences::initPageMasks()
643     _mask_mask_on_top.init ( _("When applying, use the topmost selected object as clippath/mask"), "/options/maskobject/topmost", true);
644     _page_mask.add_line(true, "", _mask_mask_on_top, "",
645                         _("Uncheck this to use the bottom selected object as the clipping path or mask"));
646     _mask_mask_remove.init ( _("Remove clippath/mask object after applying"), "/options/maskobject/remove", true);
647     _page_mask.add_line(true, "", _mask_mask_remove, "",
648                         _("After applying, remove the object used as the clipping path or mask from the drawing"));
649     this->AddPage(_page_mask, _("Clippaths and masks"), PREFS_PAGE_MASKS);
652 void InkscapePreferences::initPageTransforms()
654     _trans_scale_stroke.init ( _("Scale stroke width"), "/options/transform/stroke", true);
655     _trans_scale_corner.init ( _("Scale rounded corners in rectangles"), "/options/transform/rectcorners", false);
656     _trans_gradient.init ( _("Transform gradients"), "/options/transform/gradient", true);
657     _trans_pattern.init ( _("Transform patterns"), "/options/transform/pattern", false);
658     _trans_optimized.init ( _("Optimized"), "/options/preservetransform/value", 0, true, 0);
659     _trans_preserved.init ( _("Preserved"), "/options/preservetransform/value", 1, false, &_trans_optimized);
661     _page_transforms.add_line( false, "", _trans_scale_stroke, "",
662                                _("When scaling objects, scale the stroke width by the same proportion"));
663     _page_transforms.add_line( false, "", _trans_scale_corner, "",
664                                _("When scaling rectangles, scale the radii of rounded corners"));
665     _page_transforms.add_line( false, "", _trans_gradient, "",
666                                _("Move gradients (in fill or stroke) along with the objects"));
667     _page_transforms.add_line( false, "", _trans_pattern, "",
668                                _("Move patterns (in fill or stroke) along with the objects"));
669     _page_transforms.add_group_header( _("Store transformation:"));
670     _page_transforms.add_line( true, "", _trans_optimized, "",
671                                _("If possible, apply transformation to objects without adding a transform= attribute"));
672     _page_transforms.add_line( true, "", _trans_preserved, "",
673                                _("Always store transformation as a transform= attribute on objects"));
675     this->AddPage(_page_transforms, _("Transforms"), PREFS_PAGE_TRANSFORMS);
678 void InkscapePreferences::initPageFilters()
680     /* blur quality */
681     _blur_quality_best.init ( _("Best quality (slowest)"), "/options/blurquality/value",
682                                   BLUR_QUALITY_BEST, false, 0);
683     _blur_quality_better.init ( _("Better quality (slower)"), "/options/blurquality/value",
684                                   BLUR_QUALITY_BETTER, false, &_blur_quality_best);
685     _blur_quality_normal.init ( _("Average quality"), "/options/blurquality/value",
686                                   BLUR_QUALITY_NORMAL, true, &_blur_quality_best);
687     _blur_quality_worse.init ( _("Lower quality (faster)"), "/options/blurquality/value",
688                                   BLUR_QUALITY_WORSE, false, &_blur_quality_best);
689     _blur_quality_worst.init ( _("Lowest quality (fastest)"), "/options/blurquality/value",
690                                   BLUR_QUALITY_WORST, false, &_blur_quality_best);
692     _page_filters.add_group_header( _("Gaussian blur quality for display:"));
693     _page_filters.add_line( true, "", _blur_quality_best, "",
694                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
695     _page_filters.add_line( true, "", _blur_quality_better, "",
696                            _("Better quality, but slower display"));
697     _page_filters.add_line( true, "", _blur_quality_normal, "",
698                            _("Average quality, acceptable display speed"));
699     _page_filters.add_line( true, "", _blur_quality_worse, "",
700                            _("Lower quality (some artifacts), but display is faster"));
701     _page_filters.add_line( true, "", _blur_quality_worst, "",
702                            _("Lowest quality (considerable artifacts), but display is fastest"));
704     /* filter quality */
705     _filter_quality_best.init ( _("Best quality (slowest)"), "/options/filterquality/value",
706                                   Inkscape::Filters::FILTER_QUALITY_BEST, false, 0);
707     _filter_quality_better.init ( _("Better quality (slower)"), "/options/filterquality/value",
708                                   Inkscape::Filters::FILTER_QUALITY_BETTER, false, &_filter_quality_best);
709     _filter_quality_normal.init ( _("Average quality"), "/options/filterquality/value",
710                                   Inkscape::Filters::FILTER_QUALITY_NORMAL, true, &_filter_quality_best);
711     _filter_quality_worse.init ( _("Lower quality (faster)"), "/options/filterquality/value",
712                                   Inkscape::Filters::FILTER_QUALITY_WORSE, false, &_filter_quality_best);
713     _filter_quality_worst.init ( _("Lowest quality (fastest)"), "/options/filterquality/value",
714                                   Inkscape::Filters::FILTER_QUALITY_WORST, false, &_filter_quality_best);
716     _page_filters.add_group_header( _("Filter effects quality for display:"));
717     _page_filters.add_line( true, "", _filter_quality_best, "",
718                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
719     _page_filters.add_line( true, "", _filter_quality_better, "",
720                            _("Better quality, but slower display"));
721     _page_filters.add_line( true, "", _filter_quality_normal, "",
722                            _("Average quality, acceptable display speed"));
723     _page_filters.add_line( true, "", _filter_quality_worse, "",
724                            _("Lower quality (some artifacts), but display is faster"));
725     _page_filters.add_line( true, "", _filter_quality_worst, "",
726                            _("Lowest quality (considerable artifacts), but display is fastest"));
728     /* show infobox */
729     _show_filters_info_box.init( _("Show filter primitives infobox"), "/options/showfiltersinfobox/value", true);
730     _page_filters.add_line(true, "", _show_filters_info_box, "",
731                         _("Show icons and descriptions for the filter primitives available at the filter effects dialog."));
733     this->AddPage(_page_filters, _("Filters"), PREFS_PAGE_FILTERS);
737 void InkscapePreferences::initPageSelecting()
739     _sel_all.init ( _("Select in all layers"), "/options/kbselection/inlayer", PREFS_SELECTION_ALL, false, 0);
740     _sel_current.init ( _("Select only within current layer"), "/options/kbselection/inlayer", PREFS_SELECTION_LAYER, true, &_sel_all);
741     _sel_recursive.init ( _("Select in current layer and sublayers"), "/options/kbselection/inlayer", PREFS_SELECTION_LAYER_RECURSIVE, false, &_sel_all);
742     _sel_hidden.init ( _("Ignore hidden objects and layers"), "/options/kbselection/onlyvisible", true);
743     _sel_locked.init ( _("Ignore locked objects and layers"), "/options/kbselection/onlysensitive", true);
744     _sel_layer_deselects.init ( _("Deselect upon layer change"), "/options/selection/layerdeselect", true);
746     _page_select.add_group_header( _("Ctrl+A, Tab, Shift+Tab:"));
747     _page_select.add_line( true, "", _sel_all, "",
748                            _("Make keyboard selection commands work on objects in all layers"));
749     _page_select.add_line( true, "", _sel_current, "",
750                            _("Make keyboard selection commands work on objects in current layer only"));
751     _page_select.add_line( true, "", _sel_recursive, "",
752                            _("Make keyboard selection commands work on objects in current layer and all its sublayers"));
753     _page_select.add_line( true, "", _sel_hidden, "",
754                            _("Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)"));
755     _page_select.add_line( true, "", _sel_locked, "",
756                            _("Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)"));
758     _page_select.add_line( false, "", _sel_layer_deselects, "",
759                            _("Uncheck this to be able to keep the current objects selected when the current layer changes"));
761     this->AddPage(_page_select, _("Selecting"), PREFS_PAGE_SELECTING);
765 void InkscapePreferences::initPageImportExport()
767     _importexport_export.init("/dialogs/export/defaultxdpi/value", 0.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
768     _page_importexport.add_line( false, _("Default export resolution:"), _importexport_export, _("dpi"),
769                             _("Default bitmap resolution (in dots per inch) in the Export dialog"), false);
770     _importexport_ocal_url.init("/options/ocalurl/str", true, g_strdup_printf("openclipart.org"));
771     _page_importexport.add_line( false, _("Open Clip Art Library Server Name:"), _importexport_ocal_url, "",
772         _("The server name of the Open Clip Art Library webdav server. It's used by the Import and Export to OCAL function."), true);
773     _importexport_ocal_username.init("/options/ocalusername/str", true);
774     _page_importexport.add_line( false, _("Open Clip Art Library Username:"), _importexport_ocal_username, "",
775             _("The username used to log into Open Clip Art Library."), true);
776     _importexport_ocal_password.init("/options/ocalpassword/str", false);
777     _page_importexport.add_line( false, _("Open Clip Art Library Password:"), _importexport_ocal_password, "",
778             _("The password used to log into Open Clip Art Library."), true);
780     this->AddPage(_page_importexport, _("Import/Export"), PREFS_PAGE_IMPORTEXPORT);
783 #if ENABLE_LCMS
784 static void profileComboChanged( Gtk::ComboBoxText* combo )
786     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
787     int rowNum = combo->get_active_row_number();
788     if ( rowNum < 1 ) {
789         prefs->setString("/options/displayprofile/uri", "");
790     } else {
791         Glib::ustring active = combo->get_active_text();
793         Glib::ustring path = get_path_for_profile(active);
794         if ( !path.empty() ) {
795             prefs->setString("/options/displayprofile/uri", path);
796         }
797     }
800 static void proofComboChanged( Gtk::ComboBoxText* combo )
802     Glib::ustring active = combo->get_active_text();
803     Glib::ustring path = get_path_for_profile(active);
805     if ( !path.empty() ) {
806         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
807         prefs->setString("/options/softproof/uri", path);
808     }
811 static void gamutColorChanged( Gtk::ColorButton* btn ) {
812     Gdk::Color color = btn->get_color();
813     gushort r = color.get_red();
814     gushort g = color.get_green();
815     gushort b = color.get_blue();
817     gchar* tmp = g_strdup_printf("#%02x%02x%02x", (r >> 8), (g >> 8), (b >> 8) );
819     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
820     prefs->setString("/options/softproof/gamutcolor", tmp);
821     g_free(tmp);
823 #endif // ENABLE_LCMS
825 void InkscapePreferences::initPageCMS()
827     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
828     int const numIntents = 4;
829     /* TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm */
830     Glib::ustring intentLabels[numIntents] = {_("Perceptual"), _("Relative Colorimetric"), _("Saturation"), _("Absolute Colorimetric")};
831     int intentValues[numIntents] = {0, 1, 2, 3};
833 #if !ENABLE_LCMS
834     Gtk::Label* lbl = new Gtk::Label(_("(Note: Color management has been disabled in this build)"));
835     _page_cms.add_line( false, "", *lbl, "", "", true);
836 #endif // !ENABLE_LCMS
838     _page_cms.add_group_header( _("Display adjustment"));
840     Glib::ustring tmpStr;
841     std::list<Glib::ustring> sources = ColorProfile::getProfileDirs();
842     for ( std::list<Glib::ustring>::const_iterator it = sources.begin(); it != sources.end(); ++it ) {
843         gchar* part = g_strdup_printf( "\n%s", it->c_str() );
844         tmpStr += part;
845         g_free(part);
846     }
848     gchar* profileTip = g_strdup_printf(_("The ICC profile to use to calibrate display output.\nSearched directories:%s"), tmpStr.c_str());
849     _page_cms.add_line( false, _("Display profile:"), _cms_display_profile, "",
850                         profileTip, false);
851     g_free(profileTip);
852     profileTip = 0;
854     _cms_from_display.init( _("Retrieve profile from display"), "/options/displayprofile/from_display", false);
855     _page_cms.add_line( false, "", _cms_from_display, "",
856 #ifdef GDK_WINDOWING_X11
857                         _("Retrieve profiles from those attached to displays via XICC."), false);
858 #else
859                         _("Retrieve profiles from those attached to displays."), false);
860 #endif // GDK_WINDOWING_X11
863     _cms_intent.init("/options/displayprofile/intent", intentLabels, intentValues, numIntents, 0);
864     _page_cms.add_line( false, _("Display rendering intent:"), _cms_intent, "",
865                         _("The rendering intent to use to calibrate display output."), false);
867     _page_cms.add_group_header( _("Proofing"));
869     _cms_softproof.init( _("Simulate output on screen"), "/options/softproof/enable", false);
870     _page_cms.add_line( false, "", _cms_softproof, "",
871                         _("Simulates output of target device."), false);
873     _cms_gamutwarn.init( _("Mark out of gamut colors"), "/options/softproof/gamutwarn", false);
874     _page_cms.add_line( false, "", _cms_gamutwarn, "",
875                         _("Highlights colors that are out of gamut for the target device."), false);
877     Glib::ustring colorStr = prefs->getString("/options/softproof/gamutcolor");
878     Gdk::Color tmpColor( colorStr.empty() ? "#00ff00" : colorStr);
879     _cms_gamutcolor.set_color( tmpColor );
880     _page_cms.add_line( true, _("Out of gamut warning color:"), _cms_gamutcolor, "",
881                         _("Selects the color used for out of gamut warning."), false);
883     _page_cms.add_line( false, _("Device profile:"), _cms_proof_profile, "",
884                         _("The ICC profile to use to simulate device output."), false);
886     _cms_proof_intent.init("/options/softproof/intent", intentLabels, intentValues, numIntents, 0);
887     _page_cms.add_line( false, _("Device rendering intent:"), _cms_proof_intent, "",
888                         _("The rendering intent to use to calibrate display output."), false);
890     _cms_proof_blackpoint.init( _("Black point compensation"), "/options/softproof/bpc", false);
891     _page_cms.add_line( false, "", _cms_proof_blackpoint, "",
892                         _("Enables black point compensation."), false);
894     _cms_proof_preserveblack.init( _("Preserve black"), "/options/softproof/preserveblack", false);
895     _page_cms.add_line( false, "", _cms_proof_preserveblack,
896 #if defined(cmsFLAGS_PRESERVEBLACK)
897                         "",
898 #else
899                         _("(LittleCMS 1.15 or later required)"),
900 #endif // defined(cmsFLAGS_PRESERVEBLACK)
901                         _("Preserve K channel in CMYK -> CMYK transforms"), false);
903 #if !defined(cmsFLAGS_PRESERVEBLACK)
904     _cms_proof_preserveblack.set_sensitive( false );
905 #endif // !defined(cmsFLAGS_PRESERVEBLACK)
908 #if ENABLE_LCMS
909     {
910         std::vector<Glib::ustring> names = ::Inkscape::colorprofile_get_display_names();
911         Glib::ustring current = prefs->getString( "/options/displayprofile/uri" );
913         gint index = 0;
914         _cms_display_profile.append_text(_("<none>"));
915         index++;
916         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
917             _cms_display_profile.append_text( *it );
918             Glib::ustring path = get_path_for_profile(*it);
919             if ( !path.empty() && path == current ) {
920                 _cms_display_profile.set_active(index);
921             }
922             index++;
923         }
924         if ( current.empty() ) {
925             _cms_display_profile.set_active(0);
926         }
928         names = ::Inkscape::colorprofile_get_softproof_names();
929         current = prefs->getString("/options/softproof/uri");
930         index = 0;
931         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
932             _cms_proof_profile.append_text( *it );
933             Glib::ustring path = get_path_for_profile(*it);
934             if ( !path.empty() && path == current ) {
935                 _cms_proof_profile.set_active(index);
936             }
937             index++;
938         }
939     }
941     _cms_gamutcolor.signal_color_set().connect( sigc::bind( sigc::ptr_fun(gamutColorChanged), &_cms_gamutcolor) );
943     _cms_display_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(profileComboChanged), &_cms_display_profile) );
944     _cms_proof_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(proofComboChanged), &_cms_proof_profile) );
945 #else
946     // disable it, but leave it visible
947     _cms_intent.set_sensitive( false );
948     _cms_display_profile.set_sensitive( false );
949     _cms_from_display.set_sensitive( false );
950     _cms_softproof.set_sensitive( false );
951     _cms_gamutwarn.set_sensitive( false );
952     _cms_gamutcolor.set_sensitive( false );
953     _cms_proof_intent.set_sensitive( false );
954     _cms_proof_profile.set_sensitive( false );
955     _cms_proof_blackpoint.set_sensitive( false );
956     _cms_proof_preserveblack.set_sensitive( false );
957 #endif // ENABLE_LCMS
959     this->AddPage(_page_cms, _("Color management"), PREFS_PAGE_CMS);
962 void InkscapePreferences::initPageGrids()
964     _page_grids.add_group_header( _("Major grid line emphasizing"));
966     _grids_no_emphasize_on_zoom.init( _("Don't emphasize gridlines when zoomed out"), "/options/grids/no_emphasize_when_zoomedout", false);
967     _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);
969     _page_grids.add_group_header( _("Default grid settings"));
971     _page_grids.add_line( false, "", _grids_notebook, "", "", false);
972     _grids_notebook.append_page(_grids_xy,     CanvasGrid::getName( GRID_RECTANGULAR ));
973     _grids_notebook.append_page(_grids_axonom, CanvasGrid::getName( GRID_AXONOMETRIC ));
974         _grids_xy_units.init("/options/grids/units");
975         _grids_xy.add_line( false, _("Grid units:"), _grids_xy_units, "", "", false);
976         _grids_xy_origin_x.init("/options/grids/xy/origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
977         _grids_xy_origin_y.init("/options/grids/xy/origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
978         _grids_xy.add_line( false, _("Origin X:"), _grids_xy_origin_x, "", _("X coordinate of grid origin"), false);
979         _grids_xy.add_line( false, _("Origin Y:"), _grids_xy_origin_y, "", _("Y coordinate of grid origin"), false);
980         _grids_xy_spacing_x.init("/options/grids/xy/spacing_x", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
981         _grids_xy_spacing_y.init("/options/grids/xy/spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
982         _grids_xy.add_line( false, _("Spacing X:"), _grids_xy_spacing_x, "", _("Distance between vertical grid lines"), false);
983         _grids_xy.add_line( false, _("Spacing Y:"), _grids_xy_spacing_y, "", _("Distance between horizontal grid lines"), false);
985         _grids_xy_color.init(_("Grid line color:"), "/options/grids/xy/color", 0x0000ff20);
986         _grids_xy.add_line( false, _("Grid line color:"), _grids_xy_color, "", _("Color used for normal grid lines"), false);
987         _grids_xy_empcolor.init(_("Major grid line color:"), "/options/grids/xy/empcolor", 0x0000ff40);
988         _grids_xy.add_line( false, _("Major grid line color:"), _grids_xy_empcolor, "", _("Color used for major (highlighted) grid lines"), false);
989         _grids_xy_empspacing.init("/options/grids/xy/empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
990         _grids_xy.add_line( false, _("Major grid line every:"), _grids_xy_empspacing, "", "", false);
991         _grids_xy_dotted.init( _("Show dots instead of lines"), "/options/grids/xy/dotted", false);
992         _grids_xy.add_line( false, "", _grids_xy_dotted, "", _("If set, display dots at gridpoints instead of gridlines"), false);
994     // CanvasAxonomGrid properties:
995         _grids_axonom_units.init("/options/grids/axonom/units");
996         _grids_axonom.add_line( false, _("Grid units:"), _grids_axonom_units, "", "", false);
997         _grids_axonom_origin_x.init("/options/grids/axonom/origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
998         _grids_axonom_origin_y.init("/options/grids/axonom/origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
999         _grids_axonom.add_line( false, _("Origin X:"), _grids_axonom_origin_x, "", _("X coordinate of grid origin"), false);
1000         _grids_axonom.add_line( false, _("Origin Y:"), _grids_axonom_origin_y, "", _("Y coordinate of grid origin"), false);
1001         _grids_axonom_spacing_y.init("/options/grids/axonom/spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
1002         _grids_axonom.add_line( false, _("Spacing Y:"), _grids_axonom_spacing_y, "", _("Base length of z-axis"), false);
1003         _grids_axonom_angle_x.init("/options/grids/axonom/angle_x", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
1004         _grids_axonom_angle_z.init("/options/grids/axonom/angle_z", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
1005         _grids_axonom.add_line( false, _("Angle X:"), _grids_axonom_angle_x, "", _("Angle of x-axis"), false);
1006         _grids_axonom.add_line( false, _("Angle Z:"), _grids_axonom_angle_z, "", _("Angle of z-axis"), false);
1007         _grids_axonom_color.init(_("Grid line color:"), "/options/grids/axonom/color", 0x0000ff20);
1008         _grids_axonom.add_line( false, _("Grid line color:"), _grids_axonom_color, "", _("Color used for normal grid lines"), false);
1009         _grids_axonom_empcolor.init(_("Major grid line color:"), "/options/grids/axonom/empcolor", 0x0000ff40);
1010         _grids_axonom.add_line( false, _("Major grid line color:"), _grids_axonom_empcolor, "", _("Color used for major (highlighted) grid lines"), false);
1011         _grids_axonom_empspacing.init("/options/grids/axonom/empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
1012         _grids_axonom.add_line( false, _("Major grid line every:"), _grids_axonom_empspacing, "", "", false);
1014     this->AddPage(_page_grids, _("Grids"), PREFS_PAGE_GRIDS);
1017 void InkscapePreferences::initPageSVGOutput()
1019     _svgoutput_usenamedcolors.init( _("Use named colors"), "/options/svgoutput/usenamedcolors", false);
1020     _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);
1022     _page_svgoutput.add_group_header( _("XML formatting"));
1024     _svgoutput_inlineattrs.init( _("Inline attributes"), "/options/svgoutput/inlineattrs", false);
1025     _page_svgoutput.add_line( false, "", _svgoutput_inlineattrs, "", _("Put attributes on the same line as the element tag"), false);
1027     _svgoutput_indent.init("/options/svgoutput/indent", 0.0, 1000.0, 1.0, 2.0, 2.0, true, false);
1028     _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);
1030     _page_svgoutput.add_group_header( _("Path data"));
1032     _svgoutput_allowrelativecoordinates.init( _("Allow relative coordinates"), "/options/svgoutput/allowrelativecoordinates", true);
1033     _page_svgoutput.add_line( false, "", _svgoutput_allowrelativecoordinates, "", _("If set, relative coordinates may be used in path data"), false);
1035     _svgoutput_forcerepeatcommands.init( _("Force repeat commands"), "/options/svgoutput/forcerepeatcommands", false);
1036     _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);
1038     _page_svgoutput.add_group_header( _("Numbers"));
1040     _svgoutput_numericprecision.init("/options/svgoutput/numericprecision", 1.0, 16.0, 1.0, 2.0, 8.0, true, false);
1041     _page_svgoutput.add_line( false, _("Numeric precision:"), _svgoutput_numericprecision, "", _("How many digits to write after the decimal dot"), false);
1043     _svgoutput_minimumexponent.init("/options/svgoutput/minimumexponent", -32.0, -1, 1.0, 2.0, -8.0, true, false);
1044     _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);
1046     this->AddPage(_page_svgoutput, _("SVG output"), PREFS_PAGE_SVGOUTPUT);
1049 void InkscapePreferences::initPageUI()
1051     Glib::ustring languages[] = {_("System default"), _("Albanian (sq)"), _("Amharic (am)"), _("Arabic (ar)"), _("Armenian (hy)"),_("Azerbaijani (az)"), _("Basque (eu)"), _("Belarusian (be)"),
1052         _("Bulgarian (bg)"), _("Bengali (bn)"), _("Breton (br)"), _("Catalan (ca)"), _("Valencian Catalan (ca@valencia)"), _("Chinese/China (zh_CN)"),
1053                                  _("Chinese/Taiwan (zh_TW)"), _("Croatian (hr)"), _("Czech (cs)"),
1054         _("Danish (da)"), _("Dutch (nl)"), _("Dzongkha (dz)"), _("German (de)"), _("Greek (el)"), _("English (en)"), _("English/Australia (en_AU)"),
1055         _("English/Canada (en_CA)"), _("English/Great Britain (en_GB)"), _("Pig Latin (en_US@piglatin)"),
1056         _("Esperanto (eo)"), _("Estonian (et)"), _("Finnish (fi)"),
1057         _("French (fr)"), _("Irish (ga)"), _("Galician (gl)"), _("Hebrew (he)"), _("Hungarian (hu)"),
1058         _("Indonesian (id)"), _("Italian (it)"), _("Japanese (ja)"), _("Khmer (km)"), _("Kinyarwanda (rw)"), _("Korean (ko)"), _("Lithuanian (lt)"), _("Macedonian (mk)"),
1059         _("Mongolian (mn)"), _("Nepali (ne)"), _("Norwegian BokmÃ¥l (nb)"), _("Norwegian Nynorsk (nn)"), _("Panjabi (pa)"),
1060         _("Polish (pl)"), _("Portuguese (pt)"), _("Portuguese/Brazil (pt_BR)"), _("Romanian (ro)"), _("Russian (ru)"),
1061         _("Serbian (sr)"), _("Serbian in Latin script (sr@latin)"), _("Slovak (sk)"), _("Slovenian (sl)"),  _("Spanish (es)"), _("Spanish/Mexico (es_MX)"),
1062         _("Swedish (sv)"), _("Thai (th)"), _("Turkish (tr)"), _("Ukrainian (uk)"), _("Vietnamese (vi)")};
1063     Glib::ustring langValues[] = {"", "sq", "am", "ar", "hy", "az", "eu", "be", "bg", "bn", "br", "ca", "ca@valencia", "zh_CN", "zh_TW", "hr", "cs", "da", "nl",
1064         "dz", "de", "el", "en", "en_AU", "en_CA", "en_GB", "en_US@piglatin", "eo", "et", "fi", "fr", "ga",
1065         "gl", "he", "hu", "id", "it", "ja", "km", "rw", "ko", "lt", "mk", "mn", "ne", "nb", "nn", "pa",
1066         "pl", "pt", "pt_BR", "ro", "ru", "sr", "sr@latin", "sk", "sl", "es", "es_MX", "sv", "th", "tr", "uk", "vi" };
1068     _ui_languages.init( "/ui/language", languages, langValues, G_N_ELEMENTS(languages), languages[0]);
1069     _page_ui.add_line( false, _("Language (requires restart):"), _ui_languages, "",
1070                               _("Set the language for menus and number formats"), false);
1072      Glib::ustring sizeLabels[] = {_("Large"), _("Small"), _("Smaller")};
1073     int sizeValues[] = {0, 1, 2};
1075     _misc_small_tools.init( "/toolbox/tools/small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
1076     _page_ui.add_line( false, _("Toolbox icon size"), _misc_small_tools, "",
1077                               _("Set the size for the tool icons (requires restart)"), false);
1079     _misc_small_toolbar.init( "/toolbox/small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
1080     _page_ui.add_line( false, _("Control bar icon size"), _misc_small_toolbar, "",
1081                               _("Set the size for the icons in tools' control bars to use (requires restart)"), false);
1083     _misc_small_secondary.init( "/toolbox/secondary", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 1 );
1084     _page_ui.add_line( false, _("Secondary toolbar icon size"), _misc_small_secondary, "",
1085                               _("Set the size for the icons in secondary toolbars to use (requires restart)"), false);
1088     _ui_colorsliders_top.init( _("Work-around color sliders not drawing."), "/options/workarounds/colorsontop", false);
1089     _page_ui.add_line( false, "", _ui_colorsliders_top, "",
1090                        _("When on, will attempt to work around bugs in certain GTK themes drawing color sliders."), true);
1093     _misc_recent.init("/options/maxrecentdocuments/value", 0.0, 1000.0, 1.0, 1.0, 1.0, true, false);
1095     Gtk::HBox* recent_hbox = Gtk::manage(new Gtk::HBox());
1096     Gtk::Button* reset_recent = Gtk::manage(new Gtk::Button(_("Clear list")));
1097     reset_recent->signal_clicked().connect(sigc::mem_fun(*this, &InkscapePreferences::on_reset_open_recent_clicked));
1098     recent_hbox->pack_start(_misc_recent, false, false);
1099     recent_hbox->pack_start(*reset_recent, false, false);
1101     _page_ui.add_line( false, _("Maximum documents in Open Recent:"), *recent_hbox, "",
1102                               _("Set the maximum length of the Open Recent list in the File menu, or clear the list"), false);
1104     _ui_zoom_correction.init(300, 30, 1.00, 200.0, 1.0, 10.0, 1.0);
1105     _page_ui.add_line( false, _("Zoom correction factor (in %):"), _ui_zoom_correction, "",
1106                               _("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);
1108     this->AddPage(_page_ui, _("Interface"), PREFS_PAGE_UI);
1112 void InkscapePreferences::initPageSave()
1114     _save_use_current_dir.init( _("Use current directory for \"Save As ...\""), "/dialogs/save_as/use_current_dir", true);
1115     _page_save.add_line( false, "", _save_use_current_dir, "",
1116                          _("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);
1119     // Autosave options
1120     _save_autosave_enable.init( _("Enable autosave (requires restart)"), "/options/autosave/enable", false);
1121     _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);
1122     _save_autosave_interval.init("/options/autosave/interval", 1.0, 10800.0, 1.0, 10.0, 10.0, true, false);
1123     _page_save.add_line(true, _("Interval (in minutes):"), _save_autosave_interval, "", _("Interval (in minutes) at which document will be autosaved"), false);
1124     _save_autosave_path.init("/options/autosave/path", true);
1125     //TRANSLATORS: only translate "string" in "context|string".
1126     // For more details, see http://developer.gnome.org/doc/API/2.0/glib/glib-I18N.html#Q-:CAPS
1127     _page_save.add_line(true, Q_("filesystem|Path:"), _save_autosave_path, "", _("The directory where autosaves will be written"), false);
1128     _save_autosave_max.init("/options/autosave/max", 1.0, 100.0, 1.0, 10.0, 10.0, true, false);
1129     _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);
1131     /* When changing the interval or enabling/disabling the autosave function,
1132      * update our running configuration
1133      *
1134      * FIXME!
1135      * the inkscape_autosave_init should be called AFTER the values have been changed
1136      * (which cannot be guaranteed from here) - use a PrefObserver somewhere
1137      */
1138     /*
1139     _autosave_autosave_enable.signal_toggled().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1140     _autosave_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1141     */
1143     // -----------
1145     this->AddPage(_page_save, _("Save"), PREFS_PAGE_SAVE);
1148 void InkscapePreferences::initPageBitmaps()
1150     {
1151         Glib::ustring labels[] = {_("None"), _("2x2"), _("4x4"), _("8x8"), _("16x16")};
1152         int values[] = {0, 1, 2, 3, 4};
1153         _misc_overs_bitmap.set_size_request(_sb_width);
1154         _misc_overs_bitmap.init("/options/bitmapoversample/value", labels, values, G_N_ELEMENTS(values), 1);
1155         _page_bitmaps.add_line( false, _("Oversample bitmaps:"), _misc_overs_bitmap, "", "", false);
1156     }
1158     _misc_bitmap_autoreload.init(_("Automatically reload bitmaps"), "/options/bitmapautoreload/value", true);
1159     _page_bitmaps.add_line( false, "", _misc_bitmap_autoreload, "",
1160                            _("Automatically reload linked images when file is changed on disk"));
1161     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1162     Glib::ustring choices = prefs->getString("/options/bitmapeditor/choices");
1163     if (!choices.empty()) {
1164         gchar** splits = g_strsplit(choices.data(), ",", 0);
1165         gint numIems = g_strv_length(splits);
1167         Glib::ustring labels[numIems];
1168         int values[numIems];
1169         for ( gint i = 0; i < numIems; i++) {
1170             values[i] = i;
1171             labels[i] = splits[i];
1172         }
1173         _misc_bitmap_editor.init("/options/bitmapeditor/value", labels, values, numIems, 0);
1174         _page_bitmaps.add_line( false, _("Bitmap editor:"), _misc_bitmap_editor, "", "", false);
1176         g_strfreev(splits);
1177     }
1179     _bitmap_copy_res.init("/options/createbitmap/resolution", 1.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
1180     _page_bitmaps.add_line( false, _("Resolution for Create Bitmap Copy:"), _bitmap_copy_res, _("dpi"),
1181                             _("Resolution used by the Create Bitmap Copy command"), false);
1183     this->AddPage(_page_bitmaps, _("Bitmaps"), PREFS_PAGE_BITMAPS);
1187 void InkscapePreferences::initPageSpellcheck()
1189 #ifdef HAVE_ASPELL
1191     std::vector<Glib::ustring> languages;
1192     std::vector<Glib::ustring> langValues;
1194   AspellConfig *config = new_aspell_config();
1196 #ifdef WIN32
1197     // on windows, dictionaries are in a lib/aspell-0.60 subdir off inkscape's executable dir;
1198     // this is some black magick to find out the executable path to give it to aspell
1199     char exeName[MAX_PATH+1];
1200     GetModuleFileName(NULL, exeName, MAX_PATH);
1201     char *slashPos = strrchr(exeName, '\\');
1202     if (slashPos)
1203         *slashPos = '\0';
1204     g_print ("%s\n", exeName);
1205     aspell_config_replace(config, "prefix", exeName);
1206 #endif
1208   /* the returned pointer should _not_ need to be deleted */
1209   AspellDictInfoList *dlist = get_aspell_dict_info_list(config);
1211   /* config is no longer needed */
1212   delete_aspell_config(config);
1214   AspellDictInfoEnumeration *dels = aspell_dict_info_list_elements(dlist);
1216   languages.push_back(Glib::ustring(_("None")));
1217   langValues.push_back(Glib::ustring(""));
1219   const AspellDictInfo *entry;
1220   int en_index = 0;
1221   int i = 0;
1222   while ( (entry = aspell_dict_info_enumeration_next(dels)) != 0)
1223   {
1224       languages.push_back(Glib::ustring(entry->name));
1225       langValues.push_back(Glib::ustring(entry->name));
1226       if (!strcmp (entry->name, "en"))
1227           en_index = i;
1228       i ++;
1229   }
1231   delete_aspell_dict_info_enumeration(dels);
1234   _spell_language.init( "/dialogs/spellcheck/lang", &languages[0], &langValues[0], languages.size(), languages[en_index]);
1235     _page_spellcheck.add_line( false, _("Language:"), _spell_language, "",
1236                               _("Set the main spell check language"), false);
1238     _spell_language2.init( "/dialogs/spellcheck/lang2", &languages[0], &langValues[0], languages.size(), languages[0]);
1239     _page_spellcheck.add_line( false, _("Second language:"), _spell_language2, "",
1240                               _("Set the second spell check language; checking will only stop on words unknown in ALL chosen languages"), false);
1242     _spell_language3.init( "/dialogs/spellcheck/lang3", &languages[0], &langValues[0], languages.size(), languages[0]);
1243     _page_spellcheck.add_line( false, _("Third language:"), _spell_language3, "",
1244                               _("Set the third spell check language; checking will only stop on words unknown in ALL chosen languages"), false);
1246     _spell_ignorenumbers.init( _("Ignore words with digits"), "/dialogs/spellcheck/ignorenumbers", true);
1247     _page_spellcheck.add_line( false, "", _spell_ignorenumbers, "",
1248                            _("Ignore words containing digits, such as \"R2D2\""), true);
1250     _spell_ignoreallcaps.init( _("Ignore words in ALL CAPITALS"), "/dialogs/spellcheck/ignoreallcaps", false);
1251     _page_spellcheck.add_line( false, "", _spell_ignoreallcaps, "",
1252                            _("Ignore words in all capitals, such as \"IUPAC\""), true);
1254     this->AddPage(_page_spellcheck, _("Spellcheck"), PREFS_PAGE_SPELLCHECK);
1255 #endif
1258 static void appendList( Glib::ustring& tmp, const gchar* const*listing )
1260     bool first = true;
1261     for (const gchar* const* ptr = listing; *ptr; ptr++) {
1262         if (!first) {
1263             tmp += "  ";
1264         }
1265         first = false;
1266         tmp += *ptr;
1267         tmp += "\n";
1268     }
1271 void InkscapePreferences::initPageMisc()
1273     _misc_comment.init( _("Add label comments to printing output"), "/printing/debug/show-label-comments", false);
1274     _page_misc.add_line( false, "", _misc_comment, "",
1275                            _("When on, a comment will be added to the raw print output, marking the rendered output for an object with its label"), true);
1277     _misc_forkvectors.init( _("Prevent sharing of gradient definitions"), "/options/forkgradientvectors/value", true);
1278     _page_misc.add_line( false, "", _misc_forkvectors, "",
1279                            _("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);
1281     _misc_simpl.init("/options/simplifythreshold/value", 0.0001, 1.0, 0.0001, 0.0010, 0.0010, false, false);
1282     _page_misc.add_line( false, _("Simplification threshold:"), _misc_simpl, "",
1283                            _("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);
1285     _misc_latency_skew.init("/debug/latency/skew", 0.5, 2.0, 0.01, 0.10, 1.0, false, false);
1286     _page_misc.add_line( false, _("Latency skew:"), _misc_latency_skew, _("(requires restart)"),
1287                            _("Factor by which the event clock is skewed from the actual time (0.9766 on some systems)."), false);
1289     _misc_namedicon_delay.init( _("Pre-render named icons"), "/options/iconrender/named_nodelay", false);
1290     _page_misc.add_line( false, "", _misc_namedicon_delay, "",
1291                            _("When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification"), true);
1294     {
1295         Glib::ustring tmp;
1296         // TRANSLATORS: following strings are paths in Inkscape preferences - Misc - System info
1297         tmp += _("User config: ");
1298         tmp += g_get_user_config_dir();
1299         tmp += "\n";
1301         tmp += _("User data: ");
1302         tmp += g_get_user_data_dir();
1303         tmp += "\n";
1305         tmp += _("User cache: ");
1306         tmp += g_get_user_cache_dir();
1307         tmp += "\n";
1309         tmp += _("System config: ");
1310         appendList( tmp, g_get_system_config_dirs() );
1312         tmp += _("System data: ");
1313         appendList( tmp, g_get_system_data_dirs() );
1315         tmp += _("PIXMAP: ");
1316         tmp += INKSCAPE_PIXMAPDIR;
1317         tmp += "\n";
1319         tmp += _("DATA: ");
1320         tmp += INKSCAPE_DATADIR;
1321         tmp += "\n";
1323         tmp += _("UI: ");
1324         tmp += INKSCAPE_UIDIR;
1325         tmp += "\n";
1327         {
1328             gchar** paths = 0;
1329             gint count = 0;
1330             gtk_icon_theme_get_search_path(gtk_icon_theme_get_default(), &paths, &count);
1331             if (count > 0) {
1332                 tmp += _("Icon theme: ");
1333                 tmp += paths[0];
1334                 tmp += "\n";
1335                 for (int i = 1; i < count; i++) {
1336                     tmp += "  ";
1337                     tmp += paths[i];
1338                     tmp += "\n";
1339                 }
1340             }
1341         }
1343         _misc_info.get_buffer()->insert(_misc_info.get_buffer()->end(), tmp);
1344     }
1345     _misc_info.set_editable(false);
1346     _misc_info_scroll.add(_misc_info);
1347     _page_misc.add_line( false, _("System info"), _misc_info_scroll, "", _("General system information"), true);
1349     this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC);
1352 bool InkscapePreferences::SetMaxDialogSize(const Gtk::TreeModel::iterator& iter)
1354     Gtk::TreeModel::Row row = *iter;
1355     DialogPage* page = row[_page_list_columns._col_page];
1356     _page_frame.add(*page);
1357     this->show_all_children();
1358     Gtk:: Requisition sreq;
1359     this->size_request(sreq);
1360     _max_dialog_width=std::max(_max_dialog_width, sreq.width);
1361     _max_dialog_height=std::max(_max_dialog_height, sreq.height);
1362     _page_frame.remove();
1363     return false;
1366 bool InkscapePreferences::PresentPage(const Gtk::TreeModel::iterator& iter)
1368     Gtk::TreeModel::Row row = *iter;
1369     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1370     int desired_page = prefs->getInt("/dialogs/preferences/page", 0);
1371     if (desired_page == row[_page_list_columns._col_id])
1372     {
1373         if (desired_page >= PREFS_PAGE_TOOLS && desired_page <= PREFS_PAGE_TOOLS_DROPPER)
1374             _page_list.expand_row(_path_tools, false);
1375         if (desired_page >= PREFS_PAGE_TOOLS_SHAPES && desired_page <= PREFS_PAGE_TOOLS_SHAPES_SPIRAL)
1376             _page_list.expand_row(_path_shapes, false);
1377         _page_list.get_selection()->select(iter);
1378         return true;
1379     }
1380     return false;
1383 void InkscapePreferences::on_reset_open_recent_clicked()
1385     GtkRecentManager* manager = gtk_recent_manager_get_default();
1386     GList* recent_list = gtk_recent_manager_get_items(manager);
1387     GList* element;
1388     GError* error;
1390     //Remove only elements that were added by Inkscape
1391     for (element = g_list_first(recent_list); element; element = g_list_next(element)){
1392         error = NULL;
1393         GtkRecentInfo* info = (GtkRecentInfo*) element->data;
1394         if (gtk_recent_info_has_application(info, g_get_prgname())){
1395             gtk_recent_manager_remove_item(manager, gtk_recent_info_get_uri(info), &error);
1396         }
1397         gtk_recent_info_unref (info);
1398     }
1399     g_list_free(recent_list);
1402 void InkscapePreferences::on_pagelist_selection_changed()
1404     // show new selection
1405     Glib::RefPtr<Gtk::TreeSelection> selection = _page_list.get_selection();
1406     Gtk::TreeModel::iterator iter = selection->get_selected();
1407     if(iter)
1408     {
1409         if (_current_page)
1410             _page_frame.remove();
1411         Gtk::TreeModel::Row row = *iter;
1412         _current_page = row[_page_list_columns._col_page];
1413         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1414         prefs->setInt("/dialogs/preferences/page", row[_page_list_columns._col_id]);
1415         _page_title.set_markup("<span size='large'><b>" + row[_page_list_columns._col_name] + "</b></span>");
1416         _page_frame.add(*_current_page);
1417         _current_page->show();
1418         while (Gtk::Main::events_pending())
1419         {
1420             Gtk::Main::iteration();
1421         }
1422         this->show_all_children();
1423     }
1426 void InkscapePreferences::_presentPages()
1428     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::PresentPage));
1431 } // namespace Dialog
1432 } // namespace UI
1433 } // namespace Inkscape
1435 /*
1436   Local Variables:
1437   mode:c++
1438   c-file-style:"stroustrup"
1439   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
1440   indent-tabs-mode:nil
1441   fill-column:99
1442   End:
1443 */
1444 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :