xref: /aoo4110/main/svx/source/table/tablecolumns.hxx (revision b1cdbd2c)
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_TABLECOLUMNS_HXX_
25 #define _SVX_TABLECOLUMNS_HXX_
26 
27 #include <com/sun/star/table/XTableColumns.hpp>
28 #include <cppuhelper/implbase1.hxx>
29 
30 #include "tablemodel.hxx"
31 
32 // -----------------------------------------------------------------------------
33 
34 namespace sdr { namespace table {
35 
36 // -----------------------------------------------------------------------------
37 // TableColumns
38 // -----------------------------------------------------------------------------
39 
40 class TableColumns : public ::cppu::WeakAggImplHelper1< ::com::sun::star::table::XTableColumns >
41 {
42 public:
43 	TableColumns( const TableModelRef& xTableModel );
44 	virtual ~TableColumns();
45 
46 	void dispose();
47 	void throwIfDisposed() const throw (::com::sun::star::uno::RuntimeException);
48 
49 	// XTableColumns
50 	virtual void SAL_CALL insertByIndex( sal_Int32 nIndex, sal_Int32 nCount ) throw (::com::sun::star::uno::RuntimeException);
51     virtual void SAL_CALL removeByIndex( sal_Int32 nIndex, sal_Int32 nCount ) throw (::com::sun::star::uno::RuntimeException);
52 
53     // XIndexAccess
54     virtual sal_Int32 SAL_CALL getCount() throw (::com::sun::star::uno::RuntimeException);
55     virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
56 
57     // Methods
58     virtual ::com::sun::star::uno::Type SAL_CALL getElementType() throw (::com::sun::star::uno::RuntimeException);
59     virtual ::sal_Bool SAL_CALL hasElements() throw (::com::sun::star::uno::RuntimeException);
60 
61 private:
62 	TableModelRef	mxTableModel;
63 };
64 
65 } }
66 
67 #endif
68