spiral-context.cpp revision b2e46b1363564aa72394ee2feb6a5a6cb49194a5
#define __SP_SPIRAL_CONTEXT_C__
/*
* Spiral drawing context
*
* Authors:
* Mitsuru Oka
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
*
* 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 "sp-namedview.h"
#include "selection.h"
#include "desktop-handles.h"
#include "desktop-affine.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 "object-edit.h"
#include "xml/node-event-vector.h"
#include "prefs-utils.h"
#include "context-fns.h"
static SPEventContextClass *parent_class;
{
if (!type) {
sizeof(SPSpiralContextClass),
sizeof(SPSpiralContext),
4,
NULL, /* value_table */
};
}
return type;
}
static void
{
}
static void
{
event_context->xp = 0;
event_context->yp = 0;
event_context->tolerance = 0;
event_context->within_tolerance = false;
}
static void
{
ec->enableGrDrag(false);
/* fixme: This is necessary because we do not grab */
if (ec->shape_knot_holder) {
delete ec->shape_knot_holder;
}
ec->shape_repr = 0;
}
if (sc->_message_context) {
delete sc->_message_context;
}
}
NULL, /* child_added */
NULL, /* child_removed */
NULL, /* content_changed */
NULL /* order_changed */
};
/**
\brief Callback that processes the "changed" signal on the selection;
destroys old and creates new knotholder
*/
void
{
delete ec->shape_knot_holder;
}
ec->shape_repr = 0;
}
if (item) {
if (shape_repr) {
}
}
}
static void
{
if (item) {
if (shape_repr) {
}
}
sc->sel_changed_connection = selection->connectChanged(sigc::bind(sigc::ptr_fun(&sp_spiral_context_selection_changed), (gpointer)sc));
ec->enableSelectionCue();
}
ec->enableGrDrag();
}
}
static void
{
}
}
static gint
{
event_context->tolerance = prefs_get_int_attribute_limited("options.dragtolerance", "value", 0, 0, 100);
case GDK_BUTTON_PRESS:
}
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;
}
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_Alt_R:
case GDK_Control_L:
case GDK_Control_R:
case GDK_Shift_L:
case GDK_Shift_R:
case GDK_Meta_L: // Meta is when you press Shift+Alt (at least on my machine)
case GDK_Meta_R:
_("<b>Ctrl</b>: snap angle"),
NULL,
_("<b>Alt</b>: lock spiral radius"));
break;
case GDK_Up:
case GDK_Down:
case GDK_KP_Up:
case GDK_KP_Down:
// prevent the zoom field from activation
if (!MOD__CTRL_ONLY)
break;
case GDK_x:
case GDK_X:
if (MOD__ALT_ONLY) {
}
break;
case GDK_Escape:
//TODO: make dragging escapable by Esc
break;
case GDK_space:
if (dragging) {
dragging = false;
if (!event_context->within_tolerance) {
// we've been dragging, finish the rect
}
// do not return true, so that space would work switching to selector
}
break;
default:
break;
}
break;
case GDK_KEY_RELEASE:
case GDK_Alt_L:
case GDK_Alt_R:
case GDK_Control_L:
case GDK_Control_R:
case GDK_Shift_L:
case GDK_Shift_R:
case GDK_Meta_L: // Meta is when you press Shift+Alt
case GDK_Meta_R:
break;
default:
break;
}
break;
default:
break;
}
if (!ret) {
}
return ret;
}
static void
{
return;
}
/* Create object */
/* Set style */
sc->item->transform = SP_ITEM(desktop->currentRoot())->getRelativeTransform(desktop->currentLayer());
}
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
{
_("Create spiral"));
}
}
/*
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:encoding=utf-8:textwidth=99 :