aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/sl/draw/DrawFreeformShape.java
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2015-07-24 21:47:55 +0000
committerAndreas Beeker <kiwiwings@apache.org>2015-07-24 21:47:55 +0000
commit7481844c98f174b1a0cedc56385872b8f4e343a2 (patch)
treead78c6cc7e6bd8fa1aadf4e2effb366160678e6e /src/java/org/apache/poi/sl/draw/DrawFreeformShape.java
parentb5fcac48e1606a9d3893cbd31adcf94459192c31 (diff)
parent4e1c37905af496fcf0719b3ed623295c410040a9 (diff)
downloadpoi-7481844c98f174b1a0cedc56385872b8f4e343a2.tar.gz
poi-7481844c98f174b1a0cedc56385872b8f4e343a2.zip
merged common_sl branch to trunk
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1692593 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/sl/draw/DrawFreeformShape.java')
-rw-r--r--src/java/org/apache/poi/sl/draw/DrawFreeformShape.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/java/org/apache/poi/sl/draw/DrawFreeformShape.java b/src/java/org/apache/poi/sl/draw/DrawFreeformShape.java
new file mode 100644
index 0000000000..1c3d6c07b4
--- /dev/null
+++ b/src/java/org/apache/poi/sl/draw/DrawFreeformShape.java
@@ -0,0 +1,47 @@
+/* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+==================================================================== */
+
+package org.apache.poi.sl.draw;
+
+import java.awt.Graphics2D;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+
+import org.apache.poi.sl.draw.geom.Outline;
+import org.apache.poi.sl.draw.geom.Path;
+import org.apache.poi.sl.usermodel.FillStyle;
+import org.apache.poi.sl.usermodel.FreeformShape;
+import org.apache.poi.sl.usermodel.StrokeStyle;
+import org.apache.poi.sl.usermodel.TextParagraph;
+import org.apache.poi.sl.usermodel.TextRun;
+
+public class DrawFreeformShape<T extends FreeformShape<? extends TextParagraph<? extends TextRun>>> extends DrawAutoShape<T> {
+ public DrawFreeformShape(T shape) {
+ super(shape);
+ }
+
+ protected Collection<Outline> computeOutlines(Graphics2D graphics) {
+ List<Outline> lst = new ArrayList<Outline>();
+ java.awt.Shape sh = shape.getPath();
+ FillStyle fs = shape.getFillStyle();
+ StrokeStyle ss = shape.getStrokeStyle();
+ Path path = new Path(fs != null, ss != null);
+ lst.add(new Outline(sh, path));
+ return lst;
+ }
+}