Lines Matching refs:_model

353                 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->_colObject] )
424 row[_model->_colLabel] = obj->label() ? obj->label() : obj->getId();
425 row[_model->_colVisible] = item ? !item->isHidden() : false;
426 row[_model->_colLocked] = item ? !item->isSensitive() : false;
427 row[_model->_colType] = group ? (group->layerMode() == SPGroup::LAYER ? 2 : 1) : 0;
428 row[_model->_colHighlight] = item ? (item->isHighlightSet() ? item->highlight_color() : item->highlight_color() & 0xffffff00) : 0;
429 row[_model->_colClipMask] = item ? (item->clip_ref && item->clip_ref->getObject() ? 1 : (item->mask_ref && item->mask_ref->getObject() ? 2 : 0)) : 0;
430 //row[_model->_colInsertOrder] = group ? (group->insertBottom() ? 2 : 1) : 0;
462 SPItem *item = row[_model->_colObject];
567 if ( item == row[_model->_colObject] )
616 SPItem *item = row[_model->_colObject];
666 SPItem* item = row[_model->_colObject];
670 row[_model->_colVisible] = visible;
683 SPItem* item = row[_model->_colObject];
687 row[_model->_colLocked] = locked;
841 SPItem *item = row[_model->_colObject];
854 SPItem* item = row[_model->_colObject];
859 bool newValue = !row[_model->_colVisible];
869 row[_model->_colVisible] = newValue;
879 bool newValue = !row[_model->_colLocked];
889 row[_model->_colLocked] = newValue;
902 row[_model->_colType] = newValue ? 1: 2;
914 row[_model->_colInsertOrder] = newValue ? 2: 1;
936 color.set( row[_model->_colHighlight] );
937 _selectedColor->setColorAlpha(color, SP_RGBA32_A_F(row[_model->_colHighlight]));
980 SPItem* item = row[_model->_colObject];
1034 _dnd_target = row[_model->_colObject];
1051 SPItem* item = row[_model->_colObject];
1347 SPItem* item = row[_model->_colObject];
1422 SPItem* item = row[_model->_colObject];
1480 SPItem* item = row[_model->_colObject];
1514 SPItem* item = row[_model->_colObject];
1570 SPItem* item = row[_model->_colObject];
1617 _model(0),
1648 _model = zoop;
1666 col->add_attribute( eyeRenderer->property_active(), _model->_colVisible );
1680 col->add_attribute( renderer->property_active(), _model->_colLocked );
1692 col->add_attribute( typeRenderer->property_active(), _model->_colType );
1703 col->add_attribute( insertRenderer->property_active(), _model->_colInsertOrder );
1711 col->add_attribute( clipRenderer->property_active(), _model->_colClipMask );
1722 col->add_attribute( highlightRenderer->property_active(), _model->_colHighlight );
1733 _name_column->add_attribute(_text_renderer->property_text(), _model->_colLabel);
1741 _tree.set_search_column(_model->_colLabel);
1987 if ( _model )
1989 delete _model;
1990 _model = 0;