1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #include <com/sun/star/awt/grid/XMutableGridDataModel.hpp> 29*cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp> 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include <cppuhelper/basemutex.hxx> 32*cdf0e10cSrcweir #include <cppuhelper/compbase2.hxx> 33*cdf0e10cSrcweir #include <toolkit/helper/mutexandbroadcasthelper.hxx> 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir #include <vector> 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir using namespace ::com::sun::star; 38*cdf0e10cSrcweir using namespace ::com::sun::star::uno; 39*cdf0e10cSrcweir using namespace ::com::sun::star::awt; 40*cdf0e10cSrcweir using namespace ::com::sun::star::awt::grid; 41*cdf0e10cSrcweir using namespace ::com::sun::star::lang; 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir namespace comphelper 44*cdf0e10cSrcweir { 45*cdf0e10cSrcweir class ComponentGuard; 46*cdf0e10cSrcweir } 47*cdf0e10cSrcweir 48*cdf0e10cSrcweir namespace toolkit 49*cdf0e10cSrcweir { 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir enum broadcast_type { row_added, row_removed, data_changed}; 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir typedef ::cppu::WeakComponentImplHelper2 < XMutableGridDataModel 54*cdf0e10cSrcweir , XServiceInfo 55*cdf0e10cSrcweir > DefaultGridDataModel_Base; 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir class DefaultGridDataModel :public ::cppu::BaseMutex 58*cdf0e10cSrcweir ,public DefaultGridDataModel_Base 59*cdf0e10cSrcweir { 60*cdf0e10cSrcweir public: 61*cdf0e10cSrcweir DefaultGridDataModel(); 62*cdf0e10cSrcweir DefaultGridDataModel( DefaultGridDataModel const & i_copySource ); 63*cdf0e10cSrcweir virtual ~DefaultGridDataModel(); 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir // XMutableGridDataModel 66*cdf0e10cSrcweir virtual void SAL_CALL addRow( const Any& i_heading, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& Data ) throw (::com::sun::star::uno::RuntimeException); 67*cdf0e10cSrcweir virtual void SAL_CALL addRows( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& Headings, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > >& Data ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); 68*cdf0e10cSrcweir virtual void SAL_CALL insertRow( ::sal_Int32 i_index, const ::com::sun::star::uno::Any& i_heading, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& Data ) throw (::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException); 69*cdf0e10cSrcweir virtual void SAL_CALL insertRows( ::sal_Int32 i_index, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& Headings, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > >& Data ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 70*cdf0e10cSrcweir virtual void SAL_CALL removeRow( ::sal_Int32 RowIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 71*cdf0e10cSrcweir virtual void SAL_CALL removeAllRows( ) throw (::com::sun::star::uno::RuntimeException); 72*cdf0e10cSrcweir virtual void SAL_CALL updateCellData( ::sal_Int32 ColumnIndex, ::sal_Int32 RowIndex, const ::com::sun::star::uno::Any& Value ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 73*cdf0e10cSrcweir virtual void SAL_CALL updateRowData( const ::com::sun::star::uno::Sequence< ::sal_Int32 >& ColumnIndexes, ::sal_Int32 RowIndex, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& Values ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); 74*cdf0e10cSrcweir virtual void SAL_CALL updateRowHeading( ::sal_Int32 RowIndex, const ::com::sun::star::uno::Any& Heading ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 75*cdf0e10cSrcweir virtual void SAL_CALL updateCellToolTip( ::sal_Int32 ColumnIndex, ::sal_Int32 RowIndex, const ::com::sun::star::uno::Any& Value ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 76*cdf0e10cSrcweir virtual void SAL_CALL updateRowToolTip( ::sal_Int32 RowIndex, const ::com::sun::star::uno::Any& Value ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 77*cdf0e10cSrcweir virtual void SAL_CALL addGridDataListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::grid::XGridDataListener >& Listener ) throw (::com::sun::star::uno::RuntimeException); 78*cdf0e10cSrcweir virtual void SAL_CALL removeGridDataListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::grid::XGridDataListener >& Listener ) throw (::com::sun::star::uno::RuntimeException); 79*cdf0e10cSrcweir 80*cdf0e10cSrcweir // XGridDataModel 81*cdf0e10cSrcweir virtual ::sal_Int32 SAL_CALL getRowCount() throw (::com::sun::star::uno::RuntimeException); 82*cdf0e10cSrcweir virtual ::sal_Int32 SAL_CALL getColumnCount() throw (::com::sun::star::uno::RuntimeException); 83*cdf0e10cSrcweir virtual ::com::sun::star::uno::Any SAL_CALL getCellData( ::sal_Int32 Column, ::sal_Int32 Row ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 84*cdf0e10cSrcweir virtual ::com::sun::star::uno::Any SAL_CALL getCellToolTip( ::sal_Int32 Column, ::sal_Int32 Row ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 85*cdf0e10cSrcweir virtual ::com::sun::star::uno::Any SAL_CALL getRowHeading( ::sal_Int32 RowIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 86*cdf0e10cSrcweir virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > SAL_CALL getRowData( ::sal_Int32 RowIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir // OComponentHelper 89*cdf0e10cSrcweir virtual void SAL_CALL disposing(); 90*cdf0e10cSrcweir 91*cdf0e10cSrcweir // XCloneable 92*cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone( ) throw (::com::sun::star::uno::RuntimeException); 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir // XServiceInfo 95*cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (RuntimeException); 96*cdf0e10cSrcweir virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (RuntimeException); 97*cdf0e10cSrcweir virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (RuntimeException); 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir private: 100*cdf0e10cSrcweir typedef ::std::pair< Any, Any > CellData; 101*cdf0e10cSrcweir typedef ::std::vector< CellData > RowData; 102*cdf0e10cSrcweir typedef ::std::vector< RowData > GridData; 103*cdf0e10cSrcweir 104*cdf0e10cSrcweir void broadcast( 105*cdf0e10cSrcweir GridDataEvent const & i_event, 106*cdf0e10cSrcweir void ( SAL_CALL ::com::sun::star::awt::grid::XGridDataListener::*i_listenerMethod )( ::com::sun::star::awt::grid::GridDataEvent const & ), 107*cdf0e10cSrcweir ::comphelper::ComponentGuard & i_instanceLock 108*cdf0e10cSrcweir ); 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir void impl_insertRow( sal_Int32 const i_position, Any const & i_heading, Sequence< Any > const & i_rowData, sal_Int32 const i_assumedColCount = -1 ); 111*cdf0e10cSrcweir 112*cdf0e10cSrcweir ::sal_Int32 impl_getRowCount_nolck() const { return sal_Int32( m_aData.size() ); } 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir CellData const & impl_getCellData_throw( sal_Int32 const i_columnIndex, sal_Int32 const i_rowIndex ) const; 115*cdf0e10cSrcweir CellData& impl_getCellDataAccess_throw( sal_Int32 const i_columnIndex, sal_Int32 const i_rowIndex ); 116*cdf0e10cSrcweir RowData& impl_getRowDataAccess_throw( sal_Int32 const i_rowIndex, size_t const i_requiredColumnCount ); 117*cdf0e10cSrcweir 118*cdf0e10cSrcweir GridData m_aData; 119*cdf0e10cSrcweir ::std::vector< ::com::sun::star::uno::Any > m_aRowHeaders; 120*cdf0e10cSrcweir sal_Int32 m_nColumnCount; 121*cdf0e10cSrcweir }; 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir } 124