path-chemistry.cpp revision 82cc53d3d7df150dea4c92b42dc58c79b644767e
/*
* Here are handlers for modifying selections, specific to paths
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Jasper van de Gronde <th.v.d.gronde@hccnet.nl>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 1999-2008 Authors
* Copyright (C) 2001-2002 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <cstring>
#include <string>
#include <glib.h>
#include "sp-path.h"
#include "sp-text.h"
#include "sp-flowtext.h"
#include "text-editing.h"
#include "style.h"
#include "desktop.h"
#include "document.h"
#include "document-undo.h"
#include "message-stack.h"
#include "selection.h"
#include "desktop-handles.h"
#include "box3d.h"
#include "selection-chemistry.h"
#include "path-chemistry.h"
#include "verbs.h"
using Inkscape::DocumentUndo;
void
{
sp_desktop_message_stack(desktop)->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to combine."));
return;
}
// set "busy" cursor
}
// remember the position, id, transform and style of the topmost path, they will be assigned to the combined one
if (did) {
}
if (!SP_IS_PATH(item)) {
continue;
}
if (!did) {
did = true;
}
// FIXME: merge styles of combined objects instead of using the first one's style
//c->transform(item->transform);
curve = c;
} else {
c->unref();
// reduce position only if the same parent
position--;
}
// delete the object for real, so that its clones can take appropriate action
item->deleteObject();
}
}
if (did) {
first->deleteObject(false);
// delete the topmost.
// restore id, transform, path effect, and style
if (transform) {
}
// set path data corresponding to new curve
if (!path_effect.empty()) {
} else {
}
// add the new group to the parent of the topmost
// move to the position of the topmost, reduced by the number of deleted items
_("Combine"));
} else {
sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE, _("<b>No path(s)</b> to combine in the selection."));
}
}
void
{
sp_desktop_message_stack(desktop)->flash(Inkscape::WARNING_MESSAGE, _("Select <b>path(s)</b> to break apart."));
return;
}
// set "busy" cursor
bool did = false;
if (!SP_IS_PATH(item)) {
continue;
}
continue;
}
did = true;
// XML Tree being used directly here while it shouldn't be...
// XML Tree being used directly here while it shouldn't be...
// it's going to resurrect as one of the pieces, so we delete without advertisement
item->deleteObject(false);
if (path_effect)
else
// add the new repr to the parent
// move to the saved position
// if it's the first one, restore id
if (l == list)
}
}
if (did) {
_("Break apart"));
} else {
sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE, _("<b>No path(s)</b> to break apart in the selection."));
}
}
/* This function is an entry point from GUI */
void
{
if (interactive && desktop)
sp_desktop_message_stack(desktop)->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to path."));
return;
}
bool did = false;
if (interactive && desktop) {
// set "busy" cursor
}
if (interactive && desktop) {
if (did) {
_("Object to path"));
} else {
sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE, _("<b>No objects</b> to convert to path in the selection."));
return;
}
}
}
/** Converts the selected items to LPEItems if they are not already so; e.g. SPRects) */
{
return;
}
items = 0;
to_select = 0;
selected = 0;
}
bool
sp_item_list_to_curves(const GSList *items, GSList **selected, GSList **to_select, bool skip_all_lpeitems)
{
bool did = false;
for (;
if ( skip_all_lpeitems &&
SP_IS_LPE_ITEM(item) &&
{
continue;
}
// remove connector attributes
did = true;
}
continue; // already a path, and no path effect
}
if (SP_IS_BOX3D(item)) {
// convert 3D box to ordinary group of paths; replace the old element in 'selected' with the new group
if (repr) {
did = true;
}
continue;
}
if (SP_IS_GROUP(item)) {
did = true;
continue;
}
if (!repr)
continue;
did = true;
// remember the position of the item
// remember parent
// remember id
// remember title
// remember description
// It's going to resurrect, so we delete without notifying listeners.
item->deleteObject(false);
// restore id
// add the new repr to the parent
}
}
// move to the saved position
/* Buglet: We don't re-add the (new version of the) object to the selection of any other
* desktops where it was previously selected. */
}
return did;
}
{
if (!item)
return NULL;
// Special treatment for text: convert each glyph to separate path, then group the paths
/* Mask */
if ( mask_str )
/* Clip path */
if ( clip_path_str )
/* Rotation center */
g_repr->setAttribute("inkscape:transform-center-x", item->getRepr()->attribute("inkscape:transform-center-x"), false);
g_repr->setAttribute("inkscape:transform-center-y", item->getRepr()->attribute("inkscape:transform-center-y"), false);
/* Whole text's style */
do {
break;
/* This glyph's style */
void *rawptr = 0;
break;
}
// get path from iter to iter_next:
if (!curve) { // error converting this glyph
continue;
}
continue;
}
break;
} while (true);
return g_repr;
}
if (SP_IS_SHAPE(item)) {
}
if (!curve)
return NULL;
// Prevent empty paths from being added to the document
// otherwise we end up with zomby markup in the SVG file
{
return NULL;
}
/* Transformation */
/* Style */
/* Mask */
if ( mask_str )
/* Clip path */
if ( clip_path_str )
/* Rotation center */
repr->setAttribute("inkscape:transform-center-x", item->getRepr()->attribute("inkscape:transform-center-x"), false);
repr->setAttribute("inkscape:transform-center-y", item->getRepr()->attribute("inkscape:transform-center-y"), false);
/* Definition */
return repr;
}
void
{
if (!items) {
sp_desktop_message_stack(desktop)->flash(Inkscape::WARNING_MESSAGE, _("Select <b>path(s)</b> to reverse."));
return;
}
// set "busy" cursor
bool did = false;
if (!SP_IS_PATH(i->data)) {
continue;
}
did = true;
if ( path->hasPathEffectRecursive() ) {
} else {
}
// reverse nodetypes order (Bug #179866)
if ( nodetypes ) {
}
}
if (did) {
_("Reverse path"));
} else {
sp_desktop_message_stack(desktop)->flash(Inkscape::ERROR_MESSAGE, _("<b>No paths</b> to reverse in the selection."));
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :