text.cpp revision 4ea30e1bba14987abced98e7bf194b69153e9e21
/*
* Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com>
*
* Authors:
* Maximilian Albert
* Johan Engelen
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/parameter/text.h"
#include "live_effects/effect.h"
#include "svg/stringstream.h"
#include <gtkmm.h>
#include "ui/widget/registered-widget.h"
#include "inkscape.h"
#include "verbs.h"
namespace Inkscape {
namespace LivePathEffect {
{
canvas_text = (SPCanvasText *) sp_canvastext_new(sp_desktop_tempgroup(inkscape_active_desktop()), Geom::Point(0,0), "");
sp_canvastext_set_coords (canvas_text, 0, 0);
}
{
}
void
{
}
void
{
}
void
{
}
bool
{
return true;
}
gchar *
TextParam::param_getSVGValue() const
{
}
{
param_label, param_tooltip, param_key, *param_wr, param_effect->getRepr(), param_effect->getSPDoc()));
rsu->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 :