point.cpp revision 7073d105e612f7dc898c292742bee9655d2a51b2
/*
* 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/point.h"
#include "live_effects/effect.h"
#include "svg/stringstream.h"
#include <gtkmm.h>
#include "knot.h"
#include "inkscape.h"
#include "verbs.h"
#define noLPEPOINTPARAM_DEBUG
#define PRM_KNOT_COLOR_NORMAL 0xffffff00
#define PRM_KNOT_COLOR_SELECTED 0x0000ff00
namespace Inkscape {
namespace LivePathEffect {
{
}
PointParam::~PointParam()
{
if (knot)
}
void
{
}
bool
{
if (success == 2) {
return true;
}
return false;
}
gchar *
PointParam::param_writeSVGValue() const
{
return str;
}
{
// WIDGET TODO: This implementation is incorrect, it should create a *new* widget for the caller, not just return an already created widget
g_warning("PointParam::param_newWidget still needs recoding to work with multiple document views");
*param_wr,
param_effect->getRepr(),
param_effect->getSPDoc() ) );
#ifndef LPEPOINTPARAM_DEBUG
pButton->set_sensitive(false);
#endif
}
void
{
}
void
{
}
void
{
param_set_and_write_new_value( (*this) * postmul );
}
// CALLBACKS:
void
{
g_message("add knot to canvas on correct location :S");
if (!knot) {
// create the knot
// move knot to the given point
sp_knot_show (knot);
/*
// connect knot's signals
if ( (draggable) // it can be NULL if a node in unsnapped (eg. focus point unsnapped from center)
// luckily, midstops never snap to other nodes so are never unsnapped...
&& ( (draggable->point_type == POINT_LG_MID)
|| (draggable->point_type == POINT_RG_MID1)
|| (draggable->point_type == POINT_RG_MID2) ) )
{
this->handler_id = g_signal_connect (G_OBJECT (this->knot), "moved", G_CALLBACK (gr_knot_moved_midpoint_handler), this);
} else {
this->handler_id = g_signal_connect (G_OBJECT (this->knot), "moved", G_CALLBACK (gr_knot_moved_handler), this);
}
g_signal_connect (G_OBJECT (this->knot), "clicked", G_CALLBACK (gr_knot_clicked_handler), this);
g_signal_connect (G_OBJECT (this->knot), "doubleclicked", G_CALLBACK (gr_knot_doubleclicked_handler), this);
g_signal_connect (G_OBJECT (this->knot), "grabbed", G_CALLBACK (gr_knot_grabbed_handler), this);
g_signal_connect (G_OBJECT (this->knot), "ungrabbed", G_CALLBACK (gr_knot_ungrabbed_handler), this);
*/
}
}
} /* 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 :