summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/originalpath.h
blob: 200d1cf3c2a779691679f698ce60ec5742b027a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_PATH_H
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_PATH_H

/*
 * Inkscape::LivePathEffectParameters
 *
 * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl>
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#include "live_effects/parameter/path.h"

namespace Inkscape {

namespace LivePathEffect {

class OriginalPathParam: public PathParam {
public:
    OriginalPathParam ( const Glib::ustring& label,
                const Glib::ustring& tip,
                const Glib::ustring& key,
                Inkscape::UI::Widget::Registry* wr,
                Effect* effect);
    ~OriginalPathParam() override;
    bool linksToPath() const { return (href != nullptr); }
    SPItem * getObject() const { return ref.getObject(); }

    Gtk::Widget * param_newWidget() override;
    /** Disable the canvas indicators of parent class by overriding this method */
    void param_editOncanvas(SPItem * /*item*/, SPDesktop * /*dt*/) override {};
    /** Disable the canvas indicators of parent class by overriding this method */
    void addCanvasIndicators(SPLPEItem const* /*lpeitem*/, std::vector<Geom::PathVector> & /*hp_vec*/) override {};
    ParamType paramType() const override { return ParamType::ORIGINAL_PATH; };
protected:
    void on_select_original_button_click();

private:
    OriginalPathParam(const OriginalPathParam&) = delete;
    OriginalPathParam& operator=(const OriginalPathParam&) = delete;
};


} //namespace LivePathEffect

} //namespace Inkscape

#endif