parameter.h revision ccd5d0ad1950ed63ccdf76081ae0cb056f372c9f
/*
* Inkscape::LivePathEffectParameters
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "ui/widget/registry.h"
#include "ui/widget/registered-widget.h"
}
virtual bool param_readSVGValue(const gchar * strvalue) = 0; // returns true if new value is valid / accepted.
virtual void param_set_default() = 0;
// This returns pointer to the parameter's widget to be put in the live-effects dialog. Must also create the
// necessary widget if it does not exist yet.
};
virtual ~ScalarParam();
virtual void param_set_default();
void param_make_integer(bool yes = true);
{ return value; };
bool integer;
ScalarParam(const ScalarParam&);
};
} //namespace LivePathEffect
} //namespace Inkscape
#endif