rect-context.cpp revision b2e46b1363564aa72394ee2feb6a5a6cb49194a5
#define __SP_RECT_CONTEXT_C__
/*
* Rectangle drawing context
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
*
* Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl>
* Copyright (C) 2000-2005 authors
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "config.h"
#include "inkscape.h"
#include <gdk/gdkkeysyms.h>
#include <cstring>
#include <string>
#include "macros.h"
#include "display/sp-canvas.h"
#include "sp-rect.h"
#include "document.h"
#include "sp-namedview.h"
#include "selection.h"
#include "selection-chemistry.h"
#include "desktop-handles.h"
#include "snap.h"
#include "desktop.h"
#include "desktop-style.h"
#include "message-context.h"
#include "pixmaps/cursor-rect.xpm"
#include "rect-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 const double goldenratio = 1.61803398874989484820; // golden ratio
static gint sp_rect_context_item_handler(SPEventContext *event_context, SPItem *item, GdkEvent *event);
static SPEventContextClass *parent_class;
{
if (!type) {
sizeof(SPRectContextClass),
sizeof(SPRectContext),
4,
NULL, /* value_table */
};
}
return type;
}
{
}
{
event_context->xp = 0;
event_context->yp = 0;
event_context->tolerance = 0;
event_context->within_tolerance = false;
}
{
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 (rc->_message_context) {
delete rc->_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
*/
{
delete ec->shape_knot_holder;
}
ec->shape_repr = 0;
}
if (item) {
if (shape_repr) {
}
}
}
{
}
if (item) {
if (shape_repr) {
}
}
);
ec->enableSelectionCue();
}
ec->enableGrDrag();
}
}
{
/* fixme: Proper error handling for non-numeric data. Use a locale-independent function like
: 0.0 );
: 0.0 );
}
}
static gint sp_rect_context_item_handler(SPEventContext *event_context, SPItem *item, GdkEvent *event)
{
case GDK_BUTTON_PRESS:
}
break;
// motion and release are always on root (why?)
default:
break;
}
}
return ret;
}
{
static bool dragging;
event_context->tolerance = prefs_get_int_attribute_limited("options.dragtolerance", "value", 0, 0, 100);
case GDK_BUTTON_PRESS:
// save drag origin
event_context->within_tolerance = true;
// remember clicked item, disregarding groups, honoring Alt
event_context->item_to_select = sp_event_context_find_item (desktop, button_w, event->button.state & GDK_MOD1_MASK, TRUE);
dragging = true;
/* Position center */
/* Snap center */
}
break;
case GDK_MOTION_NOTIFY:
if ( dragging
{
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:
dragging = false;
if (!event_context->within_tolerance) {
// we've been dragging, finish the rect
} 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_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 (at least on my machine)
case GDK_Meta_R:
if (!dragging){
_("<b>Ctrl</b>: make square or integer-ratio rect, lock a rounded corner circular"),
_("<b>Shift</b>: draw around the starting point"),
NULL);
}
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_T:
{
g_print ("Scaling transformation matrix\n");
}
}
break;
case GDK_g:
case GDK_G:
if (MOD__SHIFT_ONLY) {
ret = true;
}
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;
}
{
return;
}
/* Create object */
/* Set style */
rc.item->transform = SP_ITEM(desktop->currentRoot())->getRelativeTransform(desktop->currentLayer());
}
sp_rect_position_set(SP_RECT(rc.item), r.min()[NR::X], r.min()[NR::Y], r.dimensions()[NR::X], r.dimensions()[NR::Y]);
}
sp_rect_set_ry (SP_RECT(rc.item), TRUE, CLAMP(rc.ry, 0, MIN(r.dimensions()[NR::X], r.dimensions()[NR::Y])/2));
else
}
// status text
if (state & GDK_CONTROL_MASK) {
bool is_golden_ratio = false;
is_golden_ratio = true;
}
ratio_y = 1;
} else {
is_golden_ratio = true;
}
ratio_x = 1;
}
if (!is_golden_ratio) {
rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s × %s (constrained to ratio %d:%d); with <b>Shift</b> to draw around the starting point"), xs->str, ys->str, ratio_x, ratio_y);
} else {
if (ratio_y == 1) {
rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s × %s (constrained to golden ratio 1.618 : 1); with <b>Shift</b> to draw around the starting point"), xs->str, ys->str);
} else {
rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s × %s (constrained to golden ratio 1 : 1.618); with <b>Shift</b> to draw around the starting point"), xs->str, ys->str);
}
}
} else {
rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s × %s; with <b>Ctrl</b> to make square or integer-ratio rectangle; with <b>Shift</b> to draw around the starting point"), xs->str, ys->str);
}
}
{
_("Create rectangle"));
}
}
/*
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 :