bool.cpp revision b5c827e288e4b88df2ddfeb6bce119a17338d669
/*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/parameter/bool.h"
#include "live_effects/effect.h"
#include "svg/stringstream.h"
#include <gtkmm.h>
#include "inkscape.h"
#include "verbs.h"
#include "helper-fns.h"
#define noLPEBOOLPARAM_DEBUG
namespace Inkscape {
namespace LivePathEffect {
{
}
{
}
void
{
}
bool
{
return true; // not correct: if value is unacceptable, should return false!
}
gchar *
BoolParam::param_writeSVGValue() const
{
return str;
}
{
*param_wr,
false,
param_effect->getRepr(),
param_effect->getSPDoc()) );
checkwdg->setProgrammatically = false;
}
void
{
}
} /* namespace LivePathEffect */
} /* namespace Inkscape */
/*
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 :