Lines Matching defs:InkscapePreferences
76 InkscapePreferences::InkscapePreferences()
118 page_list_selection->signal_changed().connect(sigc::mem_fun(*this, &InkscapePreferences::on_pagelist_selection_changed));
147 signalPresent().connect(sigc::mem_fun(*this, &InkscapePreferences::_presentPages));
152 _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::SetMaxDialogSize));
157 InkscapePreferences::~InkscapePreferences()
161 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, int id)
166 Gtk::TreeModel::iterator InkscapePreferences::AddPage(DialogPage& p, Glib::ustring title, Gtk::TreeModel::iterator parent, int id)
180 void InkscapePreferences::AddSelcueCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
187 void InkscapePreferences::AddGradientCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value)
194 void InkscapePreferences::AddConvertGuidesCheckbox(DialogPage &p, Glib::ustring const &prefs_path, bool def_value) {
200 void InkscapePreferences::AddDotSizeSpinbutton(DialogPage &p, Glib::ustring const &prefs_path, double def_value)
209 void InkscapePreferences::AddBaseSimplifySpinbutton(DialogPage &p, Glib::ustring const &prefs_path, double def_value)
269 void InkscapePreferences::AddNewObjectsStyle(DialogPage &p, Glib::ustring const &prefs_path, const gchar *banner)
310 void InkscapePreferences::initPageTools()
532 void InkscapePreferences::initPageUI()
641 reset_recent->signal_clicked().connect(sigc::mem_fun(*this, &InkscapePreferences::on_reset_open_recent_clicked));
886 void InkscapePreferences::initPageIO()
1180 void InkscapePreferences::initPageBehavior()
1423 void InkscapePreferences::initPageRendering()
1486 void InkscapePreferences::initPageBitmaps()
1540 void InkscapePreferences::initKeyboardShortcuts(Gtk::TreeModel::iterator iter_ui)
1561 _kb_filter->set_visible_func (sigc::mem_fun(*this, &InkscapePreferences::onKBSearchFilter));
1581 _kb_tree.get_column(1)->set_cell_data_func(_kb_shortcut_renderer, sigc::ptr_fun(InkscapePreferences::onKBShortcutRenderer));
1589 _kb_shortcut_renderer.signal_accel_edited().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBTreeEdited) );
1590 _kb_shortcut_renderer.signal_accel_cleared().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBTreeCleared) );
1633 kb_reset->signal_clicked().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBReset) );
1634 kb_import->signal_clicked().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBImport) );
1635 kb_export->signal_clicked().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBExport) );
1636 _kb_search.signal_key_release_event().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBSearchKeyEvent) );
1637 _kb_filelist.signal_changed().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBList) );
1638 _page_keyshortcuts.signal_realize().connect( sigc::mem_fun(*this, &InkscapePreferences::onKBRealize) );
1653 void InkscapePreferences::onKBList()
1659 void InkscapePreferences::onKBReset()
1666 void InkscapePreferences::onKBImport()
1673 void InkscapePreferences::onKBExport()
1678 bool InkscapePreferences::onKBSearchKeyEvent(GdkEventKey * /*event*/)
1684 void InkscapePreferences::onKBTreeCleared(const Glib::ustring& path)
1698 void InkscapePreferences::onKBTreeEdited (const Glib::ustring& path, guint accel_key, Gdk::ModifierType accel_mods, guint hardware_keycode)
1726 bool InkscapePreferences::onKBSearchFilter(const Gtk::TreeModel::const_iterator& iter)
1748 void InkscapePreferences::onKBRealize()
1756 InkscapePreferences::ModelColumns &InkscapePreferences::onKBGetCols()
1758 static InkscapePreferences::ModelColumns cols;
1762 void InkscapePreferences::onKBShortcutRenderer(Gtk::CellRenderer *renderer, Gtk::TreeIter const &iter) {
1774 void InkscapePreferences::onKBListKeyboardShortcuts()
1874 void InkscapePreferences::initPageSpellcheck()
1961 void InkscapePreferences::initPageSystem()
2047 bool InkscapePreferences::SetMaxDialogSize(const Gtk::TreeModel::iterator& iter)
2066 bool InkscapePreferences::PresentPage(const Gtk::TreeModel::iterator& iter)
2090 void InkscapePreferences::on_reset_open_recent_clicked()
2109 void InkscapePreferences::on_pagelist_selection_changed()
2136 void InkscapePreferences::_presentPages()
2138 _page_list_model->foreach_iter(sigc::mem_fun(*this, &InkscapePreferences::PresentPage));