summaryrefslogtreecommitdiffstats
path: root/src/common-context.h
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-05-29 01:19:24 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-05-29 01:19:24 +0000
commit7cb7a447c48b794fb7c343fb49a1f15805c8a4bb (patch)
tree54717d18fceb3918f70bd0c562e51fcc34bc4698 /src/common-context.h
parentadded methods to PathSink to manage horizontal and vertical line segments, mo... (diff)
downloadinkscape-7cb7a447c48b794fb7c343fb49a1f15805c8a4bb.tar.gz
inkscape-7cb7a447c48b794fb7c343fb49a1f15805c8a4bb.zip
Refactoring out common code
(bzr r5759)
Diffstat (limited to 'src/common-context.h')
-rw-r--r--src/common-context.h119
1 files changed, 119 insertions, 0 deletions
diff --git a/src/common-context.h b/src/common-context.h
new file mode 100644
index 000000000..1f3963608
--- /dev/null
+++ b/src/common-context.h
@@ -0,0 +1,119 @@
+#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"
+#include "display/curve.h"
+#include "display/display-forward.h"
+
+#define SP_TYPE_COMMON_CONTEXT (sp_common_context_get_type())
+#define SP_COMMON_CONTEXT(o) (GTK_CHECK_CAST((o), SP_TYPE_COMMON_CONTEXT, SPCommonContext))
+#define SP_COMMON_CONTEXT_CLASS(k) (GTK_CHECK_CLASS_CAST((k), SP_TYPE_COMMON_CONTEXT, SPCommonContextClass))
+#define SP_IS_COMMON_CONTEXT(o) (GTK_CHECK_TYPE((o), SP_TYPE_COMMON_CONTEXT))
+#define SP_IS_COMMON_CONTEXT_CLASS(k) (GTK_CHECK_CLASS_TYPE((k), SP_TYPE_COMMON_CONTEXT))
+
+class SPCommonContext;
+class SPCommonContextClass;
+
+#define SAMPLING_SIZE 8 /* fixme: ?? */
+
+
+struct SPCommonContext : public SPEventContext {
+ /** accumulated shape which ultimately goes in svg:path */
+ SPCurve *accumulated;
+
+ /** canvas items for "comitted" segments */
+ GSList *segments;
+
+ /** canvas item for red "leading" segment */
+ SPCanvasItem *currentshape;
+ /** shape of red "leading" segment */
+ SPCurve *currentcurve;
+
+ /** left edge of the stroke; combined to get accumulated */
+ SPCurve *cal1;
+
+ /** right edge of the stroke; combined to get accumulated */
+ SPCurve *cal2;
+
+ /** left edge points for this segment */
+ NR::Point point1[SAMPLING_SIZE];
+
+ /** right edge points for this segment */
+ NR::Point point2[SAMPLING_SIZE];
+
+ /** number of edge points for this segment */
+ gint npoints;
+
+ /* repr */
+ Inkscape::XML::Node *repr;
+
+ /* common */
+ NR::Point cur;
+ NR::Point vel;
+ double vel_max;
+ NR::Point acc;
+ NR::Point ang;
+ NR::Point last;
+ NR::Point del;
+
+ /* extended input data */
+ gdouble pressure;
+ gdouble xtilt;
+ gdouble ytilt;
+
+ /* attributes */
+ guint dragging : 1; /* mouse state: mouse is dragging */
+ guint usepressure : 1;
+ guint usetilt : 1;
+ double mass, drag;
+ double angle;
+ double width;
+
+ double vel_thin;
+ double flatness;
+ double tremor;
+ double cap_rounding;
+
+ Inkscape::MessageContext *_message_context;
+
+ bool is_drawing;
+
+ /** uses absolute width independent of zoom */
+ bool abs_width;
+};
+
+struct SPCommonContextClass : public SPEventContextClass{};
+
+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:encoding=utf-8:textwidth=99 :
+