1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: tablecolumn.hxx,v $
10 * $Revision: 1.3.264.1 $
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_TABLECOLUMN_HXX_
32 #define _SVX_TABLECOLUMN_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 // -----------------------------------------------------------------------------
47 // -----------------------------------------------------------------------------
49 typedef ::cppu::ImplInheritanceHelper2
< ::comphelper::FastPropertySet
, ::com::sun::star::table::XCellRange
, ::com::sun::star::container::XNamed
> TableColumnBase
;
51 class TableColumn
: public TableColumnBase
53 friend class TableColumnUndo
;
54 friend class TableModel
;
56 TableColumn( const TableModelRef
& xTableModel
, sal_Int32 nColumn
);
57 virtual ~TableColumn();
60 void throwIfDisposed() const throw (::com::sun::star::uno::RuntimeException
);
62 TableColumn
& operator=( const TableColumn
& );
65 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
);
66 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
);
67 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::table::XCellRange
> SAL_CALL
getCellRangeByName( const ::rtl::OUString
& aRange
) throw (::com::sun::star::uno::RuntimeException
);
70 virtual ::rtl::OUString SAL_CALL
getName() throw (::com::sun::star::uno::RuntimeException
);
71 virtual void SAL_CALL
setName( const ::rtl::OUString
& aName
) throw (::com::sun::star::uno::RuntimeException
);
74 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
);
75 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
);
78 static rtl::Reference
< ::comphelper::FastPropertySetInfo
> getStaticPropertySetInfo();
80 TableModelRef mxTableModel
;
83 sal_Bool mbOptimalWidth
;
85 sal_Bool mbIsStartOfNewPage
;
86 ::rtl::OUString maName
;