/inkscape/src/io/ |
H A D | bufferstream.h | 64 long position; member in class:Inkscape::IO::BufferInputStream
|
H A D | stringstream.h | 42 long position; member in class:Inkscape::IO::StringInputStream
|
/inkscape/src/ |
H A D | sp-item-notify-moveto.cpp | 21 double const position, bool const commit) 36 /* Translate along dir to make dot(dir, snappoints(item)[snappoint_ix]) == position. */ 39 dot(dir, snappoints[snappoint_ix] + s * dir) = position. 40 dot(dir, snappoints[snappoint_ix]) + dot(dir, s * dir) = position. 41 pos0 + s * dot(dir, dir) = position. 42 s * lensq(dir) = position - pos0. 43 s = (position - pos0) / dot(dir, dir). */ 44 Geom::Translate const tr( ( position - pos0 ) 20 sp_item_notify_moveto(SPItem &item, SPGuide const &mv_g, int const snappoint_ix, double const position, bool const commit) argument
|
H A D | layer-fns.cpp | 171 SPObject *create_layer(SPObject *root, SPObject *layer, LayerRelativePosition position) { argument 187 if ( LPOS_CHILD == position ) { 201 if ( LPOS_BELOW == position ) {
|
H A D | uri-references.cpp | 78 int position = 0; local 81 position++; 84 positions.push_back(position);
|
H A D | knot.cpp | 402 /* If user did not complete, we simply move knot to new position */ 426 Geom::Point SPKnot::position() const { function in class:SPKnot
|
H A D | path-chemistry.cpp | 89 // remember the position, id, transform and style of the topmost path, they will be assigned to the combined one 90 gint position = 0; local 121 position = first->getRepr()->position(); 134 // reduce position only if the same parent 136 position--; 173 // move to the position of the topmost, reduced by the number of deleted items 174 repr->setPosition(position > 0 ? position : 0); 223 gint pos = item->getRepr()->position(); [all...] |
/inkscape/src/libvpsc/ |
H A D | variable.h | 42 inline double position() const { function in class:vpsc::Variable 45 //double position() const;
|
/inkscape/src/util/ |
H A D | ziptool.h | 370 unsigned long position; member in class:ZipEntry
|
H A D | list-container.h | 129 iterator insert(const_iterator position, const_reference value) { argument 130 if (position) { 131 if ( position != _head ) { 133 MutableList<T> before=_before(position); 146 void insert(const_iterator position, size_type count, const_reference value) argument 148 _insert_from_temp(position, ListContainer(count, value)); 151 void insert(const_iterator position, ForwardIterator i, ForwardIterator j) { argument 152 _insert_from_temp(position, ListContainer(i, j)); 154 void erase(const_iterator position) { argument 155 erase(position, res 256 insert_after(const_iterator position, size_type count, const_reference value) argument 262 insert_after(const_iterator position, ForwardIterator i, ForwardIterator j) argument 267 erase_after(const_iterator position) argument 284 _before(const_iterator position) argument [all...] |
/inkscape/src/ui/dialog/ |
H A D | lpe-fillet-chamfer-properties.cpp | 200 double position; local 210 position = modf(knotpoint[Geom::X], &intpart) * 100; 218 position = knotpoint[Geom::X] * -1; 220 _fillet_chamfer_position_numeric.set_value(position);
|
H A D | dock-behavior.cpp | 152 DockBehavior::set_position(Gtk::WindowPosition position) argument 154 _dock_item.set_position(position);
|
H A D | floating-behavior.cpp | 155 inline void FloatingBehavior::set_position(Gtk::WindowPosition position) { _d->set_position(position); } argument
|
H A D | layer-properties.cpp | 175 row->set_value(_dropdown_columns.position, LPOS_ABOVE); 179 row->set_value(_dropdown_columns.position, LPOS_BELOW); 182 row->set_value(_dropdown_columns.position, LPOS_CHILD); 387 LayerRelativePosition position = LPOS_ABOVE; local 391 position = activeRow->get_value(dialog._dropdown_columns.position); 397 SPObject *new_layer=Inkscape::create_layer(desktop->currentRoot(), dialog._layer, position);
|
H A D | layer-properties.h | 93 Gtk::TreeModelColumn<LayerRelativePosition> position; member in class:Inkscape::UI::Dialogs::LayerPropertiesDialog::PositionDropdownColumns 97 add(position); add(name);
|
/inkscape/src/extension/internal/pdfinput/ |
H A D | svg-builder.h | 73 Geom::Point position; // Absolute glyph coords member in struct:Inkscape::Extension::Internal::SvgGlyph
|
/inkscape/src/live_effects/parameter/ |
H A D | powerstrokepointarray.cpp | 76 // Path has become longer: probably node added, maintain position of knots 80 Geom::Point position = last_pwd2.valueAt(pt[Geom::X]) + pt[Geom::Y] * last_pwd2_normal.valueAt(pt[Geom::X]); local 82 double t = nearest_time(position, pwd2_in); 83 double offset = dot(position - pwd2_in.valueAt(t), normal.valueAt(t));
|
/inkscape/src/ui/tool/ |
H A D | control-point.h | 73 * position argument. 104 /// @name Adjust the position of the control point 106 /** Current position of the control point. */ 107 Geom::Point const &position() const { return _position; } function in class:Inkscape::UI::ControlPoint::Geom 112 * Move the control point to new position with side effects. 228 * @param initial_pos Initial position of the control point in desktop coordinates 242 * @param initial_pos Initial position of the control point in desktop coordinates 264 * Called while dragging, but before moving the knot to new position. 266 * @param pos Old position, always equal to position() [all...] |
/inkscape/src/display/ |
H A D | guideline.cpp | 108 int position = round(point_on_line_dt[Geom::X]); local 109 cairo_move_to(buf->ct, position + 0.5, buf->rect.top() + 0.5); 110 cairo_line_to(buf->ct, position + 0.5, buf->rect.bottom() - 0.5); 113 int position = round(point_on_line_dt[Geom::Y]); local 114 cairo_move_to(buf->ct, buf->rect.left() + 0.5, position + 0.5); 115 cairo_line_to(buf->ct, buf->rect.right() - 0.5, position + 0.5);
|
/inkscape/src/extension/ |
H A D | effect.cpp | 153 int position = -1; local 173 position = menupass->position() + 1; 190 position = menupass->position(); 199 if (position != -1) 200 tomerge->setPosition(position);
|
/inkscape/src/extension/internal/filter/ |
H A D | morphology.h | 138 * Stroke position (enum, default inside) 179 "<param name=\"position\" gui-text=\"" N_("Position:") "\" type=\"enum\">\n" 257 const gchar *position = ext->get_param_enum("position"); local 258 if((g_ascii_strcasecmp("inside", position) == 0)) { 263 } else if((g_ascii_strcasecmp("outside", position) == 0)) {
|
/inkscape/src/widgets/ |
H A D | gradient-selector.h | 5 * Gradient vector and position widget 114 GtkWidget *position; member in struct:SPGradientSelector
|
/inkscape/src/libavoid/ |
H A D | vpsc.h | 137 // be at it's desired position 159 return 2. * weight * ( position() - desiredPosition ); 162 double position() const { function in class:Avoid::Variable
|
/inkscape/src/libgdl/ |
H A D | gdl-dock-notebook.c | 57 GdlDockPlacement position, 347 GdlDockPlacement position; member in struct:__anon69 351 gdl_dock_object_dock (data->object, requestor, data->position, data->other_data); 357 GdlDockPlacement position, 365 if (position == GDL_DOCK_CENTER) { 370 GdlDockPlacement position; member in struct:__anon70 377 data.position = position; 391 gint position = -1; local 409 position 355 gdl_dock_notebook_dock(GdlDockObject *object, GdlDockObject *requestor, GdlDockPlacement position, GValue *other_data) argument [all...] |
H A D | gdl-dock-object.h | 76 GdlDockPlacement position; member in struct:_GdlDockRequest 112 GdlDockPlacement position, 169 GdlDockPlacement position,
|