diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-03-12 09:01:14 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-03-12 09:01:14 +0000 |
commit | 980294f1db190e928a250cd4b4f5d85463509895 (patch) | |
tree | 3743591672d8992a4a3997d3d1f7d1bc40bf7e50 /svx | |
parent | 85caedbef6ba65207fa7df452efd4fc013dd15dc (diff) |
INTEGRATION: CWS impresstables2 (1.1.2); FILE ADDED
2007/10/11 15:18:51 cl 1.1.2.3: #i68103# added undo for tables
2007/08/06 19:38:03 cl 1.1.2.2: #i68103# worked on cell merging for tables in impress&draw
2007/03/15 17:12:37 cl 1.1.2.1: #i68103# adding a shape for tables
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/cellrange.hxx | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/svx/source/table/cellrange.hxx b/svx/source/table/cellrange.hxx new file mode 100644 index 000000000000..521f046e6f5a --- /dev/null +++ b/svx/source/table/cellrange.hxx @@ -0,0 +1,80 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: cellrange.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: rt $ $Date: 2008-03-12 10:01:14 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ + +#ifndef _SVX_CELLRANGE_HXX_ +#define _SVX_CELLRANGE_HXX_ + +#include <com/sun/star/table/XCellRange.hpp> +#include <cppuhelper/implbase1.hxx> + +#include "tablemodel.hxx" + +// ----------------------------------------------------------------------------- + +namespace sdr { namespace table { + +// ----------------------------------------------------------------------------- +// CellRange +// ----------------------------------------------------------------------------- + +class CellRange : public ::cppu::WeakAggImplHelper1< ::com::sun::star::table::XCellRange >, public ICellRange +{ +public: + CellRange( const TableModelRef & xTable, sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ); + virtual ~CellRange(); + + // ICellRange + virtual sal_Int32 getLeft(); + virtual sal_Int32 getTop(); + virtual sal_Int32 getRight(); + virtual sal_Int32 getBottom(); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XTable > getTable(); + + // XCellRange + 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); + 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); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL getCellRangeByName( const ::rtl::OUString& aRange ) throw (::com::sun::star::uno::RuntimeException); + +protected: + TableModelRef mxTable; + sal_Int32 mnLeft; + sal_Int32 mnTop; + sal_Int32 mnRight; + sal_Int32 mnBottom; +}; + +} } + +#endif |