box3d-context.h revision 6ce48b4860ec433fc7823fe2530cd59072417264
#ifndef __SP_3DBOX_CONTEXT_H__
#define __SP_3DBOX_CONTEXT_H__
/*
* 3D box drawing context
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2000 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
* Copyright (C) 2002 Lauris Kaplinski
* Copyright (C) 2007 Maximilian Albert <Anhalter42@gmx.de>
*
* Released under GNU GPL
*/
#include "event-context.h"
#include "perspective3d.h"
struct SPKnotHolder;
#define SP_TYPE_3DBOX_CONTEXT (sp_3dbox_context_get_type ())
#define SP_3DBOX_CONTEXT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), SP_TYPE_3DBOX_CONTEXT, SP3DBoxContextClass))
/**
* save three corners while dragging:
* 1) the starting point (already done by the event_context)
* 2) drag_ptB --> the opposite corner of the front face (before pressing shift)
* 3) drag_ptC --> the "extruded corner" (which coincides with the mouse pointer location
* if we are ctrl-dragging but is constrained to the perspective line from drag_ptC
* to the vanishing point Y otherwise)
*/
bool ctrl_dragged; /* whether we are ctrl-dragging */
bool extruded; /* whether shift-dragging already occured (i.e. the box is already extruded) */
};
struct SP3DBoxContextClass {
};
/* Standard Gtk function */
GtkType sp_3dbox_context_get_type (void);
#endif