star-context.cpp revision ac7344fa2f2335d9c3bcdb2a63db828d55073a73
/*
* Star drawing context
*
* Authors:
* Mitsuru Oka <oka326@parkcity.ne.jp>
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2001-2002 Mitsuru Oka
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <cstring>
#include <string>
#include <gdk/gdkkeysyms.h>
#include "macros.h"
#include "display/sp-canvas.h"
#include "sp-star.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-star.xpm"
#include "sp-metrics.h"
#include "preferences.h"
#include "xml/node-event-vector.h"
#include "context-fns.h"
#include "shape-editor.h"
#include "verbs.h"
#include "display/sp-canvas-item.h"
#include "star-context.h"
using Inkscape::DocumentUndo;
static SPEventContextClass * parent_class;
sp_star_context_get_type (void)
{
if (!type) {
sizeof (SPStarContextClass),
sizeof (SPStarContext),
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;
star_context->isflatsided = false;
}
{
}
}
static void
{
ec->enableGrDrag(false);
delete ec->shape_editor;
/* fixme: This is necessary because we do not grab */
if (sc->_message_context) {
delete sc->_message_context;
}
}
/**
* Callback that processes the "changed" signal on the selection;
* destroys old and creates new knotholder.
*
* @param selection Should not be NULL.
*/
{
}
static void
{
if (item) {
}
sc->sel_changed_connection = selection->connectChanged(sigc::bind(sigc::ptr_fun(&sp_star_context_selection_changed), (gpointer)sc));
ec->enableSelectionCue();
}
ec->enableGrDrag();
}
}
static void
{
if (path == "magnitude") {
} else if (path == "proportion") {
} else if (path == "isflatsided") {
} else if (path == "rounded") {
} else if (path == "randomized") {
}
}
{
case GDK_BUTTON_PRESS:
/* Snap center */
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;
} else if (!sp_event_context_knot_mouseover(event_context)) {
m.unSetup();
}
break;
case GDK_BUTTON_RELEASE:
if (!event_context->within_tolerance) {
// we've been dragging, finish the star
sp_star_finish (sc);
} 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; keep rays radial"),
NULL,
NULL);
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 star
}
// 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) {
}
return ret;
}
{
return;
}
// Create object
// Set style
}
/* Snap corner point with no constraints */
m.unSetup();
if (state & GDK_CONTROL_MASK) {
/* Snap angle */
}
/* status text */
( sc->isflatsided?
_("<b>Polygon</b>: radius %s, angle %5g°; with <b>Ctrl</b> to snap angle")
: _("<b>Star</b>: radius %s, angle %5g°; with <b>Ctrl</b> to snap angle") ),
}
static void
{
if (star->r[1] == 0) {
sp_star_cancel(sc); // Don't allow the creating of zero sized arc, for example when the start and and point snap to the snap grid point
return;
}
// Set transform center, so that odd stars rotate correctly
// LP #462157
_("Create star"));
}
}
{
}
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 :