summaryrefslogtreecommitdiffstats
path: root/src/display/sp-ctrlline.h
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-10-16 05:07:46 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-10-16 05:07:46 +0000
commit545e955b4b93cd7728de79eb40794d29963d0b4a (patch)
treea3ae481ff51cbb763b24bd19c9e051b2fd50ba71 /src/display/sp-ctrlline.h
parentFixed a typo (Kernal -> Kernel) (diff)
downloadinkscape-545e955b4b93cd7728de79eb40794d29963d0b4a.tar.gz
inkscape-545e955b4b93cd7728de79eb40794d29963d0b4a.zip
associate an item with the line, for grdrag
(bzr r3904)
Diffstat (limited to 'src/display/sp-ctrlline.h')
-rw-r--r--src/display/sp-ctrlline.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/display/sp-ctrlline.h b/src/display/sp-ctrlline.h
index d466e16cf..d7863bf19 100644
--- a/src/display/sp-ctrlline.h
+++ b/src/display/sp-ctrlline.h
@@ -18,12 +18,14 @@
#include <livarot/Shape.h>
+struct SPItem;
#define SP_TYPE_CTRLLINE (sp_ctrlline_get_type ())
#define SP_CTRLLINE(obj) (GTK_CHECK_CAST ((obj), SP_TYPE_CTRLLINE, SPCtrlLine))
#define SP_IS_CTRLLINE(obj) (GTK_CHECK_TYPE ((obj), SP_TYPE_CTRLLINE))
struct SPCtrlLine : public SPCanvasItem{
+ SPItem *item; // the item to which this line belongs in some sense; may be NULL for some users
guint32 rgba;
NRPoint s, e;
Shape* shp;