Code

0d97c0b778e80cdb8d92715f9cf296c5e03e3da3
[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 "preferences.h"
25 #include "inkscape-preferences.h"
26 #include "verbs.h"
27 #include "selcue.h"
28 #include "unit-constants.h"
29 #include <iostream>
30 #include "enums.h"
31 // #include "inkscape.h"
32 #include "desktop-handles.h"
33 #include "message-stack.h"
34 #include "style.h"
35 #include "selection.h"
36 #include "selection-chemistry.h"
37 #include "xml/repr.h"
38 #include "ui/widget/style-swatch.h"
39 #include "display/nr-filter-gaussian.h"
40 #include "display/nr-filter-types.h"
41 #include "color-profile-fns.h"
42 #include "color-profile.h"
43 #include "display/canvas-grid.h"
45 namespace Inkscape {
46 namespace UI {
47 namespace Dialog {
49 InkscapePreferences::InkscapePreferences()
50     : UI::Widget::Panel ("", "/dialogs/preferences", SP_VERB_DIALOG_DISPLAY),
51       _max_dialog_width(0),
52       _max_dialog_height(0),
53       _current_page(0)
54 {
55     //get the width of a spinbutton
56     Gtk::SpinButton* sb = new Gtk::SpinButton;
57     sb->set_width_chars(6);
58     _getContents()->add(*sb);
59     show_all_children();
60     Gtk::Requisition sreq;
61     sb->size_request(sreq);
62     _sb_width = sreq.width;
63     _getContents()->remove(*sb);
64     delete sb;
66     //Main HBox
67     Gtk::HBox* hbox_list_page = Gtk::manage(new Gtk::HBox());
68     hbox_list_page->set_border_width(12);
69     hbox_list_page->set_spacing(12);
70     _getContents()->add(*hbox_list_page);
72     //Pagelist
73     Gtk::Frame* list_frame = Gtk::manage(new Gtk::Frame());
74     Gtk::ScrolledWindow* scrolled_window = Gtk::manage(new Gtk::ScrolledWindow());
75     hbox_list_page->pack_start(*list_frame, false, true, 0);
76     _page_list.set_headers_visible(false);
77     scrolled_window->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
78     scrolled_window->add(_page_list);
79     list_frame->set_shadow_type(Gtk::SHADOW_IN);
80     list_frame->add(*scrolled_window);
81     _page_list_model = Gtk::TreeStore::create(_page_list_columns);
82     _page_list.set_model(_page_list_model);
83     _page_list.append_column("name",_page_list_columns._col_name);
84     Glib::RefPtr<Gtk::TreeSelection> page_list_selection = _page_list.get_selection();
85     page_list_selection->signal_changed().connect(sigc::mem_fun(*this, &InkscapePreferences::on_pagelist_selection_changed));
86     page_list_selection->set_mode(Gtk::SELECTION_BROWSE);
88     //Pages
89     Gtk::VBox* vbox_page = Gtk::manage(new Gtk::VBox());
90     Gtk::Frame* title_frame = Gtk::manage(new Gtk::Frame());
92     Gtk::ScrolledWindow* pageScroller = Gtk::manage(new Gtk::ScrolledWindow());
93     pageScroller->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
94     pageScroller->add(*vbox_page);
95     hbox_list_page->pack_start(*pageScroller, true, true, 0);
97     title_frame->add(_page_title);
98     vbox_page->pack_start(*title_frame, false, false, 0);
99     vbox_page->pack_start(_page_frame, true, true, 0);
100     _page_frame.set_shadow_type(Gtk::SHADOW_IN);
101     title_frame->set_shadow_type(Gtk::SHADOW_IN);
103     initPageTools();
104     initPageSelecting();
105     initPageTransforms();
106     initPageClones();
107     initPageMasks();
108     initPageFilters();
109     initPageBitmaps();
110     initPageCMS();
111     initPageGrids();
112     initPageSVGOutput();
113     initPageAutosave();
114     initPageImportExport();
115     initPageUI();
116     initPageMouse();
117     initPageScrolling();
118     initPageSnapping();
119     initPageSteps();
120     initPageWindows();
121     initPageMisc();
122     
123     signalPresent().connect(sigc::mem_fun(*this, &InkscapePreferences::_presentPages));
125     //calculate the size request for this dialog
126     this->show_all_children();
127     _page_list.expand_all();
128     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::SetMaxDialogSize));
129     _getContents()->set_size_request(_max_dialog_width, _max_dialog_height);
130     _page_list.collapse_all();
133 InkscapePreferences::~InkscapePreferences()
137 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, int id)
139     return AddPage(p, title, Gtk::TreeModel::iterator() , id);
142 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id)
144     Gtk::TreeModel::iterator iter;
145     if (parent)
146        iter = _page_list_model->append((*parent).children());
147     else
148        iter = _page_list_model->append();
149     Gtk::TreeModel::Row row = *iter;
150     row[_page_list_columns._col_name] = title;
151     row[_page_list_columns._col_id] = id;
152     row[_page_list_columns._col_page] = &p;
153     return iter;
156 void InkscapePreferences::initPageMouse()
158     this->AddPage(_page_mouse, _("Mouse"), PREFS_PAGE_MOUSE);
159     _mouse_sens.init ( "/options/cursortolerance/value", 0.0, 30.0, 1.0, 1.0, 8.0, true, false);
160     _page_mouse.add_line( false, _("Grab sensitivity:"), _mouse_sens, _("pixels"),
161                            _("How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)"), false);
162     _mouse_thres.init ( "/options/dragtolerance/value", 0.0, 20.0, 1.0, 1.0, 4.0, true, false);
163     _page_mouse.add_line( false, _("Click/drag threshold:"), _mouse_thres, _("pixels"),
164                            _("Maximum mouse drag (in screen pixels) which is considered a click, not a drag"), false);
166     _mouse_use_ext_input.init( _("Use pressure-sensitive tablet (requires restart)"), "/options/useextinput/value", true);
167     _page_mouse.add_line(true, "",_mouse_use_ext_input, "",
168                         _("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)"));
170     _mouse_switch_on_ext_input.init( _("Switch tool based on tablet device (requires restart)"), "/options/switchonextinput/value", false);
171     _page_mouse.add_line(true, "",_mouse_switch_on_ext_input, "",
172                         _("Change tool as different devices are used on the tablet (pen, eraser, mouse)"));
175 void InkscapePreferences::initPageScrolling()
177     this->AddPage(_page_scrolling, _("Scrolling"), PREFS_PAGE_SCROLLING);
178     _scroll_wheel.init ( "/options/wheelscroll/value", 0.0, 1000.0, 1.0, 1.0, 40.0, true, false);
179     _page_scrolling.add_line( false, _("Mouse wheel scrolls by:"), _scroll_wheel, _("pixels"),
180                            _("One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)"), false);
181     _page_scrolling.add_group_header( _("Ctrl+arrows"));
182     _scroll_arrow_px.init ( "/options/keyscroll/value", 0.0, 1000.0, 1.0, 1.0, 10.0, true, false);
183     _page_scrolling.add_line( true, _("Scroll by:"), _scroll_arrow_px, _("pixels"),
184                            _("Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)"), false);
185     _scroll_arrow_acc.init ( "/options/scrollingacceleration/value", 0.0, 5.0, 0.01, 1.0, 0.35, false, false);
186     _page_scrolling.add_line( true, _("Acceleration:"), _scroll_arrow_acc, "",
187                            _("Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)"), false);
188     _page_scrolling.add_group_header( _("Autoscrolling"));
189     _scroll_auto_speed.init ( "/options/autoscrollspeed/value", 0.0, 5.0, 0.01, 1.0, 0.7, false, false);
190     _page_scrolling.add_line( true, _("Speed:"), _scroll_auto_speed, "",
191                            _("How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)"), false);
192     _scroll_auto_thres.init ( "/options/autoscrolldistance/value", -600.0, 600.0, 1.0, 1.0, -10.0, true, false);
193     _page_scrolling.add_line( true, _("Threshold:"), _scroll_auto_thres, _("pixels"),
194                            _("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);
195     _scroll_space.init ( _("Left mouse button pans when Space is pressed"), "/options/spacepans/value", false);
196     _page_scrolling.add_line( false, "", _scroll_space, "",
197                             _("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)."));
198     _wheel_zoom.init ( _("Mouse wheel zooms by default"), "/options/wheelzooms/value", false);
199     _page_scrolling.add_line( false, "", _wheel_zoom, "",
200                             _("When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl."));
203 void InkscapePreferences::initPageSnapping()
205         
206         _snap_indicator.init( _("Enable snap indicator"), "/options/snapindicator/value", true);
207         _page_snapping.add_line( false, "", _snap_indicator, "",
208                         _("After snapping, a symbol is drawn at the point that has snapped"));
209             
210         _snap_delay.init("/options/snapdelay/value", 0, 1000, 50, 100, 300, 0);
211         _page_snapping.add_line( false, _("Delay (in msec):"), _snap_delay, "",
212                         _("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);
213         
214         _snap_closest_only.init( _("Only snap the node closest to the pointer"), "/options/snapclosestonly/value", false);
215         _page_snapping.add_line( false, "", _snap_closest_only, "",
216         _("Only try to snap the node that is initialy closest to the mouse pointer"));
217         
218         _snap_weight.init("/options/snapweight/value", 0, 1, 0.1, 0.2, 0.5, 1);
219         _page_snapping.add_line( false, _("Weight factor:"), _snap_weight, "",
220                         _("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);
221         
222         this->AddPage(_page_snapping, _("Snapping"), PREFS_PAGE_SNAPPING);
225 void InkscapePreferences::initPageSteps()
227     this->AddPage(_page_steps, _("Steps"), PREFS_PAGE_STEPS);
229     _steps_arrow.init ( "/options/nudgedistance/value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
230     //nudgedistance is limited to 1000 in select-context.cpp: use the same limit here
231     _page_steps.add_line( false, _("Arrow keys move by:"), _steps_arrow, _("px"),
232                           _("Pressing an arrow key moves selected object(s) or node(s) by this distance (in px units)"), false);
233     _steps_scale.init ( "/options/defaultscale/value", 0.0, 1000.0, 0.01, 1.0, 2.0, false, false);
234     //defaultscale is limited to 1000 in select-context.cpp: use the same limit here
235     _page_steps.add_line( false, _("> and < scale by:"), _steps_scale, _("px"),
236                           _("Pressing > or < scales selection up or down by this increment (in px units)"), false);
237     _steps_inset.init ( "/options/defaultoffsetwidth/value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
238     _page_steps.add_line( false, _("Inset/Outset by:"), _steps_inset, _("px"),
239                           _("Inset and Outset commands displace the path by this distance (in px units)"), false);
240     _steps_compass.init ( _("Compass-like display of angles"), "/options/compassangledisplay/value", true);
241     _page_steps.add_line( false, "", _steps_compass, "",
242                             _("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"));
243     int const num_items = 17;
244     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")};
245     int values[num_items] = {2, 3, 4, 5, 6, 8, 10, 12, 15, 18, 24, 30, 60, 90, 180, 360, 0};
246     _steps_rot_snap.set_size_request(_sb_width);
247     _steps_rot_snap.init("/options/rotationsnapsperpi/value", labels, values, num_items, 12);
248     _page_steps.add_line( false, _("Rotation snaps every:"), _steps_rot_snap, _("degrees"),
249                            _("Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount"), false);
250     _steps_zoom.init ( "/options/zoomincrement/value", 101.0, 500.0, 1.0, 1.0, 1.414213562, true, true);
251     _page_steps.add_line( false, _("Zoom in/out by:"), _steps_zoom, _("%"),
252                           _("Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier"), false);
255 void InkscapePreferences::AddSelcueCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
257     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
258     cb->init ( _("Show selection cue"), prefs_path + "/selcue", def_value);
259     p.add_line( false, "", *cb, "", _("Whether selected objects display a selection cue (the same as in selector)"));
262 void InkscapePreferences::AddGradientCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
264     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
265     cb->init ( _("Enable gradient editing"), prefs_path + "/gradientdrag", def_value);
266     p.add_line( false, "", *cb, "", _("Whether selected objects display gradient editing controls"));
269 void InkscapePreferences::AddConvertGuidesCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value) {
270     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
271     cb->init ( _("Conversion to guides uses edges instead of bounding box"), prefs_path + "/convertguides", def_value);
272     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."));
275 void InkscapePreferences::AddDotSizeSpinbutton(DialogPage &p, Glib::ustring const &prefs_path, double def_value)
277     PrefSpinButton* sb = Gtk::manage( new PrefSpinButton);
278     sb->init ( prefs_path + "/dot-size", 0.0, 1000.0, 0.1, 10.0, def_value, false, false);
279     p.add_line( false, _("Ctrl+click dot size:"), *sb, _("times current stroke width"),
280                        _("Size of dots created with Ctrl+click (relative to current stroke width)"),
281                        false );
285 void StyleFromSelectionToTool(Glib::ustring const &prefs_path, StyleSwatch *swatch)
287     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
288     if (desktop == NULL)
289         return;
291     Inkscape::Selection *selection = sp_desktop_selection(desktop);
293     if (selection->isEmpty()) {
294         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
295                                        _("<b>No objects selected</b> to take the style from."));
296         return;
297     }
298     SPItem *item = selection->singleItem();
299     if (!item) {
300         /* TODO: If each item in the selection has the same style then don't consider it an error.
301          * Maybe we should try to handle multiple selections anyway, e.g. the intersection of the
302          * style attributes for the selected items. */
303         sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE,
304                                        _("<b>More than one object selected.</b>  Cannot take style from multiple objects."));
305         return;
306     }
308     SPCSSAttr *css = take_style_from_item (item);
310     if (!css) return;
312     // only store text style for the text tool
313     if (prefs_path == "/tools/text") {
314         css = sp_css_attr_unset_text (css);
315     }
317     // we cannot store properties with uris - they will be invalid in other documents
318     css = sp_css_attr_unset_uris (css);
320     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
321     prefs->setStyle(prefs_path + "/style", css);
322     sp_repr_css_attr_unref (css);
324     // update the swatch
325     if (swatch) {
326         SPCSSAttr *css = prefs->getInheritedStyle(prefs_path + "/style");
327         swatch->setStyle (css);
328         sp_repr_css_attr_unref(css);
329     }
332 void InkscapePreferences::AddNewObjectsStyle(DialogPage &p, Glib::ustring const &prefs_path, const gchar *banner)
334     if (banner)
335         p.add_group_header(banner);
336     else
337         p.add_group_header( _("Create new objects with:"));
338     PrefRadioButton* current = Gtk::manage( new PrefRadioButton);
339     current->init ( _("Last used style"), prefs_path + "/usecurrent", 1, true, 0);
340     p.add_line( true, "", *current, "",
341                 _("Apply the style you last set on an object"));
343     PrefRadioButton* own = Gtk::manage( new PrefRadioButton);
344     Gtk::HBox* hb = Gtk::manage( new Gtk::HBox);
345     Gtk::Alignment* align = Gtk::manage( new Gtk::Alignment);
346     own->init ( _("This tool's own style:"), prefs_path + "/usecurrent", 0, false, current);
347     align->set(0,0,0,0);
348     align->add(*own);
349     hb->add(*align);
350     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."));
351     p.add_line( true, "", *hb, "", "");
353     // style swatch
354     Gtk::Button* button = Gtk::manage( new Gtk::Button(_("Take from selection"),true));
355     StyleSwatch *swatch = 0;
356     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
357     
358     SPCSSAttr *css = prefs->getStyle(prefs_path + "/style");
359     swatch = new StyleSwatch(css, _("This tool's style of new objects"));
360     hb->add(*swatch);
361     sp_repr_css_attr_unref(css);
363     button->signal_clicked().connect( sigc::bind( sigc::ptr_fun(StyleFromSelectionToTool), prefs_path, swatch)  );
364     own->changed_signal.connect( sigc::mem_fun(*button, &Gtk::Button::set_sensitive) );
365     p.add_line( true, "", *button, "",
366                 _("Remember the style of the (first) selected object as this tool's style"));
369 void InkscapePreferences::initPageTools()
371     Gtk::TreeModel::iterator iter_tools = this->AddPage(_page_tools, _("Tools"), PREFS_PAGE_TOOLS);
372     _path_tools = _page_list.get_model()->get_path(iter_tools);
374     _page_tools.add_group_header( _("Bounding box to use:"));
375     _t_bbox_visual.init ( _("Visual bounding box"), "/tools/bounding_box", 0, false, 0); // 0 means visual
376     _page_tools.add_line( true, "", _t_bbox_visual, "",
377                             _("This bounding box includes stroke width, markers, filter margins, etc."));
378     _t_bbox_geometric.init ( _("Geometric bounding box"), "/tools/bounding_box", 1, true, &_t_bbox_visual); // 1 means geometric
379     _page_tools.add_line( true, "", _t_bbox_geometric, "",
380                             _("This bounding box includes only the bare path"));
382     _page_tools.add_group_header( _("Conversion to guides:"));
383     _t_cvg_keep_objects.init ( _("Keep objects after conversion to guides"), "/tools/cvg_keep_objects", false);
384     _page_tools.add_line( true, "", _t_cvg_keep_objects, "",
385                             _("When converting an object to guides, don't delete the object after the conversion."));
386     _t_cvg_convert_whole_groups.init ( _("Treat groups as a single object"), "/tools/cvg_convert_whole_groups", false);
387     _page_tools.add_line( true, "", _t_cvg_convert_whole_groups, "",
388                             _("Treat groups as a single object during conversion to guides rather than converting each child separately."));
390     _pencil_average_all_sketches.init ( _("Average all sketches"), "/tools/freehand/pencil/average_all_sketches", false);
391     _calligrapy_use_abs_size.init ( _("Width is in absolute units"), "/tools/calligraphic/abs_width", false);
392     _calligrapy_keep_selected.init ( _("Select new path"), "/tools/calligraphic/keep_selected", true);
393     _connector_ignore_text.init( _("Don't attach connectors to text objects"), "/tools/connector/ignoretext", true);
395     //Selector
396     this->AddPage(_page_selector, _("Selector"), iter_tools, PREFS_PAGE_TOOLS_SELECTOR);
398     AddSelcueCheckbox(_page_selector, "/tools/select", false);
399     _page_selector.add_group_header( _("When transforming, show:"));
400     _t_sel_trans_obj.init ( _("Objects"), "/tools/select/show", "content", true, 0);
401     _page_selector.add_line( true, "", _t_sel_trans_obj, "",
402                             _("Show the actual objects when moving or transforming"));
403     _t_sel_trans_outl.init ( _("Box outline"), "/tools/select/show", "outline", false, &_t_sel_trans_obj);
404     _page_selector.add_line( true, "", _t_sel_trans_outl, "",
405                             _("Show only a box outline of the objects when moving or transforming"));
406     _page_selector.add_group_header( _("Per-object selection cue:"));
407     _t_sel_cue_none.init ( _("None"), "/options/selcue/value", Inkscape::SelCue::NONE, false, 0);
408     _page_selector.add_line( true, "", _t_sel_cue_none, "",
409                             _("No per-object selection indication"));
410     _t_sel_cue_mark.init ( _("Mark"), "/options/selcue/value", Inkscape::SelCue::MARK, true, &_t_sel_cue_none);
411     _page_selector.add_line( true, "", _t_sel_cue_mark, "",
412                             _("Each selected object has a diamond mark in the top left corner"));
413     _t_sel_cue_box.init ( _("Box"), "/options/selcue/value", Inkscape::SelCue::BBOX, false, &_t_sel_cue_none);
414     _page_selector.add_line( true, "", _t_sel_cue_box, "",
415                             _("Each selected object displays its bounding box"));
417     //Node
418     this->AddPage(_page_node, _("Node"), iter_tools, PREFS_PAGE_TOOLS_NODE);
419     AddSelcueCheckbox(_page_node, "/tools/nodes", true);
420     AddGradientCheckbox(_page_node, "/tools/nodes", true);
421     _page_node.add_group_header( _("Path outline:"));
422     _t_node_pathoutline_color.init(_("Path outline color"), "/tools/nodes/highlight_color", 0xff0000ff);
423     _page_node.add_line( false, _("Path outline color"), _t_node_pathoutline_color, "", _("Selects the color used for showing the path outline."), false);
424     _t_node_pathflash_enabled.init ( _("Path outline flash on mouse-over"), "/tools/nodes/pathflash_enabled", false);
425     _page_node.add_line( true, "", _t_node_pathflash_enabled, "", _("When hovering over a path, briefly flash its outline."));
426     _t_node_pathflash_timeout.init("/tools/nodes/pathflash_timeout", 0, 10000.0, 100.0, 100.0, 1000.0, true, false);
427     _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);
429     //Tweak
430     this->AddPage(_page_tweak, _("Tweak"), iter_tools, PREFS_PAGE_TOOLS_TWEAK);
431     this->AddNewObjectsStyle(_page_tweak, "/tools/tweak", _("Paint objects with:"));
432     AddSelcueCheckbox(_page_tweak, "/tools/tweak", true);
433     AddGradientCheckbox(_page_tweak, "/tools/tweak", false);
435     //Zoom
436     this->AddPage(_page_zoom, _("Zoom"), iter_tools, PREFS_PAGE_TOOLS_ZOOM);
437     AddSelcueCheckbox(_page_zoom, "/tools/zoom", true);
438     AddGradientCheckbox(_page_zoom, "/tools/zoom", false);
440     //Shapes
441     Gtk::TreeModel::iterator iter_shapes = this->AddPage(_page_shapes, _("Shapes"), iter_tools, PREFS_PAGE_TOOLS_SHAPES);
442     _path_shapes = _page_list.get_model()->get_path(iter_shapes);
443     this->AddSelcueCheckbox(_page_shapes, "/tools/shapes", true);
444     this->AddGradientCheckbox(_page_shapes, "/tools/shapes", true);
446     //Rectangle
447     this->AddPage(_page_rectangle, _("Rectangle"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_RECT);
448     this->AddNewObjectsStyle(_page_rectangle, "/tools/shapes/rect");
449     this->AddConvertGuidesCheckbox(_page_rectangle, "/tools/shapes/rect", true);
451     //3D box
452     this->AddPage(_page_3dbox, _("3D Box"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_3DBOX);
453     this->AddNewObjectsStyle(_page_3dbox, "/tools/shapes/3dbox");
454     this->AddConvertGuidesCheckbox(_page_3dbox, "/tools/shapes/3dbox", true);
456     //ellipse
457     this->AddPage(_page_ellipse, _("Ellipse"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
458     this->AddNewObjectsStyle(_page_ellipse, "/tools/shapes/arc");
460     //star
461     this->AddPage(_page_star, _("Star"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_STAR);
462     this->AddNewObjectsStyle(_page_star, "/tools/shapes/star");
464     //spiral
465     this->AddPage(_page_spiral, _("Spiral"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
466     this->AddNewObjectsStyle(_page_spiral, "/tools/shapes/spiral");
468     //Pencil
469     this->AddPage(_page_pencil, _("Pencil"), iter_tools, PREFS_PAGE_TOOLS_PENCIL);
470     this->AddSelcueCheckbox(_page_pencil, "/tools/freehand/pencil", true);
471     this->AddNewObjectsStyle(_page_pencil, "/tools/freehand/pencil");
472     this->AddDotSizeSpinbutton(_page_pencil, "/tools/freehand/pencil", 3.0);
473     _page_pencil.add_group_header( _("Sketch mode"));
474     _page_pencil.add_line( true, "", _pencil_average_all_sketches, "",
475                             _("If on, the sketch result will be the normal average of all sketches made, instead of averaging the old result with the new sketch."));
477     //Pen
478     this->AddPage(_page_pen, _("Pen"), iter_tools, PREFS_PAGE_TOOLS_PEN);
479     this->AddSelcueCheckbox(_page_pen, "/tools/freehand/pen", true);
480     this->AddNewObjectsStyle(_page_pen, "/tools/freehand/pen");
481     this->AddDotSizeSpinbutton(_page_pen, "/tools/freehand/pen", 3.0);
483     //Calligraphy
484     this->AddPage(_page_calligraphy, _("Calligraphy"), iter_tools, PREFS_PAGE_TOOLS_CALLIGRAPHY);
485     this->AddSelcueCheckbox(_page_calligraphy, "/tools/calligraphic", false);
486     this->AddNewObjectsStyle(_page_calligraphy, "/tools/calligraphic");
487     _page_calligraphy.add_line( false, "", _calligrapy_use_abs_size, "",
488                             _("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"));
489     _page_calligraphy.add_line( false, "", _calligrapy_keep_selected, "",
490                             _("If on, each newly created object will be selected (deselecting previous selection)"));
491     //Paint Bucket
492     this->AddPage(_page_paintbucket, _("Paint Bucket"), iter_tools, PREFS_PAGE_TOOLS_PAINTBUCKET);
493     this->AddSelcueCheckbox(_page_paintbucket, "/tools/paintbucket", false);
494     this->AddNewObjectsStyle(_page_paintbucket, "/tools/paintbucket");
496     //Eraser
497     this->AddPage(_page_eraser, _("Eraser"), iter_tools, PREFS_PAGE_TOOLS_ERASER);
498     this->AddNewObjectsStyle(_page_eraser, "/tools/eraser");
500     //LPETool
501     this->AddPage(_page_lpetool, _("LPE Tool"), iter_tools, PREFS_PAGE_TOOLS_LPETOOL);
502     this->AddNewObjectsStyle(_page_lpetool, "/tools/lpetool");
504     //Text
505     this->AddPage(_page_text, _("Text"), iter_tools, PREFS_PAGE_TOOLS_TEXT);
506     this->AddSelcueCheckbox(_page_text, "/tools/text", true);
507     this->AddGradientCheckbox(_page_text, "/tools/text", true);
508     this->AddNewObjectsStyle(_page_text, "/tools/text");
510     //Gradient
511     this->AddPage(_page_gradient, _("Gradient"), iter_tools, PREFS_PAGE_TOOLS_GRADIENT);
512     this->AddSelcueCheckbox(_page_gradient, "/tools/gradient", true);
514     //Connector
515     this->AddPage(_page_connector, _("Connector"), iter_tools, PREFS_PAGE_TOOLS_CONNECTOR);
516     this->AddSelcueCheckbox(_page_connector, "/tools/connector", true);
517     _page_connector.add_line(false, "", _connector_ignore_text, "",
518             _("If on, connector attachment points will not be shown for text objects"));
519     //Dropper
520     this->AddPage(_page_dropper, _("Dropper"), iter_tools, PREFS_PAGE_TOOLS_DROPPER);
521     this->AddSelcueCheckbox(_page_dropper, "/tools/dropper", true);
522     this->AddGradientCheckbox(_page_dropper, "/tools/dropper", true);
525 void InkscapePreferences::initPageWindows()
527     _win_save_geom.init ( _("Save and restore window geometry for each document"), "/options/savewindowgeometry/value", 1, true, 0);
528     _win_save_geom_prefs.init ( _("Remember and use last window's geometry"), "/options/savewindowgeometry/value", 2, false, &_win_save_geom);
529     _win_save_geom_off.init ( _("Don't save window geometry"), "/options/savewindowgeometry/value", 0, false, &_win_save_geom);
531     _win_dockable.init ( _("Dockable"), "/options/dialogtype/value", 1, true, 0);
532     _win_floating.init ( _("Floating"), "/options/dialogtype/value", 0, false, &_win_dockable);
534     _win_hide_task.init ( _("Dialogs are hidden in taskbar"), "/options/dialogsskiptaskbar/value", true);
535     _win_zoom_resize.init ( _("Zoom when window is resized"), "/options/stickyzoom/value", false);
536     _win_show_close.init ( _("Show close button on dialogs"), "/dialogs/showclose", false);
537     _win_ontop_none.init ( _("None"), "/options/transientpolicy/value", 0, false, 0);
538     _win_ontop_normal.init ( _("Normal"), "/options/transientpolicy/value", 1, true, &_win_ontop_none);
539     _win_ontop_agressive.init ( _("Aggressive"), "/options/transientpolicy/value", 2, false, &_win_ontop_none);
541     _page_windows.add_group_header( _("Saving window geometry (size and position):"));
542     _page_windows.add_line( true, "", _win_save_geom_off, "",
543                             _("Let the window manager determine placement of all windows"));
544     _page_windows.add_line( true, "", _win_save_geom_prefs, "",
545                             _("Remember and use the last window's geometry (saves geometry to user preferences)"));
546     _page_windows.add_line( true, "", _win_save_geom, "",
547                             _("Save and restore window geometry for each document (saves geometry in the document)"));
549     _page_windows.add_group_header( _("Dialog behavior (requires restart):"));
550     _page_windows.add_line( true, "", _win_dockable, "",
551                             _("Dockable"));
552     _page_windows.add_line( true, "", _win_floating, "",
553                             _("Floating"));
555 #ifndef WIN32 // non-Win32 special code to enable transient dialogs
556     _page_windows.add_group_header( _("Dialogs on top:"));
558     _page_windows.add_line( true, "", _win_ontop_none, "",
559                             _("Dialogs are treated as regular windows"));
560     _page_windows.add_line( true, "", _win_ontop_normal, "",
561                             _("Dialogs stay on top of document windows"));
562     _page_windows.add_line( true, "", _win_ontop_agressive, "",
563                             _("Same as Normal but may work better with some window managers"));
564 #endif
566 #if GTK_VERSION_GE(2, 12)
567         _page_windows.add_group_header( _("Dialog Transparency:"));
568         _win_trans_focus.init("/dialogs/transparency/on-focus", 0.5, 1.0, 0.01, 0.1, 1.0, false, false);
569         _page_windows.add_line( true, _("Opacity when focused:"), _win_trans_focus, "", "");
570         _win_trans_blur.init("/dialogs/transparency/on-blur", 0.0, 1.0, 0.01, 0.1, 0.5, false, false);
571         _page_windows.add_line( true, _("Opacity when unfocused:"), _win_trans_blur, "", "");
572         _win_trans_time.init("/dialogs/transparency/animate-time", 0, 1000, 10, 100, 100, true, false);
573         _page_windows.add_line( true, _("Time of opacity change animation:"), _win_trans_time, "ms", "");
574 #endif
576     _page_windows.add_group_header( _("Miscellaneous:"));
577 #ifndef WIN32 // FIXME: Temporary Win32 special code to enable transient dialogs
578     _page_windows.add_line( false, "", _win_hide_task, "",
579                             _("Whether dialog windows are to be hidden in the window manager taskbar"));
580 #endif
581     _page_windows.add_line( false, "", _win_zoom_resize, "",
582                             _("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)"));
583     _page_windows.add_line( false, "", _win_show_close, "",
584                             _("Whether dialog windows have a close button (requires restart)"));
585     this->AddPage(_page_windows, _("Windows"), PREFS_PAGE_WINDOWS);
588 void InkscapePreferences::initPageClones()
590     _clone_option_parallel.init ( _("Move in parallel"), "/options/clonecompensation/value",
591                                   SP_CLONE_COMPENSATION_PARALLEL, true, 0);
592     _clone_option_stay.init ( _("Stay unmoved"), "/options/clonecompensation/value",
593                                   SP_CLONE_COMPENSATION_UNMOVED, false, &_clone_option_parallel);
594     _clone_option_transform.init ( _("Move according to transform"), "/options/clonecompensation/value",
595                                   SP_CLONE_COMPENSATION_NONE, false, &_clone_option_parallel);
596     _clone_option_unlink.init ( _("Are unlinked"), "/options/cloneorphans/value",
597                                   SP_CLONE_ORPHANS_UNLINK, true, 0);
598     _clone_option_delete.init ( _("Are deleted"), "/options/cloneorphans/value",
599                                   SP_CLONE_ORPHANS_DELETE, false, &_clone_option_unlink);
601     _page_clones.add_group_header( _("When the original moves, its clones and linked offsets:"));
602     _page_clones.add_line( true, "", _clone_option_parallel, "",
603                            _("Clones are translated by the same vector as their original."));
604     _page_clones.add_line( true, "", _clone_option_stay, "",
605                            _("Clones preserve their positions when their original is moved."));
606     _page_clones.add_line( true, "", _clone_option_transform, "",
607                            _("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."));
608     _page_clones.add_group_header( _("When the original is deleted, its clones:"));
609     _page_clones.add_line( true, "", _clone_option_unlink, "",
610                            _("Orphaned clones are converted to regular objects."));
611     _page_clones.add_line( true, "", _clone_option_delete, "",
612                            _("Orphaned clones are deleted along with their original."));
614     _page_clones.add_group_header( _("When duplicating original+clones:"));
616     _clone_relink_on_duplicate.init ( _("Relink duplicated clones"), "/options/relinkclonesonduplicate/value", false);
617     _page_clones.add_line(true, "", _clone_relink_on_duplicate, "",
618                         _("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"));
620     //TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page
621     this->AddPage(_page_clones, _("Clones"), PREFS_PAGE_CLONES);
624 void InkscapePreferences::initPageMasks()
626     _mask_mask_on_top.init ( _("When applying, use the topmost selected object as clippath/mask"), "/options/maskobject/topmost", true);
627     _page_mask.add_line(true, "", _mask_mask_on_top, "",
628                         _("Uncheck this to use the bottom selected object as the clipping path or mask"));
629     _mask_mask_remove.init ( _("Remove clippath/mask object after applying"), "/options/maskobject/remove", true);
630     _page_mask.add_line(true, "", _mask_mask_remove, "",
631                         _("After applying, remove the object used as the clipping path or mask from the drawing"));
632     this->AddPage(_page_mask, _("Clippaths and masks"), PREFS_PAGE_MASKS);
635 void InkscapePreferences::initPageTransforms()
637     _trans_scale_stroke.init ( _("Scale stroke width"), "/options/transform/stroke", true);
638     _trans_scale_corner.init ( _("Scale rounded corners in rectangles"), "/options/transform/rectcorners", false);
639     _trans_gradient.init ( _("Transform gradients"), "/options/transform/gradient", true);
640     _trans_pattern.init ( _("Transform patterns"), "/options/transform/pattern", false);
641     _trans_optimized.init ( _("Optimized"), "/options/preservetransform/value", 0, true, 0);
642     _trans_preserved.init ( _("Preserved"), "/options/preservetransform/value", 1, false, &_trans_optimized);
644     _page_transforms.add_line( false, "", _trans_scale_stroke, "",
645                                _("When scaling objects, scale the stroke width by the same proportion"));
646     _page_transforms.add_line( false, "", _trans_scale_corner, "",
647                                _("When scaling rectangles, scale the radii of rounded corners"));
648     _page_transforms.add_line( false, "", _trans_gradient, "",
649                                _("Move gradients (in fill or stroke) along with the objects"));
650     _page_transforms.add_line( false, "", _trans_pattern, "",
651                                _("Move patterns (in fill or stroke) along with the objects"));
652     _page_transforms.add_group_header( _("Store transformation:"));
653     _page_transforms.add_line( true, "", _trans_optimized, "",
654                                _("If possible, apply transformation to objects without adding a transform= attribute"));
655     _page_transforms.add_line( true, "", _trans_preserved, "",
656                                _("Always store transformation as a transform= attribute on objects"));
658     this->AddPage(_page_transforms, _("Transforms"), PREFS_PAGE_TRANSFORMS);
661 void InkscapePreferences::initPageFilters()
663     /* blur quality */
664     _blur_quality_best.init ( _("Best quality (slowest)"), "/options/blurquality/value",
665                                   BLUR_QUALITY_BEST, false, 0);
666     _blur_quality_better.init ( _("Better quality (slower)"), "/options/blurquality/value",
667                                   BLUR_QUALITY_BETTER, false, &_blur_quality_best);
668     _blur_quality_normal.init ( _("Average quality"), "/options/blurquality/value",
669                                   BLUR_QUALITY_NORMAL, true, &_blur_quality_best);
670     _blur_quality_worse.init ( _("Lower quality (faster)"), "/options/blurquality/value",
671                                   BLUR_QUALITY_WORSE, false, &_blur_quality_best);
672     _blur_quality_worst.init ( _("Lowest quality (fastest)"), "/options/blurquality/value",
673                                   BLUR_QUALITY_WORST, false, &_blur_quality_best);
675     _page_filters.add_group_header( _("Gaussian blur quality for display:"));
676     _page_filters.add_line( true, "", _blur_quality_best, "",
677                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
678     _page_filters.add_line( true, "", _blur_quality_better, "",
679                            _("Better quality, but slower display"));
680     _page_filters.add_line( true, "", _blur_quality_normal, "",
681                            _("Average quality, acceptable display speed"));
682     _page_filters.add_line( true, "", _blur_quality_worse, "",
683                            _("Lower quality (some artifacts), but display is faster"));
684     _page_filters.add_line( true, "", _blur_quality_worst, "",
685                            _("Lowest quality (considerable artifacts), but display is fastest"));
687     /* filter quality */
688     _filter_quality_best.init ( _("Best quality (slowest)"), "/options/filterquality/value",
689                                   Inkscape::Filters::FILTER_QUALITY_BEST, false, 0);
690     _filter_quality_better.init ( _("Better quality (slower)"), "/options/filterquality/value",
691                                   Inkscape::Filters::FILTER_QUALITY_BETTER, false, &_filter_quality_best);
692     _filter_quality_normal.init ( _("Average quality"), "/options/filterquality/value",
693                                   Inkscape::Filters::FILTER_QUALITY_NORMAL, true, &_filter_quality_best);
694     _filter_quality_worse.init ( _("Lower quality (faster)"), "/options/filterquality/value",
695                                   Inkscape::Filters::FILTER_QUALITY_WORSE, false, &_filter_quality_best);
696     _filter_quality_worst.init ( _("Lowest quality (fastest)"), "/options/filterquality/value",
697                                   Inkscape::Filters::FILTER_QUALITY_WORST, false, &_filter_quality_best);
699     _page_filters.add_group_header( _("Filter effects quality for display:"));
700     _page_filters.add_line( true, "", _filter_quality_best, "",
701                            _("Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)"));
702     _page_filters.add_line( true, "", _filter_quality_better, "",
703                            _("Better quality, but slower display"));
704     _page_filters.add_line( true, "", _filter_quality_normal, "",
705                            _("Average quality, acceptable display speed"));
706     _page_filters.add_line( true, "", _filter_quality_worse, "",
707                            _("Lower quality (some artifacts), but display is faster"));
708     _page_filters.add_line( true, "", _filter_quality_worst, "",
709                            _("Lowest quality (considerable artifacts), but display is fastest"));
711     /* show infobox */
712     _show_filters_info_box.init( _("Show filter primitives infobox"), "/options/showfiltersinfobox/value", true);
713     _page_filters.add_line(true, "", _show_filters_info_box, "",
714                         _("Show icons and descriptions for the filter primitives available at the filter effects dialog."));
716     this->AddPage(_page_filters, _("Filters"), PREFS_PAGE_FILTERS);
720 void InkscapePreferences::initPageSelecting()
722     _sel_all.init ( _("Select in all layers"), "/options/kbselection/inlayer", PREFS_SELECTION_ALL, false, 0);
723     _sel_current.init ( _("Select only within current layer"), "/options/kbselection/inlayer", PREFS_SELECTION_LAYER, true, &_sel_all);
724     _sel_recursive.init ( _("Select in current layer and sublayers"), "/options/kbselection/inlayer", PREFS_SELECTION_LAYER_RECURSIVE, false, &_sel_all);
725     _sel_hidden.init ( _("Ignore hidden objects and layers"), "/options/kbselection/onlyvisible", true);
726     _sel_locked.init ( _("Ignore locked objects and layers"), "/options/kbselection/onlysensitive", true);
727     _sel_layer_deselects.init ( _("Deselect upon layer change"), "/options/selection/layerdeselect", true);
729     _page_select.add_group_header( _("Ctrl+A, Tab, Shift+Tab:"));
730     _page_select.add_line( true, "", _sel_all, "",
731                            _("Make keyboard selection commands work on objects in all layers"));
732     _page_select.add_line( true, "", _sel_current, "",
733                            _("Make keyboard selection commands work on objects in current layer only"));
734     _page_select.add_line( true, "", _sel_recursive, "",
735                            _("Make keyboard selection commands work on objects in current layer and all its sublayers"));
736     _page_select.add_line( true, "", _sel_hidden, "",
737                            _("Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)"));
738     _page_select.add_line( true, "", _sel_locked, "",
739                            _("Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)"));
741     _page_select.add_line( false, "", _sel_layer_deselects, "",
742                            _("Uncheck this to be able to keep the current objects selected when the current layer changes"));
744     this->AddPage(_page_select, _("Selecting"), PREFS_PAGE_SELECTING);
748 void InkscapePreferences::initPageImportExport()
750     _importexport_export.init("/dialogs/export/defaultxdpi/value", 0.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
751     _page_importexport.add_line( false, _("Default export resolution:"), _importexport_export, _("dpi"),
752                             _("Default bitmap resolution (in dots per inch) in the Export dialog"), false);
753     _importexport_ocal_url.init("/options/ocalurl/str", true, g_strdup_printf("openclipart.org"));
754     _page_importexport.add_line( false, _("Open Clip Art Library Server Name:"), _importexport_ocal_url, "",
755         _("The server name of the Open Clip Art Library webdav server. It's used by the Import and Export to OCAL function."), true);
756     _importexport_ocal_username.init("/options/ocalusername/str", true);
757     _page_importexport.add_line( false, _("Open Clip Art Library Username:"), _importexport_ocal_username, "",
758             _("The username used to log into Open Clip Art Library."), true);
759     _importexport_ocal_password.init("/options/ocalpassword/str", false);
760     _page_importexport.add_line( false, _("Open Clip Art Library Password:"), _importexport_ocal_password, "",
761             _("The password used to log into Open Clip Art Library."), true);
763     this->AddPage(_page_importexport, _("Import/Export"), PREFS_PAGE_IMPORTEXPORT);
766 #if ENABLE_LCMS
767 static void profileComboChanged( Gtk::ComboBoxText* combo )
769     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
770     int rowNum = combo->get_active_row_number();
771     if ( rowNum < 1 ) {
772         prefs->setString("/options/displayprofile/uri", "");
773     } else {
774         Glib::ustring active = combo->get_active_text();
776         Glib::ustring path = get_path_for_profile(active);
777         if ( !path.empty() ) {
778             prefs->setString("/options/displayprofile/uri", path);
779         }
780     }
783 static void proofComboChanged( Gtk::ComboBoxText* combo )
785     Glib::ustring active = combo->get_active_text();
786     Glib::ustring path = get_path_for_profile(active);
787     
788     if ( !path.empty() ) {
789         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
790         prefs->setString("/options/softproof/uri", path);
791     }
794 static void gamutColorChanged( Gtk::ColorButton* btn ) {
795     Gdk::Color color = btn->get_color();
796     gushort r = color.get_red();
797     gushort g = color.get_green();
798     gushort b = color.get_blue();
800     gchar* tmp = g_strdup_printf("#%02x%02x%02x", (r >> 8), (g >> 8), (b >> 8) );
802     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
803     prefs->setString("/options/softproof/gamutcolor", tmp);
804     g_free(tmp);
806 #endif // ENABLE_LCMS
808 void InkscapePreferences::initPageCMS()
810     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
811     int const numIntents = 4;
812     /* TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm */
813     Glib::ustring intentLabels[numIntents] = {_("Perceptual"), _("Relative Colorimetric"), _("Saturation"), _("Absolute Colorimetric")};
814     int intentValues[numIntents] = {0, 1, 2, 3};
816 #if !ENABLE_LCMS
817     Gtk::Label* lbl = new Gtk::Label(_("(Note: Color management has been disabled in this build)"));
818     _page_cms.add_line( false, "", *lbl, "", "", true);
819 #endif // !ENABLE_LCMS
821     _page_cms.add_group_header( _("Display adjustment"));
823     Glib::ustring tmpStr;
824     std::list<Glib::ustring> sources = ColorProfile::getProfileDirs();
825     for ( std::list<Glib::ustring>::const_iterator it = sources.begin(); it != sources.end(); ++it ) {
826         gchar* part = g_strdup_printf( "\n%s", it->c_str() );
827         tmpStr += part;
828         g_free(part);
829     }
831     gchar* profileTip = g_strdup_printf(_("The ICC profile to use to calibrate display output.\nSearched directories:%s"), tmpStr.c_str());
832     _page_cms.add_line( false, _("Display profile:"), _cms_display_profile, "",
833                         profileTip, false);
834     g_free(profileTip);
835     profileTip = 0;
837     _cms_from_display.init( _("Retrieve profile from display"), "/options/displayprofile/from_display", false);
838     _page_cms.add_line( false, "", _cms_from_display, "",
839 #ifdef GDK_WINDOWING_X11
840                         _("Retrieve profiles from those attached to displays via XICC."), false);
841 #else
842                         _("Retrieve profiles from those attached to displays."), false);
843 #endif // GDK_WINDOWING_X11
846     _cms_intent.init("/options/displayprofile/intent", intentLabels, intentValues, numIntents, 0);
847     _page_cms.add_line( false, _("Display rendering intent:"), _cms_intent, "",
848                         _("The rendering intent to use to calibrate display output."), false);
850     _page_cms.add_group_header( _("Proofing"));
852     _cms_softproof.init( _("Simulate output on screen"), "/options/softproof/enable", false);
853     _page_cms.add_line( false, "", _cms_softproof, "",
854                         _("Simulates output of target device."), false);
856     _cms_gamutwarn.init( _("Mark out of gamut colors"), "/options/softproof/gamutwarn", false);
857     _page_cms.add_line( false, "", _cms_gamutwarn, "",
858                         _("Highlights colors that are out of gamut for the target device."), false);
860     Glib::ustring colorStr = prefs->getString("/options/softproof/gamutcolor");
861     Gdk::Color tmpColor( colorStr.empty() ? "#00ff00" : colorStr);
862     _cms_gamutcolor.set_color( tmpColor );
863     _page_cms.add_line( true, _("Out of gamut warning color:"), _cms_gamutcolor, "",
864                         _("Selects the color used for out of gamut warning."), false);
866     _page_cms.add_line( false, _("Device profile:"), _cms_proof_profile, "",
867                         _("The ICC profile to use to simulate device output."), false);
869     _cms_proof_intent.init("/options/softproof/intent", intentLabels, intentValues, numIntents, 0);
870     _page_cms.add_line( false, _("Device rendering intent:"), _cms_proof_intent, "",
871                         _("The rendering intent to use to calibrate display output."), false);
873     _cms_proof_blackpoint.init( _("Black point compensation"), "/options/softproof/bpc", false);
874     _page_cms.add_line( false, "", _cms_proof_blackpoint, "",
875                         _("Enables black point compensation."), false);
877     _cms_proof_preserveblack.init( _("Preserve black"), "/options/softproof/preserveblack", false);
878     _page_cms.add_line( false, "", _cms_proof_preserveblack,
879 #if defined(cmsFLAGS_PRESERVEBLACK)
880                         "",
881 #else
882                         _("(LittleCMS 1.15 or later required)"),
883 #endif // defined(cmsFLAGS_PRESERVEBLACK)
884                         _("Preserve K channel in CMYK -> CMYK transforms"), false);
886 #if !defined(cmsFLAGS_PRESERVEBLACK)
887     _cms_proof_preserveblack.set_sensitive( false );
888 #endif // !defined(cmsFLAGS_PRESERVEBLACK)
891 #if ENABLE_LCMS
892     {
893         std::vector<Glib::ustring> names = ::Inkscape::colorprofile_get_display_names();
894         Glib::ustring current = prefs->getString( "/options/displayprofile/uri" );
896         gint index = 0;
897         _cms_display_profile.append_text(_("<none>"));
898         index++;
899         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
900             _cms_display_profile.append_text( *it );
901             Glib::ustring path = get_path_for_profile(*it);
902             if ( !path.empty() && path == current ) {
903                 _cms_display_profile.set_active(index);
904             }
905             index++;
906         }
907         if ( current.empty() ) {
908             _cms_display_profile.set_active(0);
909         }
911         names = ::Inkscape::colorprofile_get_softproof_names();
912         current = prefs->getString("/options/softproof/uri");
913         index = 0;
914         for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
915             _cms_proof_profile.append_text( *it );
916             Glib::ustring path = get_path_for_profile(*it);
917             if ( !path.empty() && path == current ) {
918                 _cms_proof_profile.set_active(index);
919             }
920             index++;
921         }
922     }
924     _cms_gamutcolor.signal_color_set().connect( sigc::bind( sigc::ptr_fun(gamutColorChanged), &_cms_gamutcolor) );
926     _cms_display_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(profileComboChanged), &_cms_display_profile) );
927     _cms_proof_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(proofComboChanged), &_cms_proof_profile) );
928 #else
929     // disable it, but leave it visible
930     _cms_intent.set_sensitive( false );
931     _cms_display_profile.set_sensitive( false );
932     _cms_from_display.set_sensitive( false );
933     _cms_softproof.set_sensitive( false );
934     _cms_gamutwarn.set_sensitive( false );
935     _cms_gamutcolor.set_sensitive( false );
936     _cms_proof_intent.set_sensitive( false );
937     _cms_proof_profile.set_sensitive( false );
938     _cms_proof_blackpoint.set_sensitive( false );
939     _cms_proof_preserveblack.set_sensitive( false );
940 #endif // ENABLE_LCMS
942     this->AddPage(_page_cms, _("Color management"), PREFS_PAGE_CMS);
945 void InkscapePreferences::initPageGrids()
947     _page_grids.add_group_header( _("Major grid line emphasizing"));
949     _grids_no_emphasize_on_zoom.init( _("Don't emphasize gridlines when zoomed out"), "/options/grids/no_emphasize_when_zoomedout", false);
950     _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);
952     _page_grids.add_group_header( _("Default grid settings"));
954     _page_grids.add_line( false, "", _grids_notebook, "", "", false);
955     _grids_notebook.append_page(_grids_xy,     CanvasGrid::getName( GRID_RECTANGULAR ));
956     _grids_notebook.append_page(_grids_axonom, CanvasGrid::getName( GRID_AXONOMETRIC ));
957         _grids_xy_units.init("/options/grids/units");
958         _grids_xy.add_line( false, _("Grid units:"), _grids_xy_units, "", "", false);
959         _grids_xy_origin_x.init("/options/grids/xy/origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
960         _grids_xy_origin_y.init("/options/grids/xy/origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
961         _grids_xy.add_line( false, _("Origin X:"), _grids_xy_origin_x, "", _("X coordinate of grid origin"), false);
962         _grids_xy.add_line( false, _("Origin Y:"), _grids_xy_origin_y, "", _("Y coordinate of grid origin"), false);
963         _grids_xy_spacing_x.init("/options/grids/xy/spacing_x", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
964         _grids_xy_spacing_y.init("/options/grids/xy/spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
965         _grids_xy.add_line( false, _("Spacing X:"), _grids_xy_spacing_x, "", _("Distance between vertical grid lines"), false);
966         _grids_xy.add_line( false, _("Spacing Y:"), _grids_xy_spacing_y, "", _("Distance between horizontal grid lines"), false);
968         _grids_xy_color.init(_("Grid line color:"), "/options/grids/xy/color", 0x0000ff20);
969         _grids_xy.add_line( false, _("Grid line color:"), _grids_xy_color, "", _("Color used for normal grid lines"), false);
970         _grids_xy_empcolor.init(_("Major grid line color:"), "/options/grids/xy/empcolor", 0x0000ff40);
971         _grids_xy.add_line( false, _("Major grid line color:"), _grids_xy_empcolor, "", _("Color used for major (highlighted) grid lines"), false);
972         _grids_xy_empspacing.init("/options/grids/xy/empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
973         _grids_xy.add_line( false, _("Major grid line every:"), _grids_xy_empspacing, "", "", false);
974         _grids_xy_dotted.init( _("Show dots instead of lines"), "/options/grids/xy/dotted", false);
975         _grids_xy.add_line( false, "", _grids_xy_dotted, "", _("If set, display dots at gridpoints instead of gridlines"), false);
977     // CanvasAxonomGrid properties:
978         _grids_axonom_units.init("/options/grids/axonom/units");
979         _grids_axonom.add_line( false, _("Grid units:"), _grids_axonom_units, "", "", false);
980         _grids_axonom_origin_x.init("/options/grids/axonom/origin_x", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
981         _grids_axonom_origin_y.init("/options/grids/axonom/origin_y", -10000.0, 10000.0, 0.1, 1.0, 0.0, false, false);
982         _grids_axonom.add_line( false, _("Origin X:"), _grids_axonom_origin_x, "", _("X coordinate of grid origin"), false);
983         _grids_axonom.add_line( false, _("Origin Y:"), _grids_axonom_origin_y, "", _("Y coordinate of grid origin"), false);
984         _grids_axonom_spacing_y.init("/options/grids/axonom/spacing_y", -10000.0, 10000.0, 0.1, 1.0, 1.0, false, false);
985         _grids_axonom.add_line( false, _("Spacing Y:"), _grids_axonom_spacing_y, "", _("Base length of z-axis"), false);
986         _grids_axonom_angle_x.init("/options/grids/axonom/angle_x", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
987         _grids_axonom_angle_z.init("/options/grids/axonom/angle_z", -360.0, 360.0, 1.0, 10.0, 30.0, false, false);
988         _grids_axonom.add_line( false, _("Angle X:"), _grids_axonom_angle_x, "", _("Angle of x-axis"), false);
989         _grids_axonom.add_line( false, _("Angle Z:"), _grids_axonom_angle_z, "", _("Angle of z-axis"), false);
990         _grids_axonom_color.init(_("Grid line color:"), "/options/grids/axonom/color", 0x0000ff20);
991         _grids_axonom.add_line( false, _("Grid line color:"), _grids_axonom_color, "", _("Color used for normal grid lines"), false);
992         _grids_axonom_empcolor.init(_("Major grid line color:"), "/options/grids/axonom/empcolor", 0x0000ff40);
993         _grids_axonom.add_line( false, _("Major grid line color:"), _grids_axonom_empcolor, "", _("Color used for major (highlighted) grid lines"), false);
994         _grids_axonom_empspacing.init("/options/grids/axonom/empspacing", 1.0, 1000.0, 1.0, 5.0, 5.0, true, false);
995         _grids_axonom.add_line( false, _("Major grid line every:"), _grids_axonom_empspacing, "", "", false);
997     this->AddPage(_page_grids, _("Grids"), PREFS_PAGE_GRIDS);
1000 void InkscapePreferences::initPageSVGOutput()
1002     _svgoutput_usenamedcolors.init( _("Use named colors"), "/options/svgoutput/usenamedcolors", false);
1003     _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);
1005     _page_svgoutput.add_group_header( _("XML formatting"));
1007     _svgoutput_inlineattrs.init( _("Inline attributes"), "/options/svgoutput/inlineattrs", false);
1008     _page_svgoutput.add_line( false, "", _svgoutput_inlineattrs, "", _("Put attributes on the same line as the element tag"), false);
1010     _svgoutput_indent.init("/options/svgoutput/indent", 0.0, 1000.0, 1.0, 2.0, 2.0, true, false);
1011     _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);
1013     _page_svgoutput.add_group_header( _("Path data"));
1015     _svgoutput_allowrelativecoordinates.init( _("Allow relative coordinates"), "/options/svgoutput/allowrelativecoordinates", true);
1016     _page_svgoutput.add_line( false, "", _svgoutput_allowrelativecoordinates, "", _("If set, relative coordinates may be used in path data"), false);
1018     _svgoutput_forcerepeatcommands.init( _("Force repeat commands"), "/options/svgoutput/forcerepeatcommands", false);
1019     _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);
1021     _page_svgoutput.add_group_header( _("Numbers"));
1023     _svgoutput_numericprecision.init("/options/svgoutput/numericprecision", 1.0, 16.0, 1.0, 2.0, 8.0, true, false);
1024     _page_svgoutput.add_line( false, _("Numeric precision:"), _svgoutput_numericprecision, "", _("How many digits to write after the decimal dot"), false);
1026     _svgoutput_minimumexponent.init("/options/svgoutput/minimumexponent", -32.0, -1, 1.0, 2.0, -8.0, true, false);
1027     _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);
1029     this->AddPage(_page_svgoutput, _("SVG output"), PREFS_PAGE_SVGOUTPUT);
1032 void InkscapePreferences::initPageUI()
1034     Glib::ustring languages[] = {_("System default"), _("am Amharic"), _("ar Arabic"), _("az Azerbaijani"), _("be Belarusian"), 
1035         _("bg Bulgarian"), _("bn Bengali"), _("br Breton"), _("ca Catalan"), _("ca@valencia Valencian Catalan"), _("cs Czech"), 
1036         _("da Danish"), _("de German"), _("dz Dzongkha"), _("el Greek"), _("en English"), _("en_AU English, as spoken in Australia"), 
1037         _("en_CA English, as spoken in Canada"), _("en_GB English, as spoken in Great Britain"), _("en_US@piglatin Pig Latin"), 
1038         _("eo Esperanto"),  _("es Spanish"), _("es_MX Spanish, as spoken in Mexico"),_("et Estonian"), _("eu Basque"), _("fi Finnish"), 
1039         _("fr French"), _("ga Irish"), _("gl Galician"), _("he Hebrew"), _("hr Croatian"), _("hu Hungarian"), _("hy Armenian"), 
1040         _("id Indonesian"), _("it Italian"), _("ja Japanese"), _("km Khmer"), _("ko Korean"), _("lt Lithuanian"), _("mk Macedonian"), 
1041         _("mn Mongolian"), _("nb Norwegian BokmÃ¥l"), _("ne Nepali"), _("nl Dutch"), _("nn Norwegian Nynorsk"), _("pa Panjabi"),
1042         _("pl Polish"), _("pt Portuguese"), _("pt_BR Portuguese, as spoken in Brazil"), _("ro Romanian"), _("ru Russian"), 
1043         _("rw Kinyarwanda"), _("sk Slovak"), _("sl Slovenian"), _("sq Albanian"), _("sr Serbian"), _("sr@latin Serbian in Latin script"), 
1044         _("sv Swedish"), _("th Thai"), _("tr Turkish"), _("uk Ukrainian"), _("vi Vietnamese"), _("zh_CN Chinese, as spoken in China"), 
1045         _("zh_TW Chinese, as spoken in Taiwan")};
1046     Glib::ustring langValues[] = {"", "am", "ar", "az", "be", "bg", "bn", "br", "ca", "ca@valencia", "cs", "da", "de",
1047         "dz", "el", "en", "en_AU", "en_CA", "en_GB", "en_US@piglatin", "eo", "es", "es_MX", "et", "eu", "fi", "fr", "ga",
1048         "gl", "he", "hr", "hu", "hy", "id", "it", "ja", "km", "ko", "lt", "mk", "mn", "nb", "ne", "nl", "nn", "pa",
1049         "pl", "pt", "pt_BR", "ro", "ru", "rw", "sk", "sl", "sq", "sr", "sr@latin", "sv", "th", "tr", "uk", "vi",
1050         "zh_CN", "zh_TW"};
1052     _ui_languages.init( "/ui/language", languages, langValues, G_N_ELEMENTS(languages), languages[0]);
1053     _page_ui.add_line( false, _("Language (requires restart):"), _ui_languages, "",
1054                               _("Set the language for menus and number-formats"), false);
1056      Glib::ustring sizeLabels[] = {_("Normal"), _("Medium"), _("Small")};
1057     int sizeValues[] = {0, 1, 2};
1059     _misc_small_toolbar.init( "/toolbox/small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
1060     _page_ui.add_line( false, _("Commands bar icon size"), _misc_small_toolbar, "",
1061                               _("Set the size for the commands toolbar to use (requires restart)"), false);
1063     _misc_small_secondary.init( "/toolbox/secondary", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 1 );
1064     _page_ui.add_line( false, _("Tool controls bar icon size"), _misc_small_secondary, "",
1065                               _("Set the size for the secondary toolbar to use (requires restart)"), false);
1067     _misc_small_tools.init( "/toolbox/tools/small", sizeLabels, sizeValues, G_N_ELEMENTS(sizeLabels), 0 );
1068     _page_ui.add_line( false, _("Main toolbar icon size"), _misc_small_tools, "",
1069                               _("Set the size for the main tools to use (requires restart)"), false);
1071     _misc_recent.init("/options/maxrecentdocuments/value", 0.0, 1000.0, 1.0, 1.0, 1.0, true, false);
1072     _page_ui.add_line( false, _("Maximum documents in Open Recent:"), _misc_recent, "",
1073                               _("The maximum length of the Open Recent list in the File menu"), false);
1075     _ui_zoom_correction.init(300, 30, 1.00, 200.0, 1.0, 10.0, 1.0);
1076     _page_ui.add_line( false, _("Zoom correction factor (in %):"), _ui_zoom_correction, "",
1077                               _("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);
1079     this->AddPage(_page_ui, _("Interface"), PREFS_PAGE_UI);
1083 void InkscapePreferences::initPageAutosave()
1085     // Autosave options 
1086     _autosave_autosave_enable.init( _("Enable autosave (requires restart)"), "/options/autosave/enable", false);
1087     _page_autosave.add_line(false, "", _autosave_autosave_enable, "", _("Automatically save the current document(s) at a given interval, thus minimizing loss in case of a crash"), false);
1088     _autosave_autosave_interval.init("/options/autosave/interval", 1.0, 10800.0, 1.0, 10.0, 10.0, true, false);
1089     _page_autosave.add_line(true, _("Interval (in minutes):"), _autosave_autosave_interval, "", _("Interval (in minutes) at which document will be autosaved"), false);
1090     _autosave_autosave_path.init("/options/autosave/path", true);
1091     _page_autosave.add_line(true, _("Path:"), _autosave_autosave_path, "", _("The directory where autosaves will be written"), false);
1092     _autosave_autosave_max.init("/options/autosave/max", 1.0, 100.0, 1.0, 10.0, 10.0, true, false);
1093     _page_autosave.add_line(true, _("Maximum number of autosaves:"), _autosave_autosave_max, "", _("Maximum number of autosaved files; use this to limit the storage space used"), false);
1095     /* When changing the interval or enabling/disabling the autosave function,
1096      * update our running configuration
1097      *
1098      * FIXME!
1099      * the inkscape_autosave_init should be called AFTER the values have been changed
1100      * (which cannot be guaranteed from here) - use a PrefObserver somewhere
1101      */
1102     /*
1103     _autosave_autosave_enable.signal_toggled().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1104     _autosave_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE );
1105     */
1107     // -----------
1109     this->AddPage(_page_autosave, _("Autosave"), PREFS_PAGE_AUTOSAVE);
1112 void InkscapePreferences::initPageBitmaps()
1114     {
1115         Glib::ustring labels[] = {_("None"), _("2x2"), _("4x4"), _("8x8"), _("16x16")};
1116         int values[] = {0, 1, 2, 3, 4};
1117         _misc_overs_bitmap.set_size_request(_sb_width);
1118         _misc_overs_bitmap.init("/options/bitmapoversample/value", labels, values, G_N_ELEMENTS(values), 1);
1119         _page_bitmaps.add_line( false, _("Oversample bitmaps:"), _misc_overs_bitmap, "", "", false);
1120     }
1122     _misc_bitmap_autoreload.init(_("Automatically reload bitmaps"), "/options/bitmapautoreload/value", true);
1123     _page_bitmaps.add_line( false, "", _misc_bitmap_autoreload, "",
1124                            _("Automatically reload linked images when file is changed on disk"));
1125     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1126     Glib::ustring choices = prefs->getString("/options/bitmapeditor/choices");
1127     if (!choices.empty()) {
1128         gchar** splits = g_strsplit(choices.data(), ",", 0);
1129         gint numIems = g_strv_length(splits);
1131         Glib::ustring labels[numIems];
1132         int values[numIems];
1133         for ( gint i = 0; i < numIems; i++) {
1134             values[i] = i;
1135             labels[i] = splits[i];
1136         }
1137         _misc_bitmap_editor.init("/options/bitmapeditor/value", labels, values, numIems, 0);
1138         _page_bitmaps.add_line( false, _("Bitmap editor:"), _misc_bitmap_editor, "", "", false);
1140         g_strfreev(splits);
1141     }
1143     _bitmap_copy_res.init("/options/createbitmap/resolution", 1.0, 6000.0, 1.0, 1.0, PX_PER_IN, true, false);
1144     _page_bitmaps.add_line( false, _("Resolution for Create Bitmap Copy:"), _bitmap_copy_res, _("dpi"),
1145                             _("Resolution used by the Create Bitmap Copy command"), false);
1147     this->AddPage(_page_bitmaps, _("Bitmaps"), PREFS_PAGE_BITMAPS);
1151 void InkscapePreferences::initPageMisc()
1153     _misc_comment.init( _("Add label comments to printing output"), "/printing/debug/show-label-comments", false);
1154     _page_misc.add_line( false, "", _misc_comment, "",
1155                            _("When on, a comment will be added to the raw print output, marking the rendered output for an object with its label"), true);
1157     _misc_forkvectors.init( _("Prevent sharing of gradient definitions"), "/options/forkgradientvectors/value", true);
1158     _page_misc.add_line( false, "", _misc_forkvectors, "",
1159                            _("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);
1161     _misc_simpl.init("/options/simplifythreshold/value", 0.0001, 1.0, 0.0001, 0.0010, 0.0010, false, false);
1162     _page_misc.add_line( false, _("Simplification threshold:"), _misc_simpl, "",
1163                            _("How strong is the Simplify command by default. If you invoke this command several times in quick succession, it will act more and more aggressively; invoking it again after a pause restores the default threshold."), false);
1165     _misc_latency_skew.init("/debug/latency/skew", 0.5, 2.0, 0.01, 0.10, 1.0, false, false);
1166     _page_misc.add_line( false, _("Latency skew:"), _misc_latency_skew, _("(requires restart)"),
1167                            _("Factor by which the event clock is skewed from the actual time (0.9766 on some systems)."), false);
1169     _misc_namedicon_delay.init( _("Pre-render named icons"), "/options/iconrender/named_nodelay", false);
1170     _page_misc.add_line( false, "", _misc_namedicon_delay, "",
1171                            _("When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification"), true);
1173     this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC);
1176 bool InkscapePreferences::SetMaxDialogSize(const Gtk::TreeModel::iterator& iter)
1178     Gtk::TreeModel::Row row = *iter;
1179     DialogPage* page = row[_page_list_columns._col_page];
1180     _page_frame.add(*page);
1181     this->show_all_children();
1182     Gtk:: Requisition sreq;
1183     this->size_request(sreq);
1184     _max_dialog_width=std::max(_max_dialog_width, sreq.width);
1185     _max_dialog_height=std::max(_max_dialog_height, sreq.height);
1186     _page_frame.remove();
1187     return false;
1190 bool InkscapePreferences::PresentPage(const Gtk::TreeModel::iterator& iter)
1192     Gtk::TreeModel::Row row = *iter;
1193     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1194     int desired_page = prefs->getInt("/dialogs/preferences/page", 0);
1195     if (desired_page == row[_page_list_columns._col_id])
1196     {
1197         if (desired_page >= PREFS_PAGE_TOOLS && desired_page <= PREFS_PAGE_TOOLS_DROPPER)
1198             _page_list.expand_row(_path_tools, false);
1199         if (desired_page >= PREFS_PAGE_TOOLS_SHAPES && desired_page <= PREFS_PAGE_TOOLS_SHAPES_SPIRAL)
1200             _page_list.expand_row(_path_shapes, false);
1201         _page_list.get_selection()->select(iter);
1202         return true;
1203     }
1204     return false;
1207 void InkscapePreferences::on_pagelist_selection_changed()
1209     // show new selection
1210     Glib::RefPtr<Gtk::TreeSelection> selection = _page_list.get_selection();
1211     Gtk::TreeModel::iterator iter = selection->get_selected();
1212     if(iter)
1213     {
1214         if (_current_page)
1215             _page_frame.remove();
1216         Gtk::TreeModel::Row row = *iter;
1217         _current_page = row[_page_list_columns._col_page];
1218         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1219         prefs->setInt("/dialogs/preferences/page", row[_page_list_columns._col_id]);
1220         _page_title.set_markup("<span size='large'><b>" + row[_page_list_columns._col_name] + "</b></span>");
1221         _page_frame.add(*_current_page);
1222         _current_page->show();
1223         while (Gtk::Main::events_pending())
1224         {
1225             Gtk::Main::iteration();
1226         }
1227         this->show_all_children();
1228     }
1231 void InkscapePreferences::_presentPages()
1233     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::PresentPage));
1236 } // namespace Dialog
1237 } // namespace UI
1238 } // namespace Inkscape
1240 /*
1241   Local Variables:
1242   mode:c++
1243   c-file-style:"stroustrup"
1244   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
1245   indent-tabs-mode:nil
1246   fill-column:99
1247   End:
1248 */
1249 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :