diff options
| author | Jabiertxof <jtx@jtx> | 2017-05-06 21:01:40 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx> | 2017-05-06 21:01:40 +0000 |
| commit | 8c9030f8eb348b09b0111247522a0c5e2aed6ce8 (patch) | |
| tree | 915303c1b9e70cff20329dadd9c9132280d625ce /src/live_effects/parameter/hidden.h | |
| parent | Add improvement pointed in IRC by Ede_123 to allow defaultables parametes on ... (diff) | |
| download | inkscape-8c9030f8eb348b09b0111247522a0c5e2aed6ce8.tar.gz inkscape-8c9030f8eb348b09b0111247522a0c5e2aed6ce8.zip | |
Add missing files
(bzr r15669)
Diffstat (limited to 'src/live_effects/parameter/hidden.h')
| -rw-r--r-- | src/live_effects/parameter/hidden.h | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/live_effects/parameter/hidden.h b/src/live_effects/parameter/hidden.h new file mode 100644 index 000000000..d565272b6 --- /dev/null +++ b/src/live_effects/parameter/hidden.h @@ -0,0 +1,68 @@ +#ifndef INKSCAPE_LIVEPATHEFFECT_HIDDEN_H +#define INKSCAPE_LIVEPATHEFFECT_HIDDEN_H + +/* + * Inkscape::LivePathEffectParameters + * + * Authors: + * Jabiertxof + * Maximilian Albert + * Johan Engelen + * + * Copyright (C) jabiertxof 2017 <jabier.arraiza@marker.es> + * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include "live_effects/parameter/parameter.h" + + +namespace Inkscape { + +namespace LivePathEffect { + +class HiddenParam : public Parameter { +public: + HiddenParam( const Glib::ustring& label, + const Glib::ustring& tip, + const Glib::ustring& key, + Inkscape::UI::Widget::Registry* wr, + Effect* effect, + const Glib::ustring default_value = ""); + virtual ~HiddenParam() {} + + virtual Gtk::Widget * param_newWidget(); + + virtual bool param_readSVGValue(const gchar * strvalue); + virtual gchar * param_getSVGValue() const; + + void param_setValue(Glib::ustring newvalue); + virtual void param_set_default(); + virtual void param_update_default(const gchar * default_value); + + const Glib::ustring get_value() const { return value; }; + +private: + HiddenParam(const HiddenParam&); + HiddenParam& operator=(const HiddenParam&); + Glib::ustring value; + Glib::ustring defvalue; +}; + +} //namespace LivePathEffect + +} //namespace Inkscape + +#endif + +/* + 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 : |
