/inkscape/src/ |
H A D | snapper.h | 76 SnapConstraint(Geom::Point const &d) : _point(), _direction(d), _radius(0), _type(DIRECTION) {} 78 SnapConstraint(Geom::Point const &p, Geom::Point const &d) : _point(p), _direction(d), _radius(0), _type(LINE) {} 80 SnapConstraint(Geom::Point const &p, Geom::Dim2 const &d) : _point(p), _direction(), _radius(0), _type(LINE) {_direction[d] = 1.;} 81 SnapConstraint(Geom::Line const &l) : _point(l.origin()), _direction(l.versor()), _radius(0), _type(LINE) {} 83 SnapConstraint(Geom::Point const &p, Geom::Point const &d, Geom::Coord const &r) : _point(p), _direction(d), _radius(r), _type(CIRCLE) {} 85 SnapConstraint() : _point(), _direction(), _radius(0), _type(UNDEFINED) {} 87 bool hasPoint() const {return _type != DIRECTION && _type != UNDEFINED;} 90 assert(_type != DIRECTION && _type ! 134 SnapConstraintType _type; member in class:Inkscape::Snapper::SnapConstraint [all...] |
H A D | event.h | 32 Event(XML::Event *_event, unsigned int _type=SP_VERB_NONE, Glib::ustring _description="") argument 33 : event (_event), type (_type), description (_description) { }
|
/inkscape/src/ui/widget/ |
H A D | unit-menu.cpp | 24 UnitMenu::UnitMenu() : _type(UNIT_TYPE_NONE) 40 _type = unit_type; 62 g_assert(_type != UNIT_TYPE_NONE); 63 return unit_table.getUnit(unit_table.primary(_type));
|
H A D | unit-menu.h | 123 UnitType _type; member in class:Inkscape::UI::Widget::UnitMenu
|
H A D | unit-tracker.h | 52 UnitType _type; member in class:Inkscape::UI::Widget::UnitTracker
|
/inkscape/src/extension/ |
H A D | dependency.cpp | 52 _type = TYPE_FILE; 79 _type = (type_t)i; 108 that is evaluted is the \c _type. 139 switch (_type) { 149 if (_type == TYPE_EXECUTABLE) { 232 } /* switch _type */ 256 out_file << _(" type: ") << _(in_dep._type_str[in_dep._type]) << '\n';
|
H A D | dependency.h | 38 type_t _type; member in class:Inkscape::Extension::Dependency
|
/inkscape/src/ui/tool/ |
H A D | node.cpp | 289 if (held_only_shift(event->key) && _parent->_type == NODE_CUSP) { 588 _type(NODE_CUSP), 723 if (_type == NODE_AUTO) _updateAutoHandles(); 725 if (_next() && _next()->_type == NODE_AUTO) _next()->_updateAutoHandles(); 726 if (_prev() && _prev()->_type == NODE_AUTO) _prev()->_updateAutoHandles(); 744 if (_type == NODE_SMOOTH && !handle->isDegenerate()) { 748 if (other->_type == NODE_SMOOTH && !other_handle->isDegenerate()) { 831 if (_type == NODE_SMOOTH) { 905 _type = type; 906 _setControlType(nodeTypeToCtrlType(_type)); [all...] |
H A D | node.h | 171 NodeType type() const { return _type; } 281 NodeType _type; ///< Type of node - cusp, smooth... member in class:Inkscape::UI::Node
|
/inkscape/src/libavoid/ |
H A D | connector.cpp | 173 _type(router->validConnType()), 199 _type(router->validConnType()), 256 return _type; 263 if (_type != type) 265 _type = type; 499 (_type == ConnType_PolyLine) ? euclideanDist : manhattanDist; 597 if (_type != ConnType_Orthogonal) 838 if ((_type == ConnType_PolyLine) && _router->InvisibilityGrph) 858 if (_router->InvisibilityGrph && (_type == ConnType_PolyLine))
|
H A D | connector.h | 321 ConnType _type; member in class:Avoid::ConnRef
|
/inkscape/src/ui/dialog/ |
H A D | filter-effects-dialog.cpp | 1031 _type(ComponentTransferTypeConverter, SP_ATTR_TYPE, false), 1037 _box.add(_type); 1038 _box.reorder_child(_type, 0); 1039 _type.signal_changed().connect(sigc::mem_fun(*this, &ComponentTransferValues::on_type_changed)); 1093 _type.set_from_attribute( _funcNode ); 1139 _funcNode->getRepr()->setAttribute( "type", _type.get_as_attribute().c_str() ); 1153 _settings.show_and_update(_type.get_active_data()->id, _funcNode); 1166 ComboBoxEnum<FilterComponentTransferType> _type; member in class:Inkscape::UI::Dialog::FilterEffectsDialog::ComponentTransferValues
|