1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef OOX_DRAWINGML_GRAPHICSHAPECONTEXT_HXX 25 #define OOX_DRAWINGML_GRAPHICSHAPECONTEXT_HXX 26 27 #include "oox/drawingml/shape.hxx" 28 #include "oox/drawingml/shapecontext.hxx" 29 #include "oox/drawingml/diagram/diagram.hxx" 30 31 namespace oox { namespace vml { struct OleObjectInfo; } } 32 33 namespace oox { namespace drawingml { 34 35 class GraphicShapeContext : public ShapeContext 36 { 37 public: 38 GraphicShapeContext( ::oox::core::ContextHandler& rParent, ShapePtr pMasterShapePtr, ShapePtr pShapePtr ); 39 40 virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException); 41 42 }; 43 44 // ==================================================================== 45 46 class GraphicalObjectFrameContext : public ShapeContext 47 { 48 public: 49 GraphicalObjectFrameContext( ::oox::core::ContextHandler& rParent, ShapePtr pMasterShapePtr, ShapePtr pShapePtr, bool bEmbedShapesInChart ); 50 51 virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException); 52 53 private: 54 bool mbEmbedShapesInChart; 55 }; 56 57 // ==================================================================== 58 59 class OleObjectGraphicDataContext : public ShapeContext 60 { 61 public: 62 OleObjectGraphicDataContext( ::oox::core::ContextHandler& rParent, ShapePtr pShapePtr ); 63 ~OleObjectGraphicDataContext(); 64 virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException); 65 66 private: 67 ::oox::vml::OleObjectInfo& mrOleObjectInfo; 68 }; 69 70 // ==================================================================== 71 72 class DiagramGraphicDataContext 73 : public ShapeContext 74 { 75 public: 76 DiagramGraphicDataContext( ::oox::core::ContextHandler& rParent, ShapePtr pShapePtr ); 77 virtual ~DiagramGraphicDataContext(); 78 virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext( ::sal_Int32 Element, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& Attribs ) throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException); 79 80 private: 81 DiagramPtr loadDiagram(); 82 83 ::rtl::OUString msDm; 84 ::rtl::OUString msLo; 85 ::rtl::OUString msQs; 86 ::rtl::OUString msCs; 87 }; 88 89 // ==================================================================== 90 91 class ChartGraphicDataContext : public ShapeContext 92 { 93 public: 94 explicit ChartGraphicDataContext( 95 ::oox::core::ContextHandler& rParent, 96 const ShapePtr& rxShape, bool bEmbedShapes ); 97 98 virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastContextHandler > SAL_CALL 99 createFastChildContext( 100 sal_Int32 nElement, 101 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& rxAttribs ) 102 throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException); 103 104 private: 105 ChartShapeInfo& mrChartShapeInfo; 106 }; 107 108 // ==================================================================== 109 110 } } 111 112 #endif // OOX_DRAWINGML_GRAPHICSHAPECONTEXT_HXX 113