1*3334a7e6SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*3334a7e6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*3334a7e6SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*3334a7e6SAndrew Rist * distributed with this work for additional information 6*3334a7e6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*3334a7e6SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*3334a7e6SAndrew Rist * "License"); you may not use this file except in compliance 9*3334a7e6SAndrew Rist * with the License. You may obtain a copy of the License at 10*3334a7e6SAndrew Rist * 11*3334a7e6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*3334a7e6SAndrew Rist * 13*3334a7e6SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*3334a7e6SAndrew Rist * software distributed under the License is distributed on an 15*3334a7e6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*3334a7e6SAndrew Rist * KIND, either express or implied. See the License for the 17*3334a7e6SAndrew Rist * specific language governing permissions and limitations 18*3334a7e6SAndrew Rist * under the License. 19*3334a7e6SAndrew Rist * 20*3334a7e6SAndrew Rist *************************************************************/ 21*3334a7e6SAndrew Rist 22*3334a7e6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _SVX_CELLCURSOR_HXX_ 25cdf0e10cSrcweir #define _SVX_CELLCURSOR_HXX_ 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include <com/sun/star/table/XMergeableCellRange.hpp> 28cdf0e10cSrcweir #include <com/sun/star/table/XCellCursor.hpp> 29cdf0e10cSrcweir #include <cppuhelper/implbase2.hxx> 30cdf0e10cSrcweir #include "cellrange.hxx" 31cdf0e10cSrcweir 32cdf0e10cSrcweir // ----------------------------------------------------------------------------- 33cdf0e10cSrcweir 34cdf0e10cSrcweir namespace sdr { namespace table { 35cdf0e10cSrcweir 36cdf0e10cSrcweir struct CellPos; 37cdf0e10cSrcweir 38cdf0e10cSrcweir // ----------------------------------------------------------------------------- 39cdf0e10cSrcweir // CellCursor 40cdf0e10cSrcweir // ----------------------------------------------------------------------------- 41cdf0e10cSrcweir 42cdf0e10cSrcweir typedef ::cppu::ImplInheritanceHelper2< CellRange, ::com::sun::star::table::XCellCursor, ::com::sun::star::table::XMergeableCellRange > CellCursorBase; 43cdf0e10cSrcweir 44cdf0e10cSrcweir class CellCursor : public CellCursorBase 45cdf0e10cSrcweir { 46cdf0e10cSrcweir public: 47cdf0e10cSrcweir CellCursor( const TableModelRef& xTableModel, sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ); 48cdf0e10cSrcweir virtual ~CellCursor(); 49cdf0e10cSrcweir 50cdf0e10cSrcweir // XCellRange 51cdf0e10cSrcweir 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); 52cdf0e10cSrcweir 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); 53cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL getCellRangeByName( const ::rtl::OUString& aRange ) throw (::com::sun::star::uno::RuntimeException); 54cdf0e10cSrcweir 55cdf0e10cSrcweir // XCellCursor 56cdf0e10cSrcweir virtual void SAL_CALL gotoStart( ) throw (::com::sun::star::uno::RuntimeException); 57cdf0e10cSrcweir virtual void SAL_CALL gotoEnd( ) throw (::com::sun::star::uno::RuntimeException); 58cdf0e10cSrcweir virtual void SAL_CALL gotoNext( ) throw (::com::sun::star::uno::RuntimeException); 59cdf0e10cSrcweir virtual void SAL_CALL gotoPrevious( ) throw (::com::sun::star::uno::RuntimeException); 60cdf0e10cSrcweir virtual void SAL_CALL gotoOffset( ::sal_Int32 nColumnOffset, ::sal_Int32 nRowOffset ) throw (::com::sun::star::uno::RuntimeException); 61cdf0e10cSrcweir 62cdf0e10cSrcweir // XMergeableCellRange 63cdf0e10cSrcweir virtual void SAL_CALL merge( ) throw (::com::sun::star::lang::NoSupportException, ::com::sun::star::uno::RuntimeException); 64cdf0e10cSrcweir virtual void SAL_CALL split( ::sal_Int32 Columns, ::sal_Int32 Rows ) throw (::com::sun::star::lang::NoSupportException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); 65cdf0e10cSrcweir virtual ::sal_Bool SAL_CALL isMergeable( ) throw (::com::sun::star::uno::RuntimeException); 66cdf0e10cSrcweir virtual ::sal_Bool SAL_CALL isUnmergeable( ) throw (::com::sun::star::uno::RuntimeException); 67cdf0e10cSrcweir 68cdf0e10cSrcweir protected: 69cdf0e10cSrcweir bool GetMergedSelection( CellPos& rStart, CellPos& rEnd ); 70cdf0e10cSrcweir 71cdf0e10cSrcweir void split_column( sal_Int32 nCol, sal_Int32 nColumns, std::vector< sal_Int32 >& rLeftOvers ); 72cdf0e10cSrcweir void split_horizontal( sal_Int32 nColumns ); 73cdf0e10cSrcweir void split_row( sal_Int32 nRow, sal_Int32 nRows, std::vector< sal_Int32 >& rLeftOvers ); 74cdf0e10cSrcweir void split_vertical( sal_Int32 nRows ); 75cdf0e10cSrcweir }; 76cdf0e10cSrcweir 77cdf0e10cSrcweir } } 78cdf0e10cSrcweir 79cdf0e10cSrcweir #endif 80