path-chemistry.cpp revision e0c38bd294fd720cebbabeda1a0d87259f68bf7f
#define __SP_PATH_CHEMISTRY_C__
/*
* 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>
*
* 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 "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 "message-stack.h"
#include "selection.h"
#include "desktop-handles.h"
#include "box3d.h"
#include "selection-chemistry.h"
#include "path-chemistry.h"
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 (!SP_IS_PATH(item))
continue;
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();
}
// unless this is the topmost object,
// reduce position only if the same parent
position--;
// delete the object for real, so that its clones can take appropriate action
}
}
if (did) {
// delete the topmost one so that its clones don't get alerted; this object will be
// restored shortly, with the same id
// restore id, transform, path effect, and style
// set path data corresponding to new curve
if (path_effect)
// 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;
// it's going to resurrect as one of the pieces, so we delete without advertisement
if (path_effect)
// 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)
sp_desktop_message_stack(desktop)->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to path."));
return;
}
bool did = false;
if (interactive) {
// set "busy" cursor
}
if (interactive) {
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;
}
}
}
bool
{
bool did = false;
for (;
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.
// 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", SP_OBJECT_REPR(item)->attribute("inkscape:transform-center-x"), false);
g_repr->setAttribute("inkscape:transform-center-y", SP_OBJECT_REPR(item)->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", SP_OBJECT_REPR(item)->attribute("inkscape:transform-center-x"), false);
repr->setAttribute("inkscape:transform-center-y", SP_OBJECT_REPR(item)->attribute("inkscape:transform-center-y"), false);
/* Definition */
return repr;
}
// FIXME: THIS DOES NOT REVERSE THE NODETYPES ORDER!
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;
} else {
}
}
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:encoding=utf-8:textwidth=99 :