/* ==================================================================== 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.xslf.usermodel; import java.awt.Color; import java.awt.geom.Rectangle2D; import org.apache.poi.util.Beta; import org.apache.xmlbeans.XmlObject; import org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps; import org.openxmlformats.schemas.presentationml.x2006.main.CTConnector; import org.openxmlformats.schemas.presentationml.x2006.main.CTGraphicalObjectFrame; import org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape; import org.openxmlformats.schemas.presentationml.x2006.main.CTPicture; import org.openxmlformats.schemas.presentationml.x2006.main.CTShape; /** * @author Yegor Kozlov */ @Beta public class XSLFDrawing { private XSLFSheet _sheet; private int _shapeId = 1; private CTGroupShape _spTree; /*package*/ XSLFDrawing(XSLFSheet sheet, CTGroupShape spTree){ _sheet = sheet; _spTree = spTree; XmlObject[] cNvPr = sheet.getSpTree().selectPath( "declare namespace p='http://schemas.openxmlformats.org/presentationml/2006/main' .//*/p:cNvPr"); for(XmlObject o : cNvPr) { // powerpoint generates AlternateContent elements which cNvPr elements aren't recognized // ignore them for now if (o instanceof CTNonVisualDrawingProps) { CTNonVisualDrawingProps p = (CTNonVisualDrawingProps)o; _shapeId = (int)Math.max(_shapeId, p.getId()); } } } public XSLFAutoShape createAutoShape(){ CTShape sp = _spTree.addNewSp(); sp.set(XSLFAutoShape.prototype(_shapeId++)); XSLFAutoShape shape = new XSLFAutoShape(sp, _sheet); shape.setAnchor(new Rectangle2D.Double()); return shape; } public XSLFFreeformShape createFreeform(){ CTShape sp = _spTree.addNewSp(); sp.set(XSLFFreeformShape.prototype(_shapeId++)); XSLFFreeformShape shape = new XSLFFreeformShape(sp, _sheet); shape.setAnchor(new Rectangle2D.Double()); return shape; } public XSLFTextBox createTextBox(){ CTShape sp = _spTree.addNewSp(); sp.set(XSLFTextBox.prototype(_shapeId++)); XSLFTextBox shape = new XSLFTextBox(sp, _sheet); shape.setAnchor(new Rectangle2D.Double()); return shape; } public XSLFConnectorShape createConnector(){ CTConnector sp = _spTree.addNewCxnSp(); sp.set(XSLFConnectorShape.prototype(_shapeId++)); XSLFConnectorShape shape = new XSLFConnectorShape(sp, _sheet); shape.setAnchor(new Rectangle2D.Double()); shape.setLineColor(Color.black); shape.setLineWidth(0.75); return shape; } public XSLFGroupShape createGroup(){ CTGroupShape obj = _spTree.addNewGrpSp(); obj.set(XSLFGroupShape.prototype(_shapeId++)); XSLFGroupShape shape = new XSLFGroupShape(obj, _sheet); shape.setAnchor(new Rectangle2D.Double()); return shape; } public XSLFPictureShape createPicture(String rel){ CTPicture obj = _spTree.addNewPic(); obj.set(XSLFPictureShape.prototype(_shapeId++, rel)); XSLFPictureShape shape = new XSLFPictureShape(obj, _sheet); shape.setAnchor(new Rectangle2D.Double()); return shape; } public XSLFTable createTable(){ CTGraphicalObjectFrame obj = _spTree.addNewGraphicFrame(); obj.set(XSLFTable.prototype(_shapeId++)); XSLFTable shape = new XSLFTable(obj, _sheet); shape.setAnchor(new Rectangle2D.Double()); return shape; } }