update dev300-m58
[ooovba.git] / svx / source / table / tablerow.hxx
blob537ccd1b4ef63351d66fb9af29271afccd2ccbeb
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: tablerow.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _SVX_TABLEROW_HXX_
32 #define _SVX_TABLEROW_HXX_
34 #include <com/sun/star/table/XCellRange.hpp>
35 #include <com/sun/star/container/XNamed.hpp>
36 #include <cppuhelper/implbase2.hxx>
38 #include "propertyset.hxx"
39 #include "tablemodel.hxx"
41 // -----------------------------------------------------------------------------
43 namespace sdr { namespace table {
45 // -----------------------------------------------------------------------------
46 // TableRow
47 // -----------------------------------------------------------------------------
49 typedef ::cppu::ImplInheritanceHelper2< ::comphelper::FastPropertySet, ::com::sun::star::table::XCellRange, ::com::sun::star::container::XNamed > TableRowBase;
51 class TableRow : public TableRowBase
53 friend class TableModel;
54 friend class TableRowUndo;
55 public:
56 TableRow( const TableModelRef& xTableModel, sal_Int32 nRow, sal_Int32 nColumns );
57 virtual ~TableRow();
59 void dispose();
60 void throwIfDisposed() const throw (::com::sun::star::uno::RuntimeException);
62 TableRow& operator=( const TableRow& );
64 void insertColumns( sal_Int32 nIndex, sal_Int32 nCount, CellVector::iterator* pIter = 0 );
65 void removeColumns( sal_Int32 nIndex, sal_Int32 nCount );
67 // XCellRange
68 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);
69 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);
70 virtual ::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange > SAL_CALL getCellRangeByName( const ::rtl::OUString& aRange ) throw (::com::sun::star::uno::RuntimeException);
72 // XNamed
73 virtual ::rtl::OUString SAL_CALL getName() throw (::com::sun::star::uno::RuntimeException);
74 virtual void SAL_CALL setName( const ::rtl::OUString& aName ) throw (::com::sun::star::uno::RuntimeException);
76 // XFastPropertySet
77 virtual void SAL_CALL setFastPropertyValue( ::sal_Int32 nHandle, const ::com::sun::star::uno::Any& aValue ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
78 virtual ::com::sun::star::uno::Any SAL_CALL getFastPropertyValue( ::sal_Int32 nHandle ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
80 private:
81 static rtl::Reference< ::comphelper::FastPropertySetInfo > getStaticPropertySetInfo();
83 TableModelRef mxTableModel;
84 CellVector maCells;
85 sal_Int32 mnRow;
86 sal_Int32 mnHeight;
87 sal_Bool mbOptimalHeight;
88 sal_Bool mbIsVisible;
89 sal_Bool mbIsStartOfNewPage;
90 ::rtl::OUString maName;
93 } }
95 #endif