spiral-context.cpp revision 1137482ecab2928952d08127515e9d0fc31a29d4
/*
* Spiral drawing context
*
* Authors:
* Mitsuru Oka
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 1999-2001 Lauris Kaplinski
* Copyright (C) 2001-2002 Mitsuru Oka
*
* Released under GNU GPL
*/
#include "config.h"
#include <gdk/gdkkeysyms.h>
#include <cstring>
#include <string>
#include "macros.h"
#include "display/sp-canvas.h"
#include "sp-spiral.h"
#include "document.h"
#include "document-undo.h"
#include "sp-namedview.h"
#include "selection.h"
#include "desktop-handles.h"
#include "snap.h"
#include "desktop.h"
#include "desktop-style.h"
#include "message-context.h"
#include "pixmaps/cursor-spiral.xpm"
#include "spiral-context.h"
#include "sp-metrics.h"
#include "xml/node-event-vector.h"
#include "preferences.h"
#include "context-fns.h"
#include "shape-editor.h"
#include "verbs.h"
#include "display/sp-canvas-item.h"
using Inkscape::DocumentUndo;
#include "tool-factory.h"
namespace {
return new SPSpiralContext();
}
bool spiralContextRegistered = ToolFactory::instance().registerObject("/tools/shapes/spiral", createSpiralContext);
}
return SPSpiralContext::prefsPath;
}
SPSpiralContext* spiral_context = this;
event_context->xp = 0;
event_context->yp = 0;
event_context->tolerance = 0;
event_context->within_tolerance = false;
//new (&spiral_context->sel_changed_connection) sigc::connection();
}
void SPSpiralContext::finish() {
SPEventContext* ec = this;
// if ((SP_EVENT_CONTEXT_CLASS(sp_spiral_context_parent_class))->finish) {
// (SP_EVENT_CONTEXT_CLASS(sp_spiral_context_parent_class))->finish(ec);
// }
SPEventContext::finish();
}
ec->enableGrDrag(false);
//sc->sel_changed_connection.~connection();
delete ec->shape_editor;
/* fixme: This is necessary because we do not grab */
if (sc->_message_context) {
delete sc->_message_context;
}
//G_OBJECT_CLASS(sp_spiral_context_parent_class)->dispose(object);
}
/**
* Callback that processes the "changed" signal on the selection;
* destroys old and creates new knotholder.
*/
{
}
void SPSpiralContext::setup() {
SPEventContext* ec = this;
// if ((SP_EVENT_CONTEXT_CLASS(sp_spiral_context_parent_class))->setup)
// (SP_EVENT_CONTEXT_CLASS(sp_spiral_context_parent_class))->setup(ec);
SPEventContext::setup();
if (item) {
}
sc->sel_changed_connection = selection->connectChanged(sigc::bind(sigc::ptr_fun(&sp_spiral_context_selection_changed), (gpointer)sc));
ec->enableSelectionCue();
}
ec->enableGrDrag();
}
}
SPEventContext* ec = this;
if (name == "expansion") {
} else if (name == "revolution") {
} else if (name == "t0") {
}
}
SPEventContext* event_context = this;
case GDK_BUTTON_PRESS:
m.unSetup();
}
break;
case GDK_MOTION_NOTIFY:
break; // do not drag if we're within tolerance from origin
}
// Once the user has moved farther than tolerance from the original location
// (indicating they intend to draw, not click), then always process the
// motion notify coordinates as given (no snapping back to origin)
event_context->within_tolerance = false;
m.unSetup();
} else if (!sp_event_context_knot_mouseover(sc)) {
m.unSetup();
}
break;
case GDK_BUTTON_RELEASE:
if (!event_context->within_tolerance) {
// we've been dragging, finish the spiral
} else if (event_context->item_to_select) {
// no dragging, select clicked item if any
} else {
}
} else {
// click in an empty space
}
}
break;
case GDK_KEY_PRESS:
case GDK_KEY_Alt_R:
case GDK_KEY_Control_L:
case GDK_KEY_Control_R:
case GDK_KEY_Shift_L:
case GDK_KEY_Shift_R:
case GDK_KEY_Meta_L: // Meta is when you press Shift+Alt (at least on my machine)
case GDK_KEY_Meta_R:
_("<b>Ctrl</b>: snap angle"),
NULL,
_("<b>Alt</b>: lock spiral radius"));
break;
case GDK_KEY_Up:
case GDK_KEY_Down:
case GDK_KEY_KP_Up:
case GDK_KEY_KP_Down:
// prevent the zoom field from activation
if (!MOD__CTRL_ONLY)
break;
case GDK_KEY_x:
case GDK_KEY_X:
if (MOD__ALT_ONLY) {
}
break;
case GDK_KEY_Escape:
if (dragging) {
dragging = false;
// if drawing, cancel, otherwise pass it up for deselecting
}
break;
case GDK_KEY_space:
if (dragging) {
dragging = false;
if (!event_context->within_tolerance) {
// we've been dragging, finish the spiral
}
// do not return true, so that space would work switching to selector
}
break;
case GDK_KEY_Delete:
case GDK_KEY_KP_Delete:
case GDK_KEY_BackSpace:
break;
default:
break;
}
break;
case GDK_KEY_RELEASE:
case GDK_KEY_Alt_L:
case GDK_KEY_Alt_R:
case GDK_KEY_Control_L:
case GDK_KEY_Control_R:
case GDK_KEY_Shift_L:
case GDK_KEY_Shift_R:
case GDK_KEY_Meta_L: // Meta is when you press Shift+Alt
case GDK_KEY_Meta_R:
break;
default:
break;
}
break;
default:
break;
}
if (!ret) {
// if ((SP_EVENT_CONTEXT_CLASS(sp_spiral_context_parent_class))->root_handler)
// ret = (SP_EVENT_CONTEXT_CLASS(sp_spiral_context_parent_class))->root_handler(event_context, event);
}
return ret;
}
{
return;
}
// Create object
// Set style
}
m.unSetup();
if (state & GDK_CONTROL_MASK) {
}
/* Fixme: these parameters should be got from dialog box */
/* status text */
_("<b>Spiral</b>: radius %s, angle %5g°; with <b>Ctrl</b> to snap angle"),
}
static void
{
sp_spiral_cancel(sc); // Don't allow the creating of zero sized spiral, for example when the start and and point snap to the snap grid point
return;
}
_("Create spiral"));
}
}
{
}
sc->within_tolerance = false;
}
/*
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 :