dyna-draw-context.h revision a32a511cd4cd2acc897109af56e52ada5db641bb
#ifndef __SP_DYNA_DRAW_CONTEXT_H__
#define __SP_DYNA_DRAW_CONTEXT_H__
/*
* Handwriting-like drawing mode
*
* Authors:
* Mitsuru Oka <oka326@parkcity.ne.jp>
* Lauris Kaplinski <lauris@kaplinski.com>
*
* The original dynadraw code:
* Paul Haeberli <paul@sgi.com>
*
* Copyright (C) 1998 The Free Software Foundation
* Copyright (C) 1999-2002 authors
* Copyright (C) 2001-2002 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "event-context.h"
#include <display/display-forward.h>
#include <libnr/nr-point.h>
#define SP_DYNA_DRAW_CONTEXT_CLASS(k) (GTK_CHECK_CLASS_CAST((k), SP_TYPE_DYNA_DRAW_CONTEXT, SPDynaDrawContextClass))
#define DDC_MIN_PRESSURE 0.0
#define DDC_MAX_PRESSURE 1.0
#define DDC_DEFAULT_PRESSURE 1.0
#define DDC_MIN_TILT -1.0
#define DDC_MAX_TILT 1.0
#define DDC_DEFAULT_TILT 0.0
struct SPDynaDrawContext
{
/** accumulated shape which ultimately goes in svg:path */
/** canvas items for "comitted" segments */
/** canvas item for red "leading" segment */
/** shape of red "leading" segment */
/** left edge of the stroke; combined to get accumulated */
/** right edge of the stroke; combined to get accumulated */
/** left edge points for this segment */
/** right edge points for this segment */
/** number of edge points for this segment */
/* repr */
/* time_id if use timeout */
/* DynaDraw */
/* extended input data */
/* attributes */
double angle;
double width;
double vel_thin;
double flatness;
double tremor;
bool is_drawing;
/** uses absolute width independent of zoom */
bool abs_width;
};
struct SPDynaDrawContextClass
{
};
#endif
/*
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 :