Code

Remove "show transform handles" from prefs - no longer necessary
[inkscape.git] / src / ui / dialog / inkscape-preferences.h
1 /** @file
2  * @brief Inkscape Preferences dialog
3  */
4 /* Authors:
5  *   Carl Hetherington
6  *   Marco Scholten
7  *   Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
8  *   Bruno Dilly <bruno.dilly@gmail.com>
9  *
10  * Copyright (C) 2004-2007 Authors
11  *
12  * Released under GNU GPL.  Read the file 'COPYING' for more information.
13  */
15 #ifndef INKSCAPE_UI_DIALOG_INKSCAPE_PREFERENCES_H
16 #define INKSCAPE_UI_DIALOG_INKSCAPE_PREFERENCES_H
18 #include <iostream>
19 #include <vector>
20 #include <gtkmm/base.h>
21 #include <gtkmm/table.h>
22 #include <gtkmm/colorbutton.h>
23 #include <gtkmm/comboboxtext.h>
24 #include <gtkmm/spinbutton.h>
25 #include <gtkmm/treestore.h>
26 #include <gtkmm/treeview.h>
27 #include <gtkmm/radiobutton.h>
28 #include <gtkmm/frame.h>
29 #include <gtkmm/notebook.h>
30 #include "ui/widget/preferences-widget.h"
31 #include <sigc++/sigc++.h>
32 #include <glibmm/i18n.h>
33 #include <gtkmm/textview.h>
34 #include <gtkmm/scrolledwindow.h>
36 #include "ui/widget/panel.h"
38 // UPDATE THIS IF YOU'RE ADDING PREFS PAGES.
39 // Otherwise the commands that open the dialog with the new page will fail.
41 enum {
42     PREFS_PAGE_TOOLS,
43     PREFS_PAGE_TOOLS_SELECTOR,
44     PREFS_PAGE_TOOLS_NODE,
45     PREFS_PAGE_TOOLS_TWEAK,
46   PREFS_PAGE_TOOLS_SPRAY,
47     PREFS_PAGE_TOOLS_ZOOM,
48     PREFS_PAGE_TOOLS_SHAPES,
49     PREFS_PAGE_TOOLS_SHAPES_RECT,
50     PREFS_PAGE_TOOLS_SHAPES_3DBOX,
51     PREFS_PAGE_TOOLS_SHAPES_ELLIPSE,
52     PREFS_PAGE_TOOLS_SHAPES_STAR,
53     PREFS_PAGE_TOOLS_SHAPES_SPIRAL,
54     PREFS_PAGE_TOOLS_PENCIL,
55     PREFS_PAGE_TOOLS_PEN,
56     PREFS_PAGE_TOOLS_CALLIGRAPHY,
57     PREFS_PAGE_TOOLS_PAINTBUCKET,
58     PREFS_PAGE_TOOLS_ERASER,
59     PREFS_PAGE_TOOLS_LPETOOL,
60     PREFS_PAGE_TOOLS_TEXT,
61     PREFS_PAGE_TOOLS_GRADIENT,
62     PREFS_PAGE_TOOLS_CONNECTOR,
63     PREFS_PAGE_TOOLS_DROPPER,
64     PREFS_PAGE_SELECTING,
65     PREFS_PAGE_TRANSFORMS,
66     PREFS_PAGE_CLONES,
67     PREFS_PAGE_MASKS,
68     PREFS_PAGE_FILTERS,
69     PREFS_PAGE_BITMAPS,
70     PREFS_PAGE_CMS,
71     PREFS_PAGE_GRIDS,
72     PREFS_PAGE_SVGOUTPUT,
73     PREFS_PAGE_SAVE,
74     PREFS_PAGE_IMPORTEXPORT,
75     PREFS_PAGE_MOUSE,
76     PREFS_PAGE_SCROLLING,
77     PREFS_PAGE_SNAPPING,
78     PREFS_PAGE_STEPS,
79     PREFS_PAGE_UI,
80     PREFS_PAGE_WINDOWS,
81     PREFS_PAGE_SPELLCHECK,
82     PREFS_PAGE_MISC
83 };
85 using namespace Inkscape::UI::Widget;
87 namespace Inkscape {
88 namespace UI {
89 namespace Dialog {
91 class InkscapePreferences : public UI::Widget::Panel {
92 public:
93     virtual ~InkscapePreferences();
95     static InkscapePreferences &getInstance() { return *new InkscapePreferences(); }
97 protected:
98     Gtk::Frame _page_frame;
99     Gtk::Label _page_title;
100     Gtk::TreeView _page_list;
101     Glib::RefPtr<Gtk::TreeStore> _page_list_model;
103     //Pagelist model columns:
104     class PageListModelColumns : public Gtk::TreeModel::ColumnRecord
105     {
106     public:
107         PageListModelColumns()
108         { Gtk::TreeModelColumnRecord::add(_col_name); Gtk::TreeModelColumnRecord::add(_col_page); Gtk::TreeModelColumnRecord::add(_col_id); }
109         Gtk::TreeModelColumn<Glib::ustring> _col_name;
110         Gtk::TreeModelColumn<int> _col_id;
111         Gtk::TreeModelColumn<DialogPage*> _col_page;
112     };
113     PageListModelColumns _page_list_columns;
115     Gtk::TreeModel::Path _path_tools;
116     Gtk::TreeModel::Path _path_shapes;
118     DialogPage _page_mouse, _page_scrolling, _page_snapping, _page_steps, _page_tools, _page_windows,
119         _page_clones, _page_mask, _page_transforms, _page_filters, _page_select,
120         _page_importexport, _page_cms, _page_grids, _page_svgoutput, _page_misc,
121         _page_ui, _page_save, _page_bitmaps, _page_spellcheck;
122     DialogPage _page_selector, _page_node, _page_tweak, _page_spray, _page_zoom, _page_shapes, _page_pencil, _page_pen,
123                _page_calligraphy, _page_text, _page_gradient, _page_connector, _page_dropper, _page_lpetool;
124     DialogPage _page_rectangle, _page_3dbox, _page_ellipse, _page_star, _page_spiral, _page_paintbucket, _page_eraser;
126     PrefSpinButton _mouse_sens, _mouse_thres;
127     PrefCheckButton _mouse_use_ext_input;
128     PrefCheckButton _mouse_switch_on_ext_input;
130     PrefSpinButton _scroll_wheel, _scroll_arrow_px, _scroll_arrow_acc, _scroll_auto_speed, _scroll_auto_thres;
131     PrefCheckButton _scroll_space;
132     PrefCheckButton _wheel_zoom;
134     Gtk::HScale     *_slider_snapping_delay;
135     PrefCheckButton _snap_indicator, _snap_closest_only, _snap_mouse_pointer;
137     PrefCombo       _steps_rot_snap;
138     PrefCheckButton _steps_compass;
139     PrefSpinButton  _steps_arrow, _steps_scale, _steps_inset, _steps_zoom;
141     PrefRadioButton _t_sel_trans_obj, _t_sel_trans_outl, _t_sel_cue_none, _t_sel_cue_mark,
142                     _t_sel_cue_box, _t_bbox_visual, _t_bbox_geometric;
143     PrefCheckButton _t_cvg_keep_objects, _t_cvg_convert_whole_groups;
144     PrefCheckButton _t_node_show_outline;
145     PrefCheckButton _t_node_pathflash_enabled;
146     PrefCheckButton _t_node_pathflash_selected;
147     PrefSpinButton  _t_node_pathflash_timeout;
148     PrefCheckButton _t_node_show_path_direction;
149     PrefCheckButton _t_node_single_node_transform_handles;
150     PrefColorPicker _t_node_pathoutline_color;
152     PrefRadioButton _win_dockable, _win_floating;
153     PrefRadioButton _win_ontop_none, _win_ontop_normal, _win_ontop_agressive;
154     PrefRadioButton _win_save_geom_off, _win_save_geom, _win_save_geom_prefs;
155     PrefCheckButton _win_hide_task, _win_zoom_resize , _win_show_close;
156     PrefSpinButton _win_trans_focus; /**< The dialog transparency setting for when the dialog is focused. */
157     PrefSpinButton _win_trans_blur;  /**< The dialog transparency setting for when the dialog is out of focus. */
158     PrefSpinButton _win_trans_time;  /**< How much time to go from one transparency setting to another */
160     PrefCheckButton _pencil_average_all_sketches;
162     PrefCheckButton _calligrapy_use_abs_size;
163     PrefCheckButton _calligrapy_keep_selected;
165     PrefCheckButton _connector_ignore_text;
167     PrefRadioButton _clone_option_parallel, _clone_option_stay, _clone_option_transform,
168                     _clone_option_unlink, _clone_option_delete;
169     PrefCheckButton _clone_relink_on_duplicate;
171     PrefCheckButton _mask_mask_on_top;
172     PrefCheckButton _mask_mask_remove;
174     PrefRadioButton _blur_quality_best, _blur_quality_better, _blur_quality_normal, _blur_quality_worse, _blur_quality_worst;
175     PrefRadioButton _filter_quality_best, _filter_quality_better, _filter_quality_normal, _filter_quality_worse, _filter_quality_worst;
176     PrefCheckButton _show_filters_info_box;
177     PrefSpinButton  _filter_multi_threaded;
179     PrefCheckButton _trans_scale_stroke, _trans_scale_corner, _trans_gradient,_trans_pattern;
180     PrefRadioButton _trans_optimized, _trans_preserved;
182     PrefRadioButton _sel_all;
183     PrefRadioButton _sel_current;
184     PrefRadioButton _sel_recursive;
185     PrefCheckButton _sel_hidden, _sel_locked;
186     PrefCheckButton _sel_layer_deselects;
188     PrefSpinButton  _importexport_export, _misc_simpl;
189     PrefSlider      _snap_delay, _snap_weight;
190     PrefSpinButton  _misc_latency_skew;
191     PrefCheckButton _misc_comment, _misc_forkvectors, _misc_scripts, _misc_namedicon_delay;
192     Gtk::TextView   _misc_info;
193     Gtk::ScrolledWindow _misc_info_scroll;
196     // UI page
197     PrefCombo       _ui_languages;
198     PrefCombo       _misc_small_toolbar;
199     PrefCombo       _misc_small_secondary;
200     PrefCombo       _misc_small_tools;
201     PrefCheckButton _ui_colorsliders_top;
202     PrefSpinButton  _misc_recent;
203     ZoomCorrRulerSlider _ui_zoom_correction;
205     //Spellcheck
206     PrefCombo       _spell_language;
207     PrefCombo       _spell_language2;
208     PrefCombo       _spell_language3;
209     PrefCheckButton _spell_ignorenumbers;
210     PrefCheckButton _spell_ignoreallcaps;
212     PrefCombo       _misc_overs_bitmap;
213     PrefCombo       _misc_bitmap_editor;
214     PrefCheckButton _misc_bitmap_autoreload;
215     PrefSpinButton  _bitmap_copy_res;
217     PrefCheckButton _save_use_current_dir;
218     PrefCheckButton _save_autosave_enable;
219     PrefSpinButton  _save_autosave_interval;
220     PrefEntry       _save_autosave_path;
221     PrefSpinButton  _save_autosave_max;
223     Gtk::ComboBoxText   _cms_display_profile;
224     PrefCheckButton     _cms_from_display;
225     PrefCombo           _cms_intent;
227     PrefCheckButton     _cms_softproof;
228     PrefCheckButton     _cms_gamutwarn;
229     Gtk::ColorButton    _cms_gamutcolor;
230     Gtk::ComboBoxText   _cms_proof_profile;
231     PrefCombo           _cms_proof_intent;
232     PrefCheckButton     _cms_proof_blackpoint;
233     PrefCheckButton     _cms_proof_preserveblack;
235     Gtk::Notebook       _grids_notebook;
236     PrefCheckButton     _grids_no_emphasize_on_zoom;
237     DialogPage          _grids_xy, _grids_axonom;
238     // CanvasXYGrid properties:
239         PrefUnit            _grids_xy_units;
240         PrefSpinButton      _grids_xy_origin_x;
241         PrefSpinButton      _grids_xy_origin_y;
242         PrefSpinButton      _grids_xy_spacing_x;
243         PrefSpinButton      _grids_xy_spacing_y;
244         PrefColorPicker     _grids_xy_color;
245         PrefColorPicker     _grids_xy_empcolor;
246         PrefSpinButton      _grids_xy_empspacing;
247         PrefCheckButton     _grids_xy_dotted;
248     // CanvasAxonomGrid properties:
249         PrefUnit            _grids_axonom_units;
250         PrefSpinButton      _grids_axonom_origin_x;
251         PrefSpinButton      _grids_axonom_origin_y;
252         PrefSpinButton      _grids_axonom_spacing_y;
253         PrefSpinButton      _grids_axonom_angle_x;
254         PrefSpinButton      _grids_axonom_angle_z;
255         PrefColorPicker     _grids_axonom_color;
256         PrefColorPicker     _grids_axonom_empcolor;
257         PrefSpinButton      _grids_axonom_empspacing;
259     // SVG Output page:
260     PrefCheckButton   _svgoutput_usenamedcolors;
261     PrefSpinButton    _svgoutput_numericprecision;
262     PrefSpinButton    _svgoutput_minimumexponent;
263     PrefCheckButton   _svgoutput_inlineattrs;
264     PrefSpinButton    _svgoutput_indent;
265     PrefCheckButton   _svgoutput_allowrelativecoordinates;
266     PrefCheckButton   _svgoutput_forcerepeatcommands;
268     PrefEntryButtonHBox _importexport_ocal_url;
269     PrefEntry       _importexport_ocal_username;
270     PrefEntry       _importexport_ocal_password;
272     int _max_dialog_width;
273     int _max_dialog_height;
274     int _sb_width;
275     DialogPage* _current_page;
277     Gtk::TreeModel::iterator AddPage(DialogPage& p, Glib::ustring title, int id);
278     Gtk::TreeModel::iterator AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id);
279     bool SetMaxDialogSize(const Gtk::TreeModel::iterator& iter);
280     bool PresentPage(const Gtk::TreeModel::iterator& iter);
282     static void AddSelcueCheckbox(DialogPage& p, Glib::ustring const &prefs_path, bool def_value);
283     static void AddGradientCheckbox(DialogPage& p, Glib::ustring const &prefs_path, bool def_value);
284     static void AddConvertGuidesCheckbox(DialogPage& p, Glib::ustring const &prefs_path, bool def_value);
285     static void AddDotSizeSpinbutton(DialogPage& p, Glib::ustring const &prefs_path, double def_value);
286     static void AddNewObjectsStyle(DialogPage& p, Glib::ustring const &prefs_path, const gchar* banner = NULL);
288     void on_pagelist_selection_changed();
289     void on_reset_open_recent_clicked();
290     void initPageMouse();
291     void initPageScrolling();
292     void initPageSnapping();
293     void initPageSteps();
294     void initPageTools();
295     void initPageWindows();
296     void initPageClones();
297     void initPageMasks();
298     void initPageTransforms();
299     void initPageFilters();
300     void initPageSelecting();
301     void initPageImportExport();
302     void initPageCMS();
303     void initPageGrids();
304     void initPageSVGOutput();
305     void initPageUI();
306     void initPageSpellcheck();
307     void initPageSave();
308     void initPageBitmaps();
309     void initPageMisc();
310     void initPageI18n();
312     void _presentPages();
314 private:
315     InkscapePreferences();
316     InkscapePreferences(InkscapePreferences const &d);
317     InkscapePreferences operator=(InkscapePreferences const &d);
318 };
320 } // namespace Dialog
321 } // namespace UI
322 } // namespace Inkscape
324 #endif //INKSCAPE_UI_DIALOG_INKSCAPE_PREFERENCES_H
326 /*
327   Local Variables:
328   mode:c++
329   c-file-style:"stroustrup"
330   c-file-offsets:((innamespace . 0)(inline-open . 0))
331   indent-tabs-mode:nil
332   fill-column:99
333   End:
334 */
335 // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :