/inkscape/src/ |
H A D | sp-linear-gradient.cpp | 12 this->x1.unset(SVGLength::PERCENT, 0.0, 0.0); 13 this->y1.unset(SVGLength::PERCENT, 0.0, 0.0); 14 this->x2.unset(SVGLength::PERCENT, 1.0, 1.0); 15 this->y2.unset(SVGLength::PERCENT, 0.0, 0.0);
|
H A D | sp-radial-gradient.cpp | 14 this->cx.unset(SVGLength::PERCENT, 0.5, 0.5); 15 this->cy.unset(SVGLength::PERCENT, 0.5, 0.5); 16 this->r.unset(SVGLength::PERCENT, 0.5, 0.5); 17 this->fx.unset(SVGLength::PERCENT, 0.5, 0.5); 18 this->fy.unset(SVGLength::PERCENT, 0.5, 0.5); 19 this->fr.unset(SVGLength::PERCENT, 0.5, 0.5); 46 this->cx.unset(SVGLength::PERCENT, 0.5, 0.5); 59 this->cy.unset(SVGLength::PERCENT, 0.5, 0.5); 72 this->r.unset(SVGLength::PERCENT, 0.5, 0.5); 80 this->fx.unset(thi [all...] |
H A D | sp-root.cpp | 43 this->x.unset(SVGLength::PERCENT, 0.0, 0.0); // Ignored for root SVG element 44 this->y.unset(SVGLength::PERCENT, 0.0, 0.0); 45 this->width.unset(SVGLength::PERCENT, 1.0, 1.0); 46 this->height.unset(SVGLength::PERCENT, 1.0, 1.0); 113 this->x.unset(SVGLength::PERCENT, 0.0, 0.0); 123 this->y.unset(SVGLength::PERCENT, 0.0, 0.0); 132 this->width.unset(SVGLength::PERCENT, 1.0, 1.0); 139 this->height.unset(SVGLength::PERCENT, 1.0, 1.0); 256 this->x.unset(SVGLength::PERCENT, 0.0, 0.0); 257 this->y.unset(SVGLengt [all...] |
H A D | sp-line.cpp | 25 this->x1.unset(); 26 this->y1.unset(); 27 this->x2.unset(); 28 this->y2.unset();
|
H A D | sp-filter-primitive.cpp | 47 this->x.unset(SVGLength::PERCENT, 0, 0); 48 this->y.unset(SVGLength::PERCENT, 0, 0); 49 this->width.unset(SVGLength::PERCENT, 1, 0); 50 this->height.unset(SVGLength::PERCENT, 1, 0);
|
H A D | sp-mesh.cpp | 15 this->x.unset(SVGLength::NONE, 0.0, 0.0); 16 this->y.unset(SVGLength::NONE, 0.0, 0.0); 37 this->x.unset(SVGLength::NONE, 0.0, 0.0); 45 this->y.unset(SVGLength::NONE, 0.0, 0.0);
|
H A D | sp-image.cpp | 116 this->x.unset(); 117 this->y.unset(); 118 this->width.unset(); 119 this->height.unset(); 190 this->x.unset(); 199 this->y.unset(); 208 this->width.unset(); 217 this->height.unset(); 576 // different dir) or unset (when doc is not saved yet), so we check for base+href existence first,
|
H A D | sp-rect.cpp | 76 this->width.unset(); 84 this->height.unset(); 92 this->rx.unset(); 100 this->ry.unset(); 347 this->rx.unset(); 360 this->ry.unset();
|
H A D | sp-hatch.cpp | 54 // TODO check that these should start already as unset: 55 _x.unset(); 56 _y.unset(); 57 _pitch.unset(); 58 _rotate.unset();
|
H A D | sp-pattern.cpp | 56 this->_x.unset(); 57 this->_y.unset(); 58 this->_width.unset(); 59 this->_height.unset();
|
H A D | sp-use.cpp | 56 this->x.unset(); 57 this->y.unset(); 58 this->width.unset(SVGLength::PERCENT, 1.0, 1.0); 59 this->height.unset(SVGLength::PERCENT, 1.0, 1.0);
|
H A D | sp-hatch-path.cpp | 42 offset.unset();
|
H A D | sp-text.cpp | 115 this->width.unset(); 123 this->height.unset(); 732 // FIXME: sp_svg_length_list_read() amalgamates repeated separators. This prevents unset values. 800 // FIXME: this has no concept of unset values because sp_svg_length_list_read() can't read them back in
|
/inkscape/src/svg/ |
H A D | svg-angle.h | 54 void unset(Unit u = NONE, float v = 0, float c = 0);
|
H A D | svg-length.h | 62 void unset(Unit u = NONE, float v = 0, float c = 0);
|
H A D | svg-angle.cpp | 63 void SVGAngle::unset(SVGAngle::Unit u, float v, float c) { function in class:SVGAngle 72 unset(u, v, c);
|
H A D | svg-length.cpp | 505 void SVGLength::unset(SVGLength::Unit u, float v, float c) 587 unset(u, v, c);
|
/inkscape/src/display/ |
H A D | nr-filter-primitive.cpp | 45 _subregion_x.unset(SVGLength::PERCENT, 0, 0); 46 _subregion_y.unset(SVGLength::PERCENT, 0, 0); 47 _subregion_width.unset(SVGLength::PERCENT, 1, 0); 48 _subregion_height.unset(SVGLength::PERCENT, 1, 0); 83 // We need to copy reference even if unset as we need to know if 84 // someone has unset a value.
|
/inkscape/src/widgets/ |
H A D | paint-selector.h | 83 GtkWidget *unset; member in struct:SPPaintSelector
|
H A D | paint-selector.cpp | 234 psel->unset = sp_paint_selector_style_button_add(psel, INKSCAPE_ICON("paint-unknown"), 622 sp_paint_selector_set_style_buttons(psel, psel->unset); 820 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(psel->unset), (active == psel->unset));
|