Code

Avoid crash by uninitialized perspectives.
[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 Inkscape::XML::Node *sp_selected_item_to_curved_repr(SPItem *item, guint32 text_grouping_policy);
22 void sp_selected_path_reverse (SPDesktop *desktop);
23 bool sp_item_list_to_curves(const GSList *items, GSList **selected, GSList **to_select);
25 #endif
27 /*
28   Local Variables:
29   mode:c++
30   c-file-style:"stroustrup"
31   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
32   indent-tabs-mode:nil
33   fill-column:99
34   End:
35 */
36 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :