Searched refs:_type (Results 1 - 12 of 12) sorted by relevance

/inkscape/src/
H A Dsnapper.h76 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 Devent.h32 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 Dunit-menu.cpp24 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 Dunit-menu.h123 UnitType _type; member in class:Inkscape::UI::Widget::UnitMenu
H A Dunit-tracker.h52 UnitType _type; member in class:Inkscape::UI::Widget::UnitTracker
/inkscape/src/extension/
H A Ddependency.cpp52 _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 Ddependency.h38 type_t _type; member in class:Inkscape::Extension::Dependency
/inkscape/src/ui/tool/
H A Dnode.cpp289 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 Dnode.h171 NodeType type() const { return _type; }
281 NodeType _type; ///< Type of node - cusp, smooth... member in class:Inkscape::UI::Node
/inkscape/src/libavoid/
H A Dconnector.cpp173 _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 Dconnector.h321 ConnType _type; member in class:Avoid::ConnRef
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp1031 _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

Completed in 272 milliseconds