summaryrefslogtreecommitdiffstats
path: root/src/display/canvas-bpath.h
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2007-11-03 18:11:46 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2007-11-03 18:11:46 +0000
commit8ed66ab7cb377ed90e3213fc3bba8e5bb0c63a11 (patch)
tree4d0150783a2f04376bb1b616a249a618581717c4 /src/display/canvas-bpath.h
parentadd destructor to LayerManager that disconnects it signals. see bug: [ 172087... (diff)
downloadinkscape-8ed66ab7cb377ed90e3213fc3bba8e5bb0c63a11.tar.gz
inkscape-8ed66ab7cb377ed90e3213fc3bba8e5bb0c63a11.zip
Oops, don't use tabs! (replace tabs by 4 spaces)
(bzr r4020)
Diffstat (limited to 'src/display/canvas-bpath.h')
-rw-r--r--src/display/canvas-bpath.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/display/canvas-bpath.h b/src/display/canvas-bpath.h
index 072fe1087..b9f867845 100644
--- a/src/display/canvas-bpath.h
+++ b/src/display/canvas-bpath.h
@@ -34,17 +34,17 @@ class Shape;
/* stroke-linejoin */
typedef enum {
- SP_STROKE_LINEJOIN_MITER,
- SP_STROKE_LINEJOIN_ROUND,
- SP_STROKE_LINEJOIN_BEVEL
+ SP_STROKE_LINEJOIN_MITER,
+ SP_STROKE_LINEJOIN_ROUND,
+ SP_STROKE_LINEJOIN_BEVEL
} SPStrokeJoinType;
/* stroke-linecap */
typedef enum {
- SP_STROKE_LINECAP_BUTT,
- SP_STROKE_LINECAP_ROUND,
- SP_STROKE_LINECAP_SQUARE
+ SP_STROKE_LINECAP_BUTT,
+ SP_STROKE_LINECAP_ROUND,
+ SP_STROKE_LINECAP_SQUARE
} SPStrokeCapType;
@@ -52,37 +52,37 @@ typedef enum {
/* clip-rule */
typedef enum {
- SP_WIND_RULE_NONZERO,
- SP_WIND_RULE_INTERSECT,
- SP_WIND_RULE_EVENODD,
- SP_WIND_RULE_POSITIVE
+ SP_WIND_RULE_NONZERO,
+ SP_WIND_RULE_INTERSECT,
+ SP_WIND_RULE_EVENODD,
+ SP_WIND_RULE_POSITIVE
} SPWindRule;
struct SPCanvasBPath {
- SPCanvasItem item;
+ SPCanvasItem item;
- /* Line def */
- SPCurve *curve;
+ /* Line def */
+ SPCurve *curve;
- /* Fill attributes */
- guint32 fill_rgba;
- SPWindRule fill_rule;
+ /* Fill attributes */
+ guint32 fill_rgba;
+ SPWindRule fill_rule;
- /* Line attributes */
- guint32 stroke_rgba;
- gdouble stroke_width;
- SPStrokeJoinType stroke_linejoin;
- SPStrokeCapType stroke_linecap;
- gdouble stroke_miterlimit;
+ /* Line attributes */
+ guint32 stroke_rgba;
+ gdouble stroke_width;
+ SPStrokeJoinType stroke_linejoin;
+ SPStrokeCapType stroke_linecap;
+ gdouble stroke_miterlimit;
- /* State */
- Shape *fill_shp;
- Shape *stroke_shp;
+ /* State */
+ Shape *fill_shp;
+ Shape *stroke_shp;
};
struct SPCanvasBPathClass {
- SPCanvasItemClass parent_class;
+ SPCanvasItemClass parent_class;
};
GtkType sp_canvas_bpath_get_type (void);