box3d-context.cpp revision 07b7f1aaaf1087716e784a50cf574a059f7018d3
/*
* 3D box drawing context
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 2007 Maximilian Albert <Anhalter42@gmx.de>
* 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 "macros.h"
#include "display/sp-canvas.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 "message-context.h"
#include "pixmaps/cursor-3dbox.xpm"
#include "box3d.h"
#include "box3d-context.h"
#include "sp-metrics.h"
#include "object-edit.h"
#include "xml/node-event-vector.h"
#include "preferences.h"
#include "context-fns.h"
#include "desktop-style.h"
#include "transf_mat_3x4.h"
#include "perspective-line.h"
#include "persp3d.h"
#include "box3d-side.h"
#include "document-private.h"
#include "line-geometry.h"
#include "shape-editor.h"
using Inkscape::DocumentUndo;
static gint sp_box3d_context_item_handler(SPEventContext *event_context, SPItem *item, GdkEvent *event);
static SPEventContextClass *parent_class;
{
if (!type) {
sizeof(Box3DContextClass),
sizeof(Box3DContext),
4,
NULL, /* value_table */
};
}
return type;
}
{
}
{
event_context->xp = 0;
event_context->yp = 0;
event_context->tolerance = 0;
event_context->within_tolerance = false;
box3d_context->ctrl_dragged = false;
box3d_context->extruded = false;
}
{
// sp_repr_remove_listener_by_data(cc->active_shape_repr, cc);
}
}
{
ec->enableGrDrag(false);
delete ec->shape_editor;
/* fixme: This is necessary because we do not grab */
}
if (bc->_message_context) {
delete bc->_message_context;
}
}
/**
\brief Callback that processes the "changed" signal on the selection;
destroys old and creates new knotholder
*/
{
// selecting a single box changes the current perspective
}
}
/* Create a default perspective in document defs if none is present (which can happen, among other
* circumstances, after 'vacuum defs' or when a pre-0.46 file is opened).
*/
bool has_persp = false;
if (SP_IS_PERSP3D(child)) {
has_persp = true;
break;
}
}
if (!has_persp) {
}
}
{
}
if (item) {
}
);
ec->enableSelectionCue();
}
ec->enableGrDrag();
}
}
static gint sp_box3d_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;
case GDK_BUTTON_PRESS:
// save drag origin
event_context->within_tolerance = true;
// remember clicked item, *not* disregarding groups (since a 3D box is a group), honoring Alt
event_context->item_to_select = sp_event_context_find_item (desktop, button_w, event->button.state & GDK_MOD1_MASK, event->button.state & GDK_CONTROL_MASK);
dragging = true;
m.unSetup();
// This can happen after saving when the last remaining perspective was purged and must be recreated.
if (!cur_persp) {
}
/* Projective preimages of clicked point under current perspective */
bc->drag_origin_proj = cur_persp->perspective_impl->tmat.preimage (from_2geom(button_dt), 0, Proj::Z);
}
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;
// once shift is pressed, set bc->extruded
}
} else {
// Without Ctrl, motion of the extruded corner is constrained to the
// perspective line from drag_ptB to vanishing point Y.
if (!bc->ctrl_dragged) {
/* snapping */
bc->drag_ptC_proj = cur_persp->perspective_impl->tmat.preimage (bc->drag_ptC, bc->drag_ptB_proj[Proj::X], Proj::X);
} else {
bc->drag_ptC_proj = cur_persp->perspective_impl->tmat.preimage (from_2geom(motion_dt), bc->drag_ptB_proj[Proj::X], Proj::X);
}
}
m.unSetup();
} else if (!sp_event_context_knot_mouseover(bc)) {
m.unSetup();
}
break;
case GDK_BUTTON_RELEASE:
dragging = false;
if (!event_context->within_tolerance) {
// we've been dragging, finish the box
} 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_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_bracketright:
_("Change perspective (angle of PLs)"));
ret = true;
break;
case GDK_bracketleft:
_("Change perspective (angle of PLs)"));
ret = true;
break;
case GDK_parenright:
_("Change perspective (angle of PLs)"));
ret = true;
break;
case GDK_parenleft:
_("Change perspective (angle of PLs)"));
ret = true;
break;
case GDK_braceright:
_("Change perspective (angle of PLs)"));
ret = true;
break;
case GDK_braceleft:
_("Change perspective (angle of PLs)"));
ret = true;
break;
/* TODO: what is this???
case GDK_O:
if (MOD__CTRL && MOD__SHIFT) {
Box3D::create_canvas_point(persp3d_get_VP(document()->getCurrentPersp3D(), Proj::W).affine(),
6, 0xff00ff00);
}
ret = true;
break;
*/
case GDK_g:
case GDK_G:
if (MOD__SHIFT_ONLY) {
ret = true;
}
break;
case GDK_p:
case GDK_P:
if (MOD__SHIFT_ONLY) {
if (document->getCurrentPersp3D()) {
}
ret = true;
}
break;
case GDK_x:
case GDK_X:
if (MOD__ALT_ONLY) {
}
if (MOD__SHIFT_ONLY) {
ret = true;
}
break;
case GDK_y:
case GDK_Y:
if (MOD__SHIFT_ONLY) {
ret = true;
}
break;
case GDK_z:
case GDK_Z:
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 box
}
// do not return true, so that space would work switching to selector
}
break;
default:
break;
}
break;
default:
break;
}
if (!ret) {
}
}
return ret;
}
{
return;
}
// Create object
// Set style
// TODO: Incorporate this in box3d-side.cpp!
for (int i = 0; i < 6; ++i) {
// Set style
descr += "/style";
// use last used style
} else {
// use default style
}
}
// TODO: It would be nice to show the VPs during dragging, but since there is no selection
// at this point (only after finishing the box), we must do this "manually"
/* bc._vpdrag->updateDraggers(); */
}
/* we need to call this from here (instead of from box3d_position_set(), for example)
// status text
bc._message_context->setF(Inkscape::NORMAL_MESSAGE, _("<b>3D Box</b>; with <b>Shift</b> to extrude along the Z axis"));
}
{
bc->ctrl_dragged = false;
return;
box->updateRepr();
_("Create 3D box"));
}
}
/* update perspective lines if we are in the 3D box tool (so that infinite ones are shown correctly) */
if (SP_IS_BOX3D_CONTEXT (ec)) {
}
}
/*
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 :