paramdescription.cpp revision 282963165a505f1e709cf741fb2825b6a78cdd6c
/*
* Copyright (C) 2005-2007 Authors:
* Ted Gould <ted@gould.cx>
* Johan Engelen <johan@shouraizou.nl> *
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef linux // does the dollar sign need escaping when passed as string parameter?
# define ESCAPE_DOLLAR_COMMANDLINE
#endif
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "paramdescription.h"
#include <gtkmm/adjustment.h>
#include <gtkmm/spinbutton.h>
#include <sstream>
#include "extension.h"
#include "prefs-utils.h"
namespace Inkscape {
namespace Extension {
/** \brief Initialize the object, to do that, copy the data. */
ParamDescription::ParamDescription (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) :
{
// printf("Building Description\n");
const char * defaultval = NULL;
if (defaultval != NULL)
return;
}
/** \brief Create a label for the description */
ParamDescription::get_widget (SPDocument * /*doc*/, Inkscape::XML::Node * /*node*/, sigc::signal<void> * /*changeSignal*/)
{
label->set_line_wrap();
return hbox;
}
} /* namespace Extension */
} /* namespace Inkscape */