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 _SVX_CELLRANGE_HXX_ 25 #define _SVX_CELLRANGE_HXX_ 26 27 #include <com/sun/star/table/XCellRange.hpp> 28 #include <cppuhelper/implbase1.hxx> 29 30 #include "tablemodel.hxx" 31 32 // ----------------------------------------------------------------------------- 33 34 namespace sdr { namespace table { 35 36 // ----------------------------------------------------------------------------- 37 // CellRange 38 // ----------------------------------------------------------------------------- 39 40 class CellRange : public ::cppu::WeakAggImplHelper1< ::com::sun::star::table::XCellRange >, public ICellRange 41 { 42 public: 43 CellRange( const TableModelRef & xTable, sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ); 44 virtual ~CellRange(); 45 46 // ICellRange 47 virtual sal_Int32 getLeft(); 48 virtual sal_Int32 getTop(); 49 virtual sal_Int32 getRight(); 50 virtual sal_Int32 getBottom(); 51 virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XTable > getTable(); 52 53 // XCellRange 54 virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCell > SAL_CALL getCellByPosition( sal_Int32 nColumn, sal_Int32 nRow ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 55 virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 56 virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL getCellRangeByName( const ::rtl::OUString& aRange ) throw (::com::sun::star::uno::RuntimeException); 57 58 protected: 59 TableModelRef mxTable; 60 sal_Int32 mnLeft; 61 sal_Int32 mnTop; 62 sal_Int32 mnRight; 63 sal_Int32 mnBottom; 64 }; 65 66 } } 67 68 #endif 69