Searched refs:apply_x (Results 1 - 4 of 4) sorted by relevance
/inkscape/src/ui/ |
H A D | clipboard.h | 50 virtual bool pasteSize(SPDesktop *desktop, bool separately, bool apply_x, bool apply_y) = 0;
|
H A D | clipboard.cpp | 113 virtual bool pasteSize(SPDesktop *desktop, bool separately, bool apply_x, bool apply_y); 143 Geom::Scale _getScale(SPDesktop *desktop, Geom::Point const &min, Geom::Point const &max, Geom::Rect const &obj_rect, bool apply_x, bool apply_y); 489 * @param apply_x Whether to scale the width of objects / selection 492 bool ClipboardManagerImpl::pasteSize(SPDesktop *desktop, bool separately, bool apply_x, bool apply_y) argument 494 if (!apply_x && !apply_y) { 531 sp_item_scale_rel(item, _getScale(desktop, min, max, *obj_size, apply_x, apply_y)); 543 _getScale(desktop, min, max, *sel_size, apply_x, apply_y)); 1272 Geom::Scale ClipboardManagerImpl::_getScale(SPDesktop *desktop, Geom::Point const &min, Geom::Point const &max, Geom::Rect const &obj_rect, bool apply_x, bool apply_y) argument 1277 if (apply_x) { 1286 if (apply_x [all...] |
/inkscape/src/ |
H A D | selection-chemistry.h | 99 void sp_selection_paste_size(SPDesktop *desktop, bool apply_x, bool apply_y); 100 void sp_selection_paste_size_separately(SPDesktop *desktop, bool apply_x, bool apply_y);
|
H A D | selection-chemistry.cpp | 1324 void sp_selection_paste_size(SPDesktop *desktop, bool apply_x, bool apply_y) argument 1327 if (cm->pasteSize(desktop, false, apply_x, apply_y)) { 1333 void sp_selection_paste_size_separately(SPDesktop *desktop, bool apply_x, bool apply_y) argument 1336 if (cm->pasteSize(desktop, true, apply_x, apply_y)) {
|
Completed in 26 milliseconds