diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-25 19:33:14 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2017-09-25 19:33:14 +0000 |
| commit | 943cb6ba767b1f3fd35fb3bb74161f224a53cdc7 (patch) | |
| tree | de6d67aef60b36625f0575e5f34c35f7c3e966f9 /src/live_effects/parameter/message.h | |
| parent | Minor code cleanup and better handling of non-spacing marks in upright vertic... (diff) | |
| download | inkscape-943cb6ba767b1f3fd35fb3bb74161f224a53cdc7.tar.gz inkscape-943cb6ba767b1f3fd35fb3bb74161f224a53cdc7.zip | |
Add improvements to meassure segments LPE pointed by CR
Diffstat (limited to 'src/live_effects/parameter/message.h')
| -rw-r--r-- | src/live_effects/parameter/message.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/live_effects/parameter/message.h b/src/live_effects/parameter/message.h new file mode 100644 index 000000000..63075cf96 --- /dev/null +++ b/src/live_effects/parameter/message.h @@ -0,0 +1,61 @@ +#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_MESSAGE_H +#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_MESSAGE_H + +/* + * Inkscape::LivePathEffectParameters + * + * Authors: + * Released under GNU GPL, read the file 'COPYING' for more information + */ +#include <glib.h> +#include "live_effects/parameter/parameter.h" + +namespace Inkscape { + +namespace LivePathEffect { + +class MessageParam : public Parameter { +public: + MessageParam( const Glib::ustring& label, + const Glib::ustring& tip, + const Glib::ustring& key, + Inkscape::UI::Widget::Registry* wr, + Effect* effect, + const gchar * default_message = "Default message"); + virtual ~MessageParam() {} + + virtual Gtk::Widget * param_newWidget(); + virtual bool param_readSVGValue(const gchar * strvalue); + void param_update_default(const gchar * default_value); + virtual gchar * param_getSVGValue() const; + virtual gchar * param_getDefaultSVGValue() const; + + void param_setValue(const gchar * message); + + virtual void param_set_default(); + + const gchar * get_value() const { return message; }; + +private: + MessageParam(const MessageParam&); + MessageParam& operator=(const MessageParam&); + gchar * message; + gchar * defmessage; +}; + +} //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 : |
