parameter.cpp revision e9b6af083e34e2397a8ddbe9781920733d09d151
5887N/A#ifdef HAVE_CONFIG_H
5887N/A# define ESCAPE_DOLLAR_COMMANDLINE
5887N/A#include "document-private.h"
5887N/A#include "sp-object.h"
5887N/A#include "widgets/sp-color-selector.h"
5887N/A#include "widgets/sp-color-notebook.h"
5887N/A#include "parameter.h"
5887N/A#include "description.h"
5887N/A#include "notebook.h"
5887N/A#include "radiobutton.h"
5887N/A bool gui_hidden = false;
5887N/A gui_hidden = true;
5887N/A param = new ParamDescription(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr);
5887N/A param = new ParamComboBox(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr);
5887N/A param = new ParamNotebook(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr);
5887N/A param = new ParamRadioButton(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr, ParamRadioButton::MINIMAL);
5887N/A param = new ParamRadioButton(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr, ParamRadioButton::FULL);
const gchar *
const gchar *
const gchar *
Parameter::Parameter (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext) :
extension(ext), _name(NULL), _desc(NULL), _scope(scope), _text(NULL), _gui_hidden(gui_hidden), _gui_tip(NULL)
gchar *
return retval;
return params;
Parameter::get_widget (SPDocument * /*doc*/, Inkscape::XML::Node * /*node*/, sigc::signal<void> * /*changeSignal*/)
return NULL;