Code

Node tool: correctly save node skewing to undo history
[inkscape.git] / src / path-chemistry.h
1 #ifndef __PATH_CHEMISTRY_H__
2 #define __PATH_CHEMISTRY_H__
4 /*
5  * Here are handlers for modifying selections, specific to paths
6  *
7  * Authors:
8  *   Lauris Kaplinski <lauris@kaplinski.com>
9  *
10  * Copyright (C) 1999-2002 authors
11  * Copyright (C) 2001-2002 Ximian, Inc.
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #include "forward.h"
18 void sp_selected_path_combine (SPDesktop *desktop);
19 void sp_selected_path_break_apart (SPDesktop *desktop);
20 void sp_selected_path_to_curves (SPDesktop *desktop, bool interactive = true);
21 void sp_selected_to_lpeitems(SPDesktop *desktop);
22 Inkscape::XML::Node *sp_selected_item_to_curved_repr(SPItem *item, guint32 text_grouping_policy);
23 void sp_selected_path_reverse (SPDesktop *desktop);
24 bool sp_item_list_to_curves(const GSList *items, GSList **selected, GSList **to_select, bool skip_all_lpeitems = false);
26 #endif
28 /*
29   Local Variables:
30   mode:c++
31   c-file-style:"stroustrup"
32   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
33   indent-tabs-mode:nil
34   fill-column:99
35   End:
36 */
37 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :