Searched defs:newValue (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/ui/dialog/
H A Dlivepatheffect-editor.cpp568 bool newValue = !row[columns.col_visible]; local
569 row[columns.col_visible] = newValue;
572 lpeobjref->lpeobject->get_lpe()->getRepr()->setAttribute("is_visible", newValue ? "true" : "false");
574 newValue ? _("Activate path effect") : _("Deactivate path effect"));
H A Dlayers.cpp520 bool newValue = !row[_model->_colVisible]; local
521 row[_model->_colVisible] = newValue;
522 item->setHidden( !newValue );
525 newValue? _("Unhide layer") : _("Hide layer"));
531 bool newValue = !row[_model->_colLocked]; local
532 row[_model->_colLocked] = newValue;
533 item->setLocked( newValue );
536 newValue? _("Lock layer") : _("Unlock layer"));
H A Dobjects.cpp859 bool newValue = !row[_model->_colVisible]; local
864 _tree.get_selection()->selected_foreach_iter(sigc::bind<bool>(sigc::mem_fun(*this, &ObjectsPanel::_setVisibleIter), newValue));
869 row[_model->_colVisible] = newValue;
870 item->setHidden(!newValue);
874 newValue? _("Unhide objects") : _("Hide objects"));
879 bool newValue = !row[_model->_colLocked]; local
884 _tree.get_selection()->selected_foreach_iter(sigc::bind<bool>(sigc::mem_fun(*this, &ObjectsPanel::_setLockedIter), newValue));
889 row[_model->_colLocked] = newValue;
890 item->setLocked( newValue );
894 newValue
901 bool newValue = g->layerMode() == SPGroup::LAYER; local
[all...]
/inkscape/src/widgets/
H A Dconnector-toolbar.cpp142 gdouble newValue = gtk_adjustment_get_value(adj); local
144 g_ascii_dtostr(value, G_ASCII_DTOSTR_BUF_SIZE, newValue);
161 prefs->setDouble(Glib::ustring("/tools/connector/curvature"), newValue);

Completed in 37 milliseconds