From b04e1e79e64cb7bb3106fd08a019c27b09bdd5c6 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 10 Jun 2015 15:34:44 +0100 Subject: Prop_pSegmentInfo is totally misunderstood apparently digging into the crash on export of kde216114-1.odt reveals various horrors Change-Id: I0d24fe303d561a00a08098b306d10fd8273af928 --- include/filter/msfilter/escherex.hxx | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include/filter') diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx index 8c1fbbe7c6a8..a9f0fc8a9a2d 100644 --- a/include/filter/msfilter/escherex.hxx +++ b/include/filter/msfilter/escherex.hxx @@ -424,6 +424,18 @@ enum ESCHER_LineCap ESCHER_LineEndCapFlat // Line ends at end point }; +enum MSOPATHTYPE +{ + msopathLineTo, // Draw a straight line (one point) + msopathCurveTo, // Draw a cubic Bezier curve (three points) + msopathMoveTo, // Move to a new point (one point) + msopathClose, // Close a sub - path (no points) + msopathEnd, // End a path (no points) + msopathEscape, // Escape code + msopathClientEscape, // Escape code interpreted by the client + msopathInvalid // Invalid - should never be found +}; + // Shape Properties // 1pt = 12700 EMU (English Metric Units) // 1pt = 20 Twip = 20/1440" = 1/72" -- cgit