Searched refs:_model (Results 1 - 16 of 16) sorted by relevance

/inkscape/src/ui/widget/
H A Dcombo-enums.h49 _model = Gtk::ListStore::create(_columns);
50 set_model(_model);
56 Gtk::TreeModel::Row row = *_model->append();
65 _model->set_default_sort_func(sigc::mem_fun(*this, &ComboBoxEnum<E>::on_sort_compare));
66 _model->set_sort_column(_columns.label, Gtk::SORT_ASCENDING);
77 _model = Gtk::ListStore::create(_columns);
78 set_model(_model);
84 Gtk::TreeModel::Row row = *_model->append();
93 _model->set_default_sort_func(sigc::mem_fun(*this, &ComboBoxEnum<E>::on_sort_compare));
94 _model
177 Glib::RefPtr<Gtk::ListStore> _model; member in class:Inkscape::UI::Widget::ComboBoxEnum
[all...]
/inkscape/src/2geom/numeric/
H A Dfitting-tool.h68 lsf_base( model_type const& _model, size_t forecasted_samples ) argument
69 : m_model(_model),
147 lsf_solution<ModelT, double>( model_type const& _model, argument
149 : base_type(_model, forecasted_samples),
150 m_solution(_model.size())
223 lsf_solution<ModelT, Point>( model_type const& _model, argument
225 : base_type(_model, forecasted_samples),
226 m_solution(_model.size(), 2)
321 lsf_with_fixed_terms<ModelT, false>( model_type const& _model, argument
323 : base_type(_model, forecasted_sample
[all...]
/inkscape/src/live_effects/parameter/
H A Doriginalpatharray.cpp74 _model = new ModelColumns();
75 _store = Gtk::TreeStore::create(*_model);
84 _name_column->add_attribute(_text_renderer->property_text(), _model->_colLabel);
87 _tree.set_search_column(_model->_colLabel);
94 col->add_attribute(_toggle_renderer->property_active(), _model->_colReverse);
115 delete _model;
122 PathAndDirection *w = row[_model->_colObject];
123 row[_model->_colReverse] = !row[_model->_colReverse];
124 w->reversed = row[_model
[all...]
H A Doriginalpatharray.h88 ModelColumns *_model; member in class:Inkscape::LivePathEffect::OriginalPathArrayParam
/inkscape/src/ui/dialog/
H A Dtags.cpp312 SPObject * obj = row[_model->_colObject];
325 if ( obj == row[_model->_colObject] )
332 //row[_model->_colLabel] = layer->label() ? layer->label() : layer->getId();
340 row[_model->_colLabel] = label ? label : obj->getId();
341 row[_model->_colAddRemove] = SP_IS_TAG(obj);
364 SPObject * it = row[_model->_colObject];
407 row[_model->_colObject] = child;
408 row[_model->_colParentObject] = NULL;
409 row[_model->_colLabel] = child->label() ? child->label() : child->getId();
410 row[_model
[all...]
H A Dlayers.cpp328 if ( layer == row[_model->_colObject] )
335 //row[_model->_colLabel] = layer->label() ? layer->label() : layer->getId();
337 row[_model->_colLabel] = label ? label : layer->getId();
338 row[_model->_colVisible] = SP_IS_ITEM(layer) ? !SP_ITEM(layer)->isHidden() : false;
339 row[_model->_colLocked] = SP_IS_ITEM(layer) ? SP_ITEM(layer)->isLocked() : false;
364 if ( layer == row[_model->_colObject] )
413 row[_model->_colObject] = child;
414 row[_model->_colLabel] = child->defaultLabel();
415 row[_model->_colVisible] = SP_IS_ITEM(child) ? !SP_ITEM(child)->isHidden() : false;
416 row[_model
[all...]
H A Dobjects.cpp353 row[_model->_colObject] = item;
356 row[_model->_colLabel] = item->label() ? item->label() : item->getId();
358 row[_model->_colLabel] = Glib::ustring("getId_failure");
361 row[_model->_colVisible] = !item->isHidden();
362 row[_model->_colLocked] = !item->isSensitive();
363 row[_model->_colType] = group ? (group->layerMode() == SPGroup::LAYER ? 2 : 1) : 0;
364 row[_model->_colHighlight] = item->isHighlightSet() ? item->highlight_color() : item->highlight_color() & 0xffffff00;
365 row[_model->_colClipMask] = item->clip_ref && item->clip_ref->getObject() ? 1 : (item->mask_ref && item->mask_ref->getObject() ? 2 : 0);
366 //row[_model->_colInsertOrder] = group ? (group->insertBottom() ? 2 : 1) : 0;
418 if ( obj == row[_model
[all...]
H A Dlayer-properties.cpp211 _model = zoop;
221 col->add_attribute( eyeRenderer->property_active(), _model->_colVisible );
229 col->add_attribute( renderer->property_active(), _model->_colLocked );
235 _name_column->add_attribute(_text_renderer->property_text(), _model->_colLabel);
285 row[_model->_colObject] = child;
286 row[_model->_colLabel] = child->label() ? child->label() : child->getId();
287 row[_model->_colVisible] = SP_IS_ITEM(child) ? !SP_ITEM(child)->isHidden() : false;
288 row[_model->_colLocked] = SP_IS_ITEM(child) ? SP_ITEM(child)->isLocked() : false;
312 obj = row[_model->_colObject];
H A Dfilter-effects-dialog.cpp411 _model = Gtk::ListStore::create(_columns);
412 _tree.set_model(_model);
425 for(Gtk::TreeIter iter = _model->children().begin();
426 iter != _model->children().end(); ++iter) {
436 for(Gtk::TreeIter iter = _model->children().begin();
437 iter != _model->children().end(); ++iter) {
452 for(Gtk::TreeIter iter = _model->children().begin();
453 iter != _model->children().end(); ++iter) {
496 _model->clear();
519 Gtk::TreeRow row = *(_model
536 Glib::RefPtr<Gtk::ListStore> _model; member in class:Inkscape::UI::Dialog::FilterEffectsDialog::MatrixAttr
[all...]
H A Dlayer-properties.h134 ModelColumns* _model; member in class:Inkscape::UI::Dialogs::LayerPropertiesDialog
H A Dlayers.h112 ModelColumns* _model; member in class:Inkscape::UI::Dialog::LayersPanel
H A Dfilter-effects-dialog.h127 Glib::RefPtr<Gtk::ListStore> _model; member in class:Inkscape::UI::Dialog::FilterEffectsDialog::FilterModifier
242 Glib::RefPtr<Gtk::ListStore> _model; member in class:Inkscape::UI::Dialog::FilterEffectsDialog::PrimitiveList
H A Dsvg-fonts-dialog.cpp271 _model->clear();
273 Gtk::TreeModel::Row row = *_model->append();
870 const int count = _model->children().size();
911 _model = Gtk::ListStore::create(_columns);
912 _FontsList.set_model(_model);
H A Dobjects.h103 ModelColumns* _model; member in class:Inkscape::UI::Dialog::ObjectsPanel
H A Dsvg-fonts-dialog.h161 Glib::RefPtr<Gtk::ListStore> _model; member in class:Inkscape::UI::Dialog::SvgFontsDialog
H A Dtags.h125 ModelColumns* _model; member in class:Inkscape::UI::Dialog::TagsPanel

Completed in 32 milliseconds