/*
* Rectangle drawing context
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* 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 <gdk/gdkkeysyms.h>
#include <cstring>
#include <string>
#include "macros.h"
#include "display/sp-canvas.h"
#include "sp-rect.h"
#include "document.h"
#include "document-undo.h"
#include "sp-namedview.h"
#include "selection.h"
#include "selection-chemistry.h"
#include "snap.h"
#include "desktop.h"
#include "desktop-style.h"
#include "message-context.h"
#include "pixmaps/cursor-rect.xpm"
#include "ui/tools/rect-tool.h"
#include "xml/node-event-vector.h"
#include "preferences.h"
#include "context-fns.h"
#include "ui/shape-editor.h"
#include "verbs.h"
#include "display/sp-canvas-item.h"
using Inkscape::DocumentUndo;
namespace Inkscape {
namespace UI {
namespace Tools {
}
, rx(0)
, ry(0)
{
}
this->finishItem();
this->sel_changed_connection.disconnect();
}
this->enableGrDrag(false);
this->sel_changed_connection.disconnect();
delete this->shape_editor;
this->shape_editor = NULL;
/* fixme: This is necessary because we do not grab */
if (this->rect) {
this->finishItem();
}
}
/**
* Callback that processes the "changed" signal on the selection;
* destroys old and creates new knotholder.
*/
this->shape_editor->unset_item();
}
if (item) {
}
this->sel_changed_connection.disconnect();
);
sp_event_context_read(this, "rx");
sp_event_context_read(this, "ry");
this->enableSelectionCue();
}
this->enableGrDrag();
}
}
/* fixme: Proper error handling for non-numeric data. Use a locale-independent function like
if ( name == "rx" ) {
} else if ( name == "ry" ) {
}
}
case GDK_BUTTON_PRESS:
}
break;
// motion and release are always on root (why?)
default:
break;
}
return ret;
}
static bool dragging;
case GDK_BUTTON_PRESS:
// save drag origin
this->within_tolerance = true;
// remember clicked item, disregarding groups, honoring Alt
this->item_to_select = sp_event_context_find_item (desktop, button_w, event->button.state & GDK_MOD1_MASK, TRUE);
dragging = true;
/* Position center */
/* Snap center */
m.unSetup();
}
break;
case GDK_MOTION_NOTIFY:
if ( dragging
{
if ( this->within_tolerance
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)
this->within_tolerance = false;
} else if (!this->sp_event_context_knot_mouseover()) {
m.unSetup();
}
break;
case GDK_BUTTON_RELEASE:
dragging = false;
if (!this->within_tolerance) {
// we've been dragging, finish the rect
this->finishItem();
} else if (this->item_to_select) {
// no dragging, select clicked item if any
} else {
}
} else {
// click in an empty space
}
this->item_to_select = NULL;
}
break;
case GDK_KEY_PRESS:
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 (at least on my machine)
case GDK_KEY_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_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(event))
break;
case GDK_KEY_x:
case GDK_KEY_X:
if (MOD__ALT_ONLY(event)) {
}
break;
case GDK_KEY_g:
case GDK_KEY_G:
if (MOD__SHIFT_ONLY(event)) {
ret = true;
}
break;
case GDK_KEY_Escape:
if (dragging) {
dragging = false;
// if drawing, cancel, otherwise pass it up for deselecting
this->cancel();
}
break;
case GDK_KEY_space:
if (dragging) {
dragging = false;
if (!this->within_tolerance) {
// we've been dragging, finish the rect
this->finishItem();
}
// 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:
this->defaultMessageContext()->clear();
break;
default:
break;
}
break;
default:
break;
}
if (!ret) {
}
return ret;
}
if (!this->rect) {
return;
}
// Create object
// Set style
this->rect->updateRepr();
}
this->rect->setPosition(r.min()[Geom::X], r.min()[Geom::Y], r.dimensions()[Geom::X], r.dimensions()[Geom::Y]);
if (this->rx != 0.0) {
}
if (this->ry != 0.0) {
if (this->rx == 0.0)
this->rect->setRy(true, CLAMP(this->ry, 0, MIN(r.dimensions()[Geom::X], r.dimensions()[Geom::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) {
this->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) {
this->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 {
this->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 {
this->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);
}
}
this->message_context->clear();
this->cancel(); // Don't allow the creating of zero sized rectangle, for example when the start and and point snap to the snap grid point
return;
}
this->rect->updateRepr();
}
}
this->rect->deleteObject();
}
this->within_tolerance = false;
this->xp = 0;
this->yp = 0;
this->item_to_select = NULL;
}
}
}
}
/*
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 :