/* * Container for SPKnot visual handles. * * Authors: * Mitsuru Oka * bulia byak * Maximilian Albert * Abhishek Sharma * * Copyright (C) 2001-2008 authors * * Released under GNU GPL, read the file 'COPYING' for more information */ #include #include "document.h" #include "document-undo.h" #include "sp-shape.h" #include "knot.h" #include "knotholder.h" #include "knot-holder-entity.h" #include "rect-context.h" #include "sp-rect.h" #include "arc-context.h" #include "sp-ellipse.h" #include "star-context.h" #include "sp-star.h" #include "spiral-context.h" #include "sp-spiral.h" #include "sp-offset.h" #include "box3d.h" #include "sp-pattern.h" #include "style.h" #include "live_effects/lpeobject.h" #include "live_effects/effect.h" #include "desktop.h" #include "display/sp-canvas.h" #include "display/sp-canvas-item.h" #include "verbs.h" #include "ui/control-manager.h" #include "xml/repr.h" // for debugging only using Inkscape::ControlManager; using Inkscape::DocumentUndo; class SPDesktop; KnotHolder::KnotHolder(SPDesktop *desktop, SPItem *item, SPKnotHolderReleasedFunc relhandler) : desktop(desktop), item(item), //XML Tree being used directly for item->getRepr() while it shouldn't be... repr(item ? item->getRepr() : 0), entity(), sizeUpdatedConn(), released(relhandler), local_change(FALSE), dragging(false) { if (!desktop || !item || !SP_IS_ITEM(item)) { g_print ("Error! Throw an exception, please!\n"); } g_object_ref(G_OBJECT(item)); // TODO: is this still needed after C++-ification? sizeUpdatedConn = ControlManager::getManager().connectCtrlSizeChanged(sigc::mem_fun(*this, &KnotHolder::updateControlSizes)); } KnotHolder::~KnotHolder() { g_object_unref(G_OBJECT(item)); for (std::list::iterator i = entity.begin(); i != entity.end(); ++i) { delete (*i); (*i) = NULL; } entity.clear(); // is this necessary? sizeUpdatedConn.disconnect(); } void KnotHolder::updateControlSizes() { ControlManager &mgr = ControlManager::getManager(); for (std::list::iterator it = entity.begin(); it != entity.end(); ++it) { KnotHolderEntity *e = *it; mgr.updateItem(e->knot->item); } } void KnotHolder::update_knots() { for (std::list::iterator i = entity.begin(); i != entity.end(); ++i) { KnotHolderEntity *e = *i; e->update_knot(); } } /** * Returns true if at least one of the KnotHolderEntities has the mouse hovering above it. */ bool KnotHolder::knot_mouseover() { for(std::list::iterator i = entity.begin(); i != entity.end(); ++i) { SPKnot *knot = (*i)->knot; if (knot && (knot->flags & SP_KNOT_MOUSEOVER)) { return true; } } return false; } void KnotHolder::knot_clicked_handler(SPKnot *knot, guint state) { KnotHolder *knot_holder = this; SPItem *saved_item = this->item; for(std::list::iterator i = knot_holder->entity.begin(); i != knot_holder->entity.end(); ++i) { KnotHolderEntity *e = *i; if (e->knot == knot) { // no need to test whether knot_click exists since it's virtual now e->knot_click(state); break; } } if (SP_IS_SHAPE(saved_item)) { SP_SHAPE(saved_item)->setShape(); } knot_holder->update_knots(); unsigned int object_verb = SP_VERB_NONE; if (SP_IS_RECT(saved_item)) object_verb = SP_VERB_CONTEXT_RECT; else if (SP_IS_BOX3D(saved_item)) object_verb = SP_VERB_CONTEXT_3DBOX; else if (SP_IS_GENERICELLIPSE(saved_item)) object_verb = SP_VERB_CONTEXT_ARC; else if (SP_IS_STAR(saved_item)) object_verb = SP_VERB_CONTEXT_STAR; else if (SP_IS_SPIRAL(saved_item)) object_verb = SP_VERB_CONTEXT_SPIRAL; else if (SP_IS_OFFSET(saved_item)) { if (SP_OFFSET(saved_item)->sourceHref) object_verb = SP_VERB_SELECTION_LINKED_OFFSET; else object_verb = SP_VERB_SELECTION_DYNAMIC_OFFSET; } // for drag, this is done by ungrabbed_handler, but for click we must do it here DocumentUndo::done(saved_item->document, object_verb, _("Change handle")); } void KnotHolder::knot_moved_handler(SPKnot *knot, Geom::Point const &p, guint state) { if (this->dragging == false) { this->dragging = true; } // this was a local change and the knotholder does not need to be recreated: this->local_change = TRUE; for(std::list::iterator i = this->entity.begin(); i != this->entity.end(); ++i) { KnotHolderEntity *e = *i; if (e->knot == knot) { Geom::Point const q = p * item->i2dt_affine().inverse(); e->knot_set(q, e->knot->drag_origin * item->i2dt_affine().inverse(), state); break; } } if (SP_IS_SHAPE (item)) { SP_SHAPE (item)->setShape(); } this->update_knots(); } void KnotHolder::knot_ungrabbed_handler(SPKnot */*knot*/) { this->dragging = false; if (this->released) { this->released(this->item); } else { SPObject *object = (SPObject *) this->item; // Caution: this call involves a screen update, which may process events, and as a // result the knotholder may be destructed. So, after the updateRepr, we cannot use any // fields of this knotholder (such as this->item), but only values we have saved beforehand // (such as object). object->updateRepr(); /* do cleanup tasks (e.g., for LPE items write the parameter values * that were changed by dragging the handle to SVG) */ if (SP_IS_LPE_ITEM(object)) { // This writes all parameters to SVG. Is this sufficiently efficient or should we only // write the ones that were changed? Inkscape::LivePathEffect::Effect *lpe = sp_lpe_item_get_current_lpe(SP_LPE_ITEM(object)); if (lpe) { LivePathEffectObject *lpeobj = lpe->getLPEObj(); lpeobj->updateRepr(); } } unsigned int object_verb = SP_VERB_NONE; if (SP_IS_RECT(object)) object_verb = SP_VERB_CONTEXT_RECT; else if (SP_IS_BOX3D(object)) object_verb = SP_VERB_CONTEXT_3DBOX; else if (SP_IS_GENERICELLIPSE(object)) object_verb = SP_VERB_CONTEXT_ARC; else if (SP_IS_STAR(object)) object_verb = SP_VERB_CONTEXT_STAR; else if (SP_IS_SPIRAL(object)) object_verb = SP_VERB_CONTEXT_SPIRAL; else if (SP_IS_OFFSET(object)) { if (SP_OFFSET(object)->sourceHref) object_verb = SP_VERB_SELECTION_LINKED_OFFSET; else object_verb = SP_VERB_SELECTION_DYNAMIC_OFFSET; } DocumentUndo::done(object->document, object_verb, _("Move handle")); } } void KnotHolder::add(KnotHolderEntity *e) { g_message("Adding a knot at %p", e); entity.push_back(e); updateControlSizes(); } void KnotHolder::add_pattern_knotholder() { if ((item->style->fill.isPaintserver()) && SP_IS_PATTERN(item->style->getFillPaintServer())) { PatternKnotHolderEntityXY *entity_xy = new PatternKnotHolderEntityXY(); PatternKnotHolderEntityAngle *entity_angle = new PatternKnotHolderEntityAngle(); PatternKnotHolderEntityScale *entity_scale = new PatternKnotHolderEntityScale(); entity_xy->create(desktop, item, this, Inkscape::CTRL_TYPE_POINT, // TRANSLATORS: This refers to the pattern that's inside the object _("Move the pattern fill inside the object"), SP_KNOT_SHAPE_CROSS); entity_scale->create(desktop, item, this, Inkscape::CTRL_TYPE_SIZER, _("Scale the pattern fill; uniformly if with Ctrl"), SP_KNOT_SHAPE_SQUARE, SP_KNOT_MODE_XOR); entity_angle->create(desktop, item, this, Inkscape::CTRL_TYPE_ROTATE, _("Rotate the pattern fill; with Ctrl to snap angle"), SP_KNOT_SHAPE_CIRCLE, SP_KNOT_MODE_XOR); entity.push_back(entity_xy); entity.push_back(entity_angle); entity.push_back(entity_scale); } updateControlSizes(); } /* 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:fileencoding=utf-8:textwidth=99 :