Enhance save as template and new from template dialogs
[inkscape.git] / src / ui / shape-editor-knotholders.h
blobc71cba7fbba10c069fc93c7869e576ba4926739c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Authors:
4 * RafaƂ Siejakowski <rs@rs-math.net>
6 * Copyright (C) 2024 Authors
7 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
8 */
9 #ifndef SEEN_SHAPE_EDITOR_KNOTHOLDERS_H
10 #define SEEN_SHAPE_EDITOR_KNOTHOLDERS_H
12 #include "knot/knot-holder.h"
14 class SPItem;
15 class SPDesktop;
17 namespace Inkscape::UI {
18 std::unique_ptr<KnotHolder> create_knot_holder(SPItem *item, SPDesktop *desktop, double edit_rotation = 0.0,
19 int edit_marker_mode = -1);
21 std::unique_ptr<KnotHolder> create_LPE_knot_holder(SPItem *item, SPDesktop *desktop);
22 } // namespace Inkscape::UI
24 #endif
26 Local Variables:
27 mode:c++
28 c-file-style:"stroustrup"
29 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
30 indent-tabs-mode:nil
31 fill-column:99
32 End:
34 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :