Code

non-localizable string
[inkscape.git] / src / ui / dialog / inkscape-preferences.cpp
1 /**
2  * \brief Inkscape Preferences dialog
3  *
4  * Authors:
5  *   Carl Hetherington
6  *   Marco Scholten
7  *
8  * Copyright (C) 2004, 2006 Authors
9  *
10  * Released under GNU GPL.  Read the file 'COPYING' for more information.
11  */ 
13 #ifdef HAVE_CONFIG_H
14 # include <config.h>
15 #endif
17 #include <gtkmm/frame.h>
18 #include <gtkmm/scrolledwindow.h>
19 #include <gtkmm/alignment.h>
21 #include "prefs-utils.h"
22 #include "inkscape-preferences.h"
23 #include "verbs.h"
24 #include "selcue.h"
25 #include <iostream>
26 #include "enums.h"
27 #include "inkscape.h"
28 #include "desktop-handles.h"
29 #include "message-stack.h"
30 #include "style.h"
31 #include "selection.h"
32 #include "selection-chemistry.h"
33 #include "xml/repr.h"
34 #include "ui/widget/style-swatch.h"
36 namespace Inkscape {
37 namespace UI {
38 namespace Dialog {
40 InkscapePreferences::InkscapePreferences()
41     : Dialog ("dialogs.preferences", SP_VERB_DIALOG_DISPLAY),
42       _max_dialog_width(0), 
43       _max_dialog_height(0),
44       _current_page(0)
45
46     //get the width of a spinbutton
47     Gtk::SpinButton* sb = new Gtk::SpinButton;
48     sb->set_width_chars(6);
49     this->get_vbox()->add(*sb);
50     this->show_all_children();
51     Gtk:: Requisition sreq;
52     sb->size_request(sreq);
53     _sb_width = sreq.width;
54     this->get_vbox()->remove(*sb);
55     delete sb;
57     //Main HBox
58     Gtk::HBox* hbox_list_page = Gtk::manage(new Gtk::HBox());
59     hbox_list_page->set_border_width(12);
60     hbox_list_page->set_spacing(12);
61     this->get_vbox()->add(*hbox_list_page);
64     //Pagelist
65     Gtk::Frame* list_frame = Gtk::manage(new Gtk::Frame());
66     Gtk::ScrolledWindow* scrolled_window = Gtk::manage(new Gtk::ScrolledWindow());
67     hbox_list_page->pack_start(*list_frame, false, true, 0);
68     _page_list.set_headers_visible(false);
69     scrolled_window->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
70     scrolled_window->add(_page_list);
71     list_frame->set_shadow_type(Gtk::SHADOW_IN);
72     list_frame->add(*scrolled_window);
73     _page_list_model = Gtk::TreeStore::create(_page_list_columns);
74     _page_list.set_model(_page_list_model);
75     _page_list.append_column("name",_page_list_columns._col_name);
76         Glib::RefPtr<Gtk::TreeSelection> page_list_selection = _page_list.get_selection();
77         page_list_selection->signal_changed().connect(sigc::mem_fun(*this, &InkscapePreferences::on_pagelist_selection_changed));
78         page_list_selection->set_mode(Gtk::SELECTION_BROWSE);
79     
80     //Pages
81     Gtk::VBox* vbox_page = Gtk::manage(new Gtk::VBox());
82     Gtk::Frame* title_frame = Gtk::manage(new Gtk::Frame());
83     hbox_list_page->pack_start(*vbox_page, true, true, 0);
84     title_frame->add(_page_title);
85     vbox_page->pack_start(*title_frame, false, false, 0);
86     vbox_page->pack_start(_page_frame, true, true, 0);
87     _page_frame.set_shadow_type(Gtk::SHADOW_IN);
88     title_frame->set_shadow_type(Gtk::SHADOW_IN);
90     initPageMouse();
91     initPageScrolling();
92     initPageSteps();
93     initPageTools();
94     initPageWindows();
95     initPageClones();
96     initPageTransforms();
97     initPageSelecting();
98     initPageMisc();
100     //calculate the size request for this dialog
101     this->show_all_children();
102     _page_list.expand_all();
103     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::SetMaxDialogSize)); 
104     this->set_size_request(_max_dialog_width, _max_dialog_height);
105     _page_list.collapse_all();
108 InkscapePreferences::~InkscapePreferences()
112 void InkscapePreferences::present()
114     _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::PresentPage)); 
115     Dialog::present();
118 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, int id)
120     return AddPage(p, title, Gtk::TreeModel::iterator() , id);
123 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id)
125     Gtk::TreeModel::iterator iter;
126     if (parent)
127        iter = _page_list_model->append((*parent).children());
128     else
129        iter = _page_list_model->append();
130     Gtk::TreeModel::Row row = *iter;
131     row[_page_list_columns._col_name] = title;
132     row[_page_list_columns._col_id] = id;
133     row[_page_list_columns._col_page] = &p;
134     return iter;
137 void InkscapePreferences::initPageMouse()
139     this->AddPage(_page_mouse, _("Mouse"), PREFS_PAGE_MOUSE);
140     _mouse_sens.init ( "options.cursortolerance", "value", 0.0, 30.0, 1.0, 1.0, 8.0, true, false);
141     _page_mouse.add_line( false, _("Grab sensitivity:"), _mouse_sens, _("pixels"), 
142                            _("How close on the screen you need to be to an object to be able to grab it with mouse (in screen pixels)"), false);
143     _mouse_thres.init ( "options.dragtolerance", "value", 0.0, 20.0, 1.0, 1.0, 4.0, true, false);
144     _page_mouse.add_line( false, _("Click/drag threshold:"), _mouse_thres, _("pixels"), 
145                            _("Maximum mouse drag (in screen pixels) which is considered a click, not a drag"), false);
148 void InkscapePreferences::initPageScrolling()
150     this->AddPage(_page_scrolling, _("Scrolling"), PREFS_PAGE_SCROLLING);
151     _scroll_wheel.init ( "options.wheelscroll", "value", 0.0, 1000.0, 1.0, 1.0, 40.0, true, false);
152     _page_scrolling.add_line( false, _("Mouse wheel scrolls by:"), _scroll_wheel, _("pixels"), 
153                            _("One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)"), false);
154     _page_scrolling.add_group_header( _("Ctrl+arrows"));
155     _scroll_arrow_px.init ( "options.keyscroll", "value", 0.0, 1000.0, 1.0, 1.0, 10.0, true, false);
156     _page_scrolling.add_line( true, _("Scroll by:"), _scroll_arrow_px, _("pixels"), 
157                            _("Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)"), false);
158     _scroll_arrow_acc.init ( "options.scrollingacceleration", "value", 0.0, 5.0, 0.01, 1.0, 0.35, false, false);
159     _page_scrolling.add_line( true, _("Acceleration:"), _scroll_arrow_acc, "", 
160                            _("Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)"), false);
161     _page_scrolling.add_group_header( _("Autoscrolling"));
162     _scroll_auto_speed.init ( "options.autoscrollspeed", "value", 0.0, 5.0, 0.01, 1.0, 0.7, false, false);
163     _page_scrolling.add_line( true, _("Speed:"), _scroll_auto_speed, "", 
164                            _("How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)"), false);
165     _scroll_auto_thres.init ( "options.autoscrolldistance", "value", -600.0, 600.0, 1.0, 1.0, -10.0, true, false);
166     _page_scrolling.add_line( true, _("Threshold:"), _scroll_auto_thres, _("pixels"), 
167                            _("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);
170 void InkscapePreferences::initPageSteps()
172     this->AddPage(_page_steps, _("Steps"), PREFS_PAGE_STEPS);
174     _steps_arrow.init ( "options.nudgedistance", "value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
175     _page_steps.add_line( false, _("Arrow keys move by:"), _steps_arrow, _("px"), 
176                           _("Pressing an arrow key moves selected object(s) or node(s) by this distance (in px units)"), false);
177     _steps_scale.init ( "options.defaultscale", "value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
178     _page_steps.add_line( false, _("> and < scale by:"), _steps_scale, _("px"), 
179                           _("Pressing > or < scales selection up or down by this increment (in px units)"), false);
180     _steps_inset.init ( "options.defaultoffsetwidth", "value", 0.0, 3000.0, 0.01, 1.0, 2.0, false, false);
181     _page_steps.add_line( false, _("Inset/Outset by:"), _steps_inset, _("px"), 
182                           _("Inset and Outset commands displace the path by this distance (in px units)"), false);
183     _steps_compass.init ( _("Compass-like display of angles"), "options.compassangledisplay", "value", true);
184     _page_windows.add_line( false, "", _steps_compass, "", 
185                             _("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"));
186     int const num_items = 12;
187     Glib::ustring labels[num_items] = {"90", "60", "45", "30", "15", "10", "7.5", "6", "3", "2", "1", _("None")};
188     int values[num_items] = {2, 3, 4, 6, 12, 18, 24, 30, 60, 90, 180, 0};
189     _steps_rot_snap.set_size_request(_sb_width);
190     _steps_rot_snap.init("options.rotationsnapsperpi", "value", labels, values, num_items, 12);
191     _page_steps.add_line( false, _("Rotation snaps every:"), _steps_rot_snap, _("degrees"), 
192                            _("Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount"), false);
193     _steps_zoom.init ( "options.zoomincrement", "value", 101.0, 500.0, 1.0, 1.0, 1.414213562, true, true);
194     _page_steps.add_line( false, _("Zoom in/out by:"), _steps_zoom, _("%"), 
195                           _("Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier"), false);
198 void InkscapePreferences::AddSelcueCheckbox(DialogPage& p, const std::string& prefs_path, bool def_value)
200     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
201     cb->init ( _("Show selection cue"), prefs_path, "selcue", def_value);
202     p.add_line( false, "", *cb, "", _("Whether selected objects display a selection cue (the same as in selector)"));
205 void InkscapePreferences::AddGradientCheckbox(DialogPage& p, const std::string& prefs_path, bool def_value)
207     PrefCheckButton* cb = Gtk::manage( new PrefCheckButton);
208     cb->init ( _("Enable gradient editing"), prefs_path, "gradientdrag", def_value);
209     p.add_line( false, "", *cb, "", _("Whether selected objects display gradient editing controls"));
212 void StyleFromSelectionToTool(gchar const *prefs_path, StyleSwatch *swatch)
214     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
215     if (desktop == NULL)
216         return;
218     Inkscape::Selection *selection = SP_DT_SELECTION(desktop);
220     if (selection->isEmpty()) {
221         SP_DT_MSGSTACK(desktop)->flash(Inkscape::ERROR_MESSAGE,
222                                        _("<b>No objects selected</b> to take the style from."));
223         return;
224     }
225     SPItem *item = selection->singleItem();
226     if (!item) {
227         /* TODO: If each item in the selection has the same style then don't consider it an error.
228          * Maybe we should try to handle multiple selections anyway, e.g. the intersection of the
229          * style attributes for the selected items. */
230         SP_DT_MSGSTACK(desktop)->flash(Inkscape::ERROR_MESSAGE,
231                                        _("<b>More than one object selected.</b>  Cannot take style from multiple objects."));
232         return;
233     }
235     SPCSSAttr *css = take_style_from_item (item);
237     if (!css) return;
239     // only store text style for the text tool
240     if (!g_strrstr ((const gchar *) prefs_path, "text")) {
241         css = sp_css_attr_unset_text (css);
242     }
244     // we cannot store properties with uris - they will be invalid in other documents
245     css = sp_css_attr_unset_uris (css);
247     sp_repr_css_change (inkscape_get_repr (INKSCAPE, prefs_path), css, "style");
248     sp_repr_css_attr_unref (css);
250     // update the swatch
251     if (swatch) {
252         Inkscape::XML::Node *tool_repr = inkscape_get_repr(INKSCAPE, prefs_path);
253         if (tool_repr) {
254             SPCSSAttr *css = sp_repr_css_attr_inherited(tool_repr, "style");
255             swatch->setStyle (css);
256             sp_repr_css_attr_unref(css);
257         }
258     }
261 void InkscapePreferences::AddNewObjectsStyle(DialogPage& p, const std::string& prefs_path)
265     p.add_group_header( _("Create new objects with:"));
266     PrefRadioButton* current = Gtk::manage( new PrefRadioButton);
267     current->init ( _("Last used style"), prefs_path, "usecurrent", 1, true, 0);
268     p.add_line( true, "", *current, "",
269                 _("Apply the style you last set on an object"));
271     PrefRadioButton* own = Gtk::manage( new PrefRadioButton);
272     Gtk::HBox* hb = Gtk::manage( new Gtk::HBox);
273     Gtk::Alignment* align = Gtk::manage( new Gtk::Alignment);
274     own->init ( _("This tool's own style:"), prefs_path, "usecurrent", 0, false, current);
275     align->set(0,0,0,0);    
276     align->add(*own);
277     hb->add(*align);
278     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."));
279     p.add_line( true, "", *hb, "", "");
281     // style swatch
282     Inkscape::XML::Node *tool_repr = inkscape_get_repr(INKSCAPE, prefs_path.c_str());
283     Gtk::Button* button = Gtk::manage( new Gtk::Button(_("Take from selection"),true));
284     StyleSwatch *swatch = 0;
285     if (tool_repr) {
286         SPCSSAttr *css = sp_repr_css_attr_inherited(tool_repr, "style");
287         swatch = new StyleSwatch(css);
288         hb->add(*swatch);
289         sp_repr_css_attr_unref(css);
290     }
292     button->signal_clicked().connect( sigc::bind( sigc::ptr_fun(StyleFromSelectionToTool), prefs_path.c_str(), swatch)  );
293     own->changed_signal.connect( sigc::mem_fun(*button, &Gtk::Button::set_sensitive) );
294     p.add_line( true, "", *button, "",
295                 _("Remember the style of the (first) selected object as this tool's style"));
298 void InkscapePreferences::initPageTools()
300     Gtk::TreeModel::iterator iter_tools = this->AddPage(_page_tools, _("Tools"), PREFS_PAGE_TOOLS);    
301     _path_tools = _page_list.get_model()->get_path(iter_tools);
303     //Selector
304     this->AddPage(_page_selector, _("Selector"), iter_tools, PREFS_PAGE_TOOLS_SELECTOR);
306     AddSelcueCheckbox(_page_selector, "tools.select", false);
307     _page_selector.add_group_header( _("When transforming, show:"));
308     _t_sel_trans_obj.init ( _("Objects"), "tools.select", "show", "content", true, 0);
309     _page_selector.add_line( true, "", _t_sel_trans_obj, "", 
310                             _("Show the actual objects when moving or transforming"));
311     _t_sel_trans_outl.init ( _("Box outline"), "tools.select", "show", "outline", false, &_t_sel_trans_obj);
312     _page_selector.add_line( true, "", _t_sel_trans_outl, "", 
313                             _("Show only a box outline of the objects when moving or transforming"));
314     _page_selector.add_group_header( _("Per-object selection cue:"));
315     _t_sel_cue_none.init ( _("None"), "options.selcue", "value", Inkscape::SelCue::NONE, false, 0);
316     _page_selector.add_line( true, "", _t_sel_cue_none, "", 
317                             _("No per-object selection indication"));
318     _t_sel_cue_mark.init ( _("Mark"), "options.selcue", "value", Inkscape::SelCue::MARK, true, &_t_sel_cue_none);
319     _page_selector.add_line( true, "", _t_sel_cue_mark, "", 
320                             _("Each selected object has a diamond mark in the top left corner"));
321     _t_sel_cue_box.init ( _("Box"), "options.selcue", "value", Inkscape::SelCue::BBOX, false, &_t_sel_cue_none);
322     _page_selector.add_line( true, "", _t_sel_cue_box, "", 
323                             _("Each selected object displays its bounding box"));
324     _page_selector.add_group_header( _("Default scale origin:"));
325     _t_sel_org_edge.init ( _("Opposite bounding box edge"), "tools.select", "scale_origin", "bbox", true, 0);
326     _page_selector.add_line( true, "", _t_sel_org_edge, "", 
327                             _("Default scale origin will be on the bounding box of the item"));
328     _t_sel_org_node.init ( _("Farthest opposite node"), "tools.select", "scale_origin", "points", false, &_t_sel_org_edge);
329     _page_selector.add_line( true, "", _t_sel_org_node, "", 
330                             _("Default scale origin will be on the bounding box of the item's points"));
331     //Node
332     this->AddPage(_page_node, _("Node"), iter_tools, PREFS_PAGE_TOOLS_NODE);
333     AddSelcueCheckbox(_page_node, "tools.nodes", true);
334     AddGradientCheckbox(_page_node, "tools.nodes", true);
335     //Zoom
336     this->AddPage(_page_zoom, _("Zoom"), iter_tools, PREFS_PAGE_TOOLS_ZOOM);
337     AddSelcueCheckbox(_page_zoom, "tools.zoom", true);
338     AddGradientCheckbox(_page_zoom, "tools.zoom", false);
339     //Shapes
340     Gtk::TreeModel::iterator iter_shapes = this->AddPage(_page_shapes, _("Shapes"), iter_tools, PREFS_PAGE_TOOLS_SHAPES);
341     _path_shapes = _page_list.get_model()->get_path(iter_shapes);
342     this->AddSelcueCheckbox(_page_shapes, "tools.shapes", true);
343     this->AddGradientCheckbox(_page_shapes, "tools.shapes", true);
344     //Rectangle
345     this->AddPage(_page_rectangle, _("Rectangle"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_RECT);
346     this->AddNewObjectsStyle(_page_rectangle, "tools.shapes.rect");
347     //ellipse
348     this->AddPage(_page_ellipse, _("Ellipse"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_ELLIPSE);
349     this->AddNewObjectsStyle(_page_ellipse, "tools.shapes.arc");
350     //star
351     this->AddPage(_page_star, _("Star"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_STAR);
352     this->AddNewObjectsStyle(_page_star, "tools.shapes.star");
353     //spiral
354     this->AddPage(_page_spiral, _("Spiral"), iter_shapes, PREFS_PAGE_TOOLS_SHAPES_SPIRAL);
355     this->AddNewObjectsStyle(_page_spiral, "tools.shapes.spiral");
356     //Pencil
357     this->AddPage(_page_pencil, _("Pencil"), iter_tools, PREFS_PAGE_TOOLS_PENCIL);
358     this->AddSelcueCheckbox(_page_pencil, "tools.freehand.pencil", true);
359     _t_pencil_tolerance.init ( "tools.freehand.pencil", "tolerance", 0.0, 100.0, 0.5, 1.0, 10.0, false, false);
360     _page_pencil.add_line( false, _("Tolerance:"), _t_pencil_tolerance, "", 
361                            _("This value affects the amount of smoothing applied to freehand lines; lower values produce more uneven paths with more nodes"),
362                            false );
363     this->AddNewObjectsStyle(_page_pencil, "tools.freehand.pencil");
364     //Pen
365     this->AddPage(_page_pen, _("Pen"), iter_tools, PREFS_PAGE_TOOLS_PEN);
366     this->AddSelcueCheckbox(_page_pen, "tools.freehand.pen", true);
367     this->AddNewObjectsStyle(_page_pen, "tools.freehand.pen");
368     //Calligraphy
369     this->AddPage(_page_calligraphy, _("Calligraphy"), iter_tools, PREFS_PAGE_TOOLS_CALLIGRAPHY);
370     this->AddNewObjectsStyle(_page_calligraphy, "tools.calligraphic");
371     //Text
372     this->AddPage(_page_text, _("Text"), iter_tools, PREFS_PAGE_TOOLS_TEXT);
373     this->AddSelcueCheckbox(_page_text, "tools.text", true);
374     this->AddGradientCheckbox(_page_text, "tools.text", true);
375     this->AddNewObjectsStyle(_page_text, "tools.text");
376     //Gradient
377     this->AddPage(_page_gradient, _("Gradient"), iter_tools, PREFS_PAGE_TOOLS_GRADIENT);
378     this->AddSelcueCheckbox(_page_gradient, "tools.gradient", true);
379     //Connector
380     this->AddPage(_page_connector, _("Connector"), iter_tools, PREFS_PAGE_TOOLS_CONNECTOR);
381     this->AddSelcueCheckbox(_page_connector, "tools.connector", true);
382     //Dropper
383     this->AddPage(_page_dropper, _("Dropper"), iter_tools, PREFS_PAGE_TOOLS_DROPPER);
384     this->AddSelcueCheckbox(_page_dropper, "tools.dropper", true);
385     this->AddGradientCheckbox(_page_dropper, "tools.dropper", true);
388 void InkscapePreferences::initPageWindows()
390     _win_save_geom.init ( _("Save window geometry"), "options.savewindowgeometry", "value", true);
391     _win_hide_task.init ( _("Dialogs are hidden in taskbar"), "options.dialogsskiptaskbar", "value", true);
392     _win_zoom_resize.init ( _("Zoom when window is resized"), "options.stickyzoom", "value", false);
393     _win_ontop_none.init ( _("None"), "options.transientpolicy", "value", 0, false, 0);
394     _win_ontop_normal.init ( _("Normal"), "options.transientpolicy", "value", 1, true, &_win_ontop_none);
395     _win_ontop_agressive.init ( _("Aggressive"), "options.transientpolicy", "value", 2, false, &_win_ontop_none);
397     _page_windows.add_line( false, "", _win_save_geom, "", 
398                             _("Save the window size and position with each document (only for Inkscape SVG format)"));
399     _page_windows.add_line( false, "", _win_hide_task, "", 
400                             _("Whether dialog windows are to be hidden in the window manager taskbar"));
401     _page_windows.add_line( false, "", _win_zoom_resize, "", 
402                             _("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)"));
403     _page_windows.add_group_header( _("Dialogs on top:"));
404     _page_windows.add_line( true, "", _win_ontop_none, "", 
405                             _("Dialogs are treated as regular windows"));
406     _page_windows.add_line( true, "", _win_ontop_normal, "", 
407                             _("Dialogs stay on top of document windows"));
408     _page_windows.add_line( true, "", _win_ontop_agressive, "", 
409                             _("Same as Normal but may work better with some window managers"));
411     this->AddPage(_page_windows, _("Windows"), PREFS_PAGE_WINDOWS);
414 void InkscapePreferences::initPageClones()
416     _clone_option_parallel.init ( _("Move in parallel"), "options.clonecompensation", "value", 
417                                   SP_CLONE_COMPENSATION_PARALLEL, true, 0);
418     _clone_option_stay.init ( _("Stay unmoved"), "options.clonecompensation", "value", 
419                                   SP_CLONE_COMPENSATION_UNMOVED, false, &_clone_option_parallel);
420     _clone_option_transform.init ( _("Move according to transform"), "options.clonecompensation", "value", 
421                                   SP_CLONE_COMPENSATION_NONE, false, &_clone_option_parallel);
422     _clone_option_unlink.init ( _("Are unlinked"), "options.cloneorphans", "value", 
423                                   SP_CLONE_ORPHANS_UNLINK, true, 0);
424     _clone_option_delete.init ( _("Are deleted"), "options.cloneorphans", "value", 
425                                   SP_CLONE_ORPHANS_DELETE, false, &_clone_option_unlink);
427     _page_clones.add_group_header( _("When the original moves, its clones and linked offsets:"));
428     _page_clones.add_line( true, "", _clone_option_parallel, "", 
429                            _("Clones are translated by the same vector as their original."));
430     _page_clones.add_line( true, "", _clone_option_stay, "", 
431                            _("Clones preserve their positions when their original is moved."));
432     _page_clones.add_line( true, "", _clone_option_transform, "", 
433                            _("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."));
434     _page_clones.add_group_header( _("When the original is deleted, its clones:"));
435     _page_clones.add_line( true, "", _clone_option_unlink, "", 
436                            _("Orphaned clones are converted to regular objects."));
437     _page_clones.add_line( true, "", _clone_option_delete, "", 
438                            _("Orphaned clones are deleted along with their original."));
440     this->AddPage(_page_clones, _("Clones"), PREFS_PAGE_CLONES);
443 void InkscapePreferences::initPageTransforms()
445     _trans_scale_stroke.init ( _("Scale stroke width"), "options.transform", "stroke", true);
446     _trans_scale_corner.init ( _("Scale rounded corners in rectangles"), "options.transform", "rectcorners", false);
447     _trans_gradient.init ( _("Transform gradients"), "options.transform", "gradient", true);
448     _trans_pattern.init ( _("Transform patterns"), "options.transform", "pattern", false);
449     _trans_optimized.init ( _("Optimized"), "options.preservetransform", "value", 0, true, 0);
450     _trans_preserved.init ( _("Preserved"), "options.preservetransform", "value", 1, false, &_trans_optimized);
452     _page_transforms.add_line( false, "", _trans_scale_stroke, "", 
453                                _("When scaling objects, scale the stroke width by the same proportion"));
454     _page_transforms.add_line( false, "", _trans_scale_corner, "", 
455                                _("When scaling rectangles, scale the radii of rounded corners"));
456     _page_transforms.add_line( false, "", _trans_gradient, "", 
457                                _("Transform gradients (in fill or stroke) along with the objects"));
458     _page_transforms.add_line( false, "", _trans_pattern, "", 
459                                _("Transform patterns (in fill or stroke) along with the objects"));
460     _page_transforms.add_group_header( _("Store transformation:"));
461     _page_transforms.add_line( true, "", _trans_optimized, "", 
462                                _("If possible, apply transformation to objects without adding a transform= attribute"));
463     _page_transforms.add_line( true, "", _trans_preserved, "", 
464                                _("Always store transformation as a transform= attribute on objects"));
466     this->AddPage(_page_transforms, _("Transforms"), PREFS_PAGE_TRANSFORMS);
469 void InkscapePreferences::initPageSelecting()
471     _sel_current.init ( _("Select only within current layer"), "options.kbselection", "inlayer", true);
472     _sel_hidden.init ( _("Ignore hidden objects"), "options.kbselection", "onlyvisible", true);
473     _sel_locked.init ( _("Ignore locked objects"), "options.kbselection", "onlysensitive", true);
475     _page_select.add_group_header( _("Ctrl+A, Tab, Shift+Tab:"));
476     _page_select.add_line( true, "", _sel_current, "", 
477                            _("Uncheck this to make keyboard selection commands work on objects in all layers"));
478     _page_select.add_line( true, "", _sel_hidden, "", 
479                            _("Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden group or layer)"));
480     _page_select.add_line( true, "", _sel_locked, "", 
481                            _("Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked group or layer)"));
483     this->AddPage(_page_select, _("Selecting"), PREFS_PAGE_SELECTING);
487 void InkscapePreferences::initPageMisc()
489     _misc_export.init("dialogs.export.defaultxdpi", "value", 0.0, 6000.0, 1.0, 1.0, 1.0, true, false);
490     _page_misc.add_line( false, _("Default export resolution:"), _misc_export, _("dpi"), 
491                            _("Default bitmap resolution (in dots per inch) in the Export dialog"), false);
492     _misc_imp_bitmap.init( _("Import bitmap as <image>"), "options.importbitmapsasimages", "value", true);
493     _page_misc.add_line( false, "", _misc_imp_bitmap, "", 
494                            _("When on, an imported bitmap creates an <image> element; otherwise it is a rectangle with bitmap fill"), true);
495     _misc_comment.init( _("Add label comments to printing output"), "printing.debug", "show-label-comments", false);
496     _page_misc.add_line( false, "", _misc_comment, "", 
497                            _("When on, a comment will be added to the raw print output, marking the rendered output for an object with its label"), true);
498     _misc_scripts.init( _("Enable script effects (requires restart) - EXPERIMENTAL"), "extensions", "show-effects-menu", false);
499     _page_misc.add_line( false, "", _misc_scripts, "", 
500                            _("When on, the effects menu is enabled, allowing external effect scripts to be called, requires restart before effective - EXPERIMENTAL"), true);
501     _misc_recent.init("options.maxrecentdocuments", "value", 0.0, 1000.0, 1.0, 1.0, 1.0, true, false);
502     _page_misc.add_line( false, _("Max recent documents:"), _misc_recent, "", 
503                            _("The maximum length of the Open Recent list in the File menu"), false);
504     _misc_simpl.init("options.simplifythreshold", "value", 0.0001, 1.0, 0.0001, 0.0010, 0.0010, false, false);
505     _page_misc.add_line( false, _("Simplification threshold:"), _misc_simpl, "", 
506                            _("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);
507     int const num_items = 5;
508     Glib::ustring labels[num_items] = {_("None"), _("2x2"), _("4x4"), _("8x8"), _("16x16")};
509     int values[num_items] = {0, 1, 2, 3, 4};
510     _misc_overs_bitmap.set_size_request(_sb_width);
511     _misc_overs_bitmap.init("options.bitmapoversample", "value", labels, values, num_items, 1);
512     _page_misc.add_line( false, _("Oversample bitmaps:"), _misc_overs_bitmap, "", "", false);
514     _page_misc.add_group_header( _("Clipping and masking:"));
515     _misc_mask_on_top.init ( _("Use the topmost selected object as a clipping path or mask"), "options.maskobject", "topmost", true);
516     _page_misc.add_line(true, "", _misc_mask_on_top, "", 
517                         _("Uncheck this to use the bottom selected object as the clipping path or mask"));
518     _misc_mask_remove.init ( _("Remove clipping path or mask after applying"), "options.maskobject", "remove", true);
519     _page_misc.add_line(true, "", _misc_mask_remove, "", 
520                         _("Affter applying, remove the object used as the clipping path or mask from the drawing"));
522     this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC);
525 bool InkscapePreferences::SetMaxDialogSize(const Gtk::TreeModel::iterator& iter)
527     Gtk::TreeModel::Row row = *iter;
528     DialogPage* page = row[_page_list_columns._col_page];
529     _page_frame.add(*page);
530     this->show_all_children();
531     Gtk:: Requisition sreq;
532     this->size_request(sreq);
533     _max_dialog_width=std::max(_max_dialog_width, sreq.width);
534     _max_dialog_height=std::max(_max_dialog_height, sreq.height);
535     _page_frame.remove();
536     return false;
539 bool InkscapePreferences::PresentPage(const Gtk::TreeModel::iterator& iter)
541     Gtk::TreeModel::Row row = *iter;
542     int desired_page = prefs_get_int_attribute("dialogs.preferences", "page", 0);
543     if (desired_page == row[_page_list_columns._col_id])
544     {
545         if (desired_page >= PREFS_PAGE_TOOLS && desired_page <= PREFS_PAGE_TOOLS_DROPPER)
546             _page_list.expand_row(_path_tools, false);
547         if (desired_page >= PREFS_PAGE_TOOLS_SHAPES && desired_page <= PREFS_PAGE_TOOLS_SHAPES_SPIRAL)
548             _page_list.expand_row(_path_shapes, false);
549         _page_list.get_selection()->select(iter);
550         return true;
551     }
552     return false;
555 void InkscapePreferences::on_pagelist_selection_changed()
557     // show new selection
558     Glib::RefPtr<Gtk::TreeSelection> selection = _page_list.get_selection();
559     Gtk::TreeModel::iterator iter = selection->get_selected();
560     if(iter)
561     {
562         if (_current_page) 
563             _page_frame.remove();
564         Gtk::TreeModel::Row row = *iter;
565         _current_page = row[_page_list_columns._col_page];
566         prefs_set_int_attribute("dialogs.preferences", "page", row[_page_list_columns._col_id]);
567         _page_title.set_markup("<span size='large'><b>" + row[_page_list_columns._col_name] + "</b></span>");
568         _page_frame.add(*_current_page);
569         _current_page->show();
570     }
573 } // namespace Dialog
574 } // namespace UI
575 } // namespace Inkscape
577 /*
578   Local Variables:
579   mode:c++
580   c-file-style:"stroustrup"
581   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
582   indent-tabs-mode:nil
583   fill-column:99
584   End:
585 */
586 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :