1*b1cdbd2cSJim Jagielski /************************************************************** 2*b1cdbd2cSJim Jagielski * 3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one 4*b1cdbd2cSJim Jagielski * or more contributor license agreements. See the NOTICE file 5*b1cdbd2cSJim Jagielski * distributed with this work for additional information 6*b1cdbd2cSJim Jagielski * regarding copyright ownership. The ASF licenses this file 7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the 8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance 9*b1cdbd2cSJim Jagielski * with the License. You may obtain a copy of the License at 10*b1cdbd2cSJim Jagielski * 11*b1cdbd2cSJim Jagielski * http://www.apache.org/licenses/LICENSE-2.0 12*b1cdbd2cSJim Jagielski * 13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing, 14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an 15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*b1cdbd2cSJim Jagielski * KIND, either express or implied. See the License for the 17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations 18*b1cdbd2cSJim Jagielski * under the License. 19*b1cdbd2cSJim Jagielski * 20*b1cdbd2cSJim Jagielski *************************************************************/ 21*b1cdbd2cSJim Jagielski 22*b1cdbd2cSJim Jagielski 23*b1cdbd2cSJim Jagielski #ifndef SC_VBA_SHAPES_HXX 24*b1cdbd2cSJim Jagielski #define SC_VBA_SHAPES_HXX 25*b1cdbd2cSJim Jagielski 26*b1cdbd2cSJim Jagielski #include <com/sun/star/drawing/XShapes.hpp> 27*b1cdbd2cSJim Jagielski #include <com/sun/star/drawing/XDrawPage.hpp> 28*b1cdbd2cSJim Jagielski #include <com/sun/star/container/XIndexAccess.hpp> 29*b1cdbd2cSJim Jagielski #include <ooo/vba/msforms/XShapes.hpp> 30*b1cdbd2cSJim Jagielski 31*b1cdbd2cSJim Jagielski #include <vbahelper/vbahelperinterface.hxx> 32*b1cdbd2cSJim Jagielski 33*b1cdbd2cSJim Jagielski #include <vbahelper/vbacollectionimpl.hxx> 34*b1cdbd2cSJim Jagielski 35*b1cdbd2cSJim Jagielski typedef CollTestImplHelper< ov::msforms::XShapes > ScVbaShapes_BASE; 36*b1cdbd2cSJim Jagielski 37*b1cdbd2cSJim Jagielski class VBAHELPER_DLLPUBLIC ScVbaShapes : public ScVbaShapes_BASE 38*b1cdbd2cSJim Jagielski { 39*b1cdbd2cSJim Jagielski private: 40*b1cdbd2cSJim Jagielski css::uno::Reference< css::drawing::XShapes > m_xShapes; 41*b1cdbd2cSJim Jagielski css::uno::Reference< css::drawing::XDrawPage > m_xDrawPage; 42*b1cdbd2cSJim Jagielski sal_Int32 m_nNewShapeCount; 43*b1cdbd2cSJim Jagielski void initBaseCollection(); 44*b1cdbd2cSJim Jagielski protected: 45*b1cdbd2cSJim Jagielski css::uno::Reference< css::frame::XModel > m_xModel; 46*b1cdbd2cSJim Jagielski virtual rtl::OUString& getServiceImplName(); 47*b1cdbd2cSJim Jagielski virtual css::uno::Sequence<rtl::OUString> getServiceNames(); 48*b1cdbd2cSJim Jagielski virtual css::uno::Reference< css::container::XIndexAccess > getShapesByArrayIndices( const css::uno::Any& Index ) throw (css::uno::RuntimeException); 49*b1cdbd2cSJim Jagielski css::uno::Reference< css::drawing::XShape > createShape( rtl::OUString service ) throw (css::uno::RuntimeException); 50*b1cdbd2cSJim Jagielski css::uno::Any AddRectangle( sal_Int32 startX, sal_Int32 startY, sal_Int32 nLineWidth, sal_Int32 nLineHeight, css::uno::Any aRange ) throw (css::uno::RuntimeException); 51*b1cdbd2cSJim Jagielski css::uno::Any AddEllipse( sal_Int32 startX, sal_Int32 startY, sal_Int32 nLineWidth, sal_Int32 nLineHeight, css::uno::Any aRange ) throw (css::uno::RuntimeException); 52*b1cdbd2cSJim Jagielski css::uno::Any AddTextboxInWriter( sal_Int32 _nOrientation, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (css::uno::RuntimeException); 53*b1cdbd2cSJim Jagielski rtl::OUString createName( rtl::OUString sName ); 54*b1cdbd2cSJim Jagielski css::uno::Any AddShape( const rtl::OUString& sService, const rtl::OUString& sName, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (css::uno::RuntimeException); 55*b1cdbd2cSJim Jagielski //TODO helperapi using a writer document 56*b1cdbd2cSJim Jagielski //css::awt::Point calculateTopLeftMargin( css::uno::Reference< ov::XHelperInterface > xDocument ); 57*b1cdbd2cSJim Jagielski 58*b1cdbd2cSJim Jagielski public: 59*b1cdbd2cSJim Jagielski ScVbaShapes( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::container::XIndexAccess > xShapes, const css::uno::Reference< css::frame::XModel >& xModel ); 60*b1cdbd2cSJim Jagielski static void setDefaultShapeProperties( css::uno::Reference< css::drawing::XShape > xShape ) throw (css::uno::RuntimeException); 61*b1cdbd2cSJim Jagielski static void setShape_NameProperty( css::uno::Reference< css::drawing::XShape > xShape, rtl::OUString sName ); 62*b1cdbd2cSJim Jagielski //XEnumerationAccess 63*b1cdbd2cSJim Jagielski virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException); 64*b1cdbd2cSJim Jagielski virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (css::uno::RuntimeException); 65*b1cdbd2cSJim Jagielski 66*b1cdbd2cSJim Jagielski virtual void SAL_CALL SelectAll() throw (css::uno::RuntimeException); 67*b1cdbd2cSJim Jagielski //helper::calc 68*b1cdbd2cSJim Jagielski virtual css::uno::Any SAL_CALL AddLine( sal_Int32 StartX, sal_Int32 StartY, sal_Int32 endX, sal_Int32 endY ) throw (css::uno::RuntimeException); 69*b1cdbd2cSJim Jagielski virtual css::uno::Any SAL_CALL AddShape( sal_Int32 _nType, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (css::uno::RuntimeException); 70*b1cdbd2cSJim Jagielski virtual css::uno::Any SAL_CALL AddTextbox( sal_Int32 _nOrientation, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (css::uno::RuntimeException); 71*b1cdbd2cSJim Jagielski virtual css::uno::Reference< ov::msforms::XShapeRange > SAL_CALL Range( const css::uno::Any& shapes ) throw (css::uno::RuntimeException); 72*b1cdbd2cSJim Jagielski // ScVbaCollectionBaseImpl 73*b1cdbd2cSJim Jagielski virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ) throw (css::uno::RuntimeException); 74*b1cdbd2cSJim Jagielski virtual css::uno::Any SAL_CALL Item( const css::uno::Any& Index1, const css::uno::Any& Index2 ) throw (css::uno::RuntimeException); 75*b1cdbd2cSJim Jagielski }; 76*b1cdbd2cSJim Jagielski 77*b1cdbd2cSJim Jagielski #endif//SC_VBA_SHAPES_HXX 78