common-context.h revision 6ccdb18a54dcf42ccf8a0854542a6cfc973c9061
#ifndef COMMON_CONTEXT_H_SEEN
#define COMMON_CONTEXT_H_SEEN
/*
* Common 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.
* Copyright (C) 2008 Jon A. Cruz
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "event-context.h"
#define SP_TYPE_COMMON_CONTEXT (sp_common_context_get_type())
//#define SP_COMMON_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_CAST((o), SP_TYPE_COMMON_CONTEXT, SPCommonContext))
#define SP_COMMON_CONTEXT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), SP_TYPE_COMMON_CONTEXT, SPCommonContextClass))
//#define SP_IS_COMMON_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), SP_TYPE_COMMON_CONTEXT))
/** 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 */
/* common */
double vel_max;
/* extended input data */
/* attributes */
double angle;
double width;
double vel_thin;
double flatness;
double tremor;
double cap_rounding;
bool is_drawing;
/** uses absolute width independent of zoom */
bool abs_width;
};
};
GType sp_common_context_get_type(void);
#endif // COMMON_CONTEXT_H_SEEN
/*
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 :