/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SVX_SOURCE_INC_TABLEMODEL_HXX #define INCLUDED_SVX_SOURCE_INC_TABLEMODEL_HXX #include #include #include #include #include #include #include #include #include "celltypes.hxx" struct _xmlTextWriter; namespace sdr { namespace table { class SdrTableObj; /** base class for each object implementing an XCellRange */ class ICellRange { public: virtual sal_Int32 getLeft() = 0; virtual sal_Int32 getTop() = 0; virtual sal_Int32 getRight() = 0; virtual sal_Int32 getBottom() = 0; virtual css::uno::Reference< css::table::XTable > getTable() = 0; protected: ~ICellRange() {} }; typedef ::cppu::WeakComponentImplHelper< css::table::XTable, css::util::XBroadcaster > TableModelBase; class TableModel : public ::cppu::BaseMutex, public TableModelBase, public ICellRange { friend class InsertRowUndo; friend class RemoveRowUndo; friend class InsertColUndo; friend class RemoveColUndo; friend class TableColumnUndo; friend class TableRowUndo; friend class TableColumn; friend class TableRow; friend class TableRows; friend class TableColumns; friend class TableModelNotifyGuard; public: explicit TableModel( SdrTableObj* pTableObj ); TableModel( SdrTableObj* pTableObj, const TableModelRef& xSourceTable ); virtual ~TableModel() override; void init( sal_Int32 nColumns, sal_Int32 nRows ); SdrTableObj* getSdrTableObj() const { return mpTableObj; } /** deletes rows and columns that are completely merged. Must be called between BegUndo/EndUndo! */ void optimize(); /// merges the cell at the given position with the given span void merge( sal_Int32 nCol, sal_Int32 nRow, sal_Int32 nColSpan, sal_Int32 nRowSpan ); /// Get the width of all columns in this table. std::vector getColumnWidths(); void dumpAsXml(struct _xmlTextWriter * pWriter) const; // ICellRange virtual sal_Int32 getLeft() override; virtual sal_Int32 getTop() override; virtual sal_Int32 getRight() override; virtual sal_Int32 getBottom() override; virtual css::uno::Reference< css::table::XTable > getTable() override; // XTable virtual css::uno::Reference< css::table::XCellCursor > SAL_CALL createCursor( ) override; virtual css::uno::Reference< css::table::XCellCursor > SAL_CALL createCursorByRange( const css::uno::Reference< css::table::XCellRange >& rRange ) override; virtual ::sal_Int32 SAL_CALL getRowCount() override; virtual ::sal_Int32 SAL_CALL getColumnCount() override; // XComponent virtual void SAL_CALL dispose( ) override; // XModifiable virtual sal_Bool SAL_CALL isModified( ) override; virtual void SAL_CALL setModified( sal_Bool bModified ) override; // XModifyBroadcaster virtual void SAL_CALL addModifyListener( const css::uno::Reference< css::util::XModifyListener >& aListener ) override; virtual void SAL_CALL removeModifyListener( const css::uno::Reference< css::util::XModifyListener >& aListener ) override; // XColumnRowRange virtual css::uno::Reference< css::table::XTableColumns > SAL_CALL getColumns() override; virtual css::uno::Reference< css::table::XTableRows > SAL_CALL getRows() override; // XCellRange virtual css::uno::Reference< css::table::XCell > SAL_CALL getCellByPosition( ::sal_Int32 nColumn, ::sal_Int32 nRow ) override; virtual css::uno::Reference< css::table::XCellRange > SAL_CALL getCellRangeByPosition( ::sal_Int32 nLeft, ::sal_Int32 nTop, ::sal_Int32 nRight, ::sal_Int32 nBottom ) override; virtual css::uno::Reference< css::table::XCellRange > SAL_CALL getCellRangeByName( const OUString& aRange ) override; // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override; virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override; virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override; virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override; virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override; virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override; // XFastPropertySet virtual void SAL_CALL setFastPropertyValue( ::sal_Int32 nHandle, const css::uno::Any& aValue ) override; virtual css::uno::Any SAL_CALL getFastPropertyValue( ::sal_Int32 nHandle ) override; // XBroadcaster virtual void SAL_CALL lockBroadcasts() override; virtual void SAL_CALL unlockBroadcasts() override; protected: void notifyModification(); void insertColumns( sal_Int32 nIndex, sal_Int32 nCount ); void removeColumns( sal_Int32 nIndex, sal_Int32 nCount ); void insertRows( sal_Int32 nIndex, sal_Int32 nCount ); void removeRows( sal_Int32 nIndex, sal_Int32 nCount ); sal_Int32 getRowCountImpl() const; sal_Int32 getColumnCountImpl() const; CellRef createCell(); CellRef getCell( ::sal_Int32 nCol, ::sal_Int32 nRow ) const; void UndoInsertRows( sal_Int32 nIndex, sal_Int32 nCount ); void UndoRemoveRows( sal_Int32 nIndex, RowVector& aNewRows ); void UndoInsertColumns( sal_Int32 nIndex, sal_Int32 nCount ); void UndoRemoveColumns( sal_Int32 nIndex, ColumnVector& aNewCols, CellVector& aCells ); private: /** this function is called upon disposing the component */ virtual void SAL_CALL disposing() override; /// @throws css::lang::IndexOutOfBoundsException TableRowRef const & getRow( sal_Int32 nRow ) const; /// @throws css::lang::IndexOutOfBoundsException TableColumnRef const & getColumn( sal_Int32 nColumn ) const; void updateRows(); void updateColumns(); RowVector maRows; ColumnVector maColumns; rtl::Reference< TableColumns > mxTableColumns; rtl::Reference< TableRows > mxTableRows; SdrTableObj* mpTableObj; bool mbModified; bool mbNotifyPending; sal_Int32 mnNotifyLock; }; class TableModelNotifyGuard { public: explicit TableModelNotifyGuard( TableModel* pModel ) : mxBroadcaster( static_cast< css::util::XBroadcaster* >( pModel ) ) { if( mxBroadcaster.is() ) mxBroadcaster->lockBroadcasts(); } ~TableModelNotifyGuard() { if( mxBroadcaster.is() ) mxBroadcaster->unlockBroadcasts(); } private: css::uno::Reference< css::util::XBroadcaster > mxBroadcaster; }; } } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ll'>distro/ubuntu/oneiric-3.4-all LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-04-14Fix typosAndrea Gelmini
2017-10-23loplugin:includeform: smoketestStephan Bergmann
2017-08-31loplugin:constparams: smoketest (clang-cl)Stephan Bergmann
2017-07-28loplugin:constparams handle constructorsNoel Grandin
2017-07-06Translate German comments/debug strings (leftovers in dirs sdext to soltools)Johnny_M
2017-06-12cleanup unused css/frame/* includesJochen Nitschke
2017-05-07revert OSL_ASSERT changesChris Sherlock
2017-05-07tdf#43157: convert smoketest codebase away from OSL_ASSERT to assertChris Sherlock
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
2017-03-11Fix typosAndrea Gelmini
2017-03-02Fix typosAndrea Gelmini
2017-01-26Remove dynamic exception specificationsStephan Bergmann
2016-12-20Fix smoketest under right-to-left localesKhaled Hosny
2016-06-09tdf#94698 cleanup Makefiles. Get rid of udkapi and offapiGleb Mishchenko
2016-04-20loplugin:salbool: Automatic rewrite of sal_False/TrueStephan Bergmann
2016-04-18coverity#1358588 Uninitialized scalar fieldCaolán McNamara
2016-04-13tdf#94306 replace boost::noncopyable in sfx2 to sotJochen Nitschke
2016-03-22tdf#84323: Make osl::Condition::wait more readableGurkaran
2016-02-15WaE: loplugin:cstylecastTor Lillqvist
2016-02-15smoketest: loplugin:nullptrMichael Stahl
2016-02-15Introduce lok_preinit() to preload all registered UNO implementationsHenry Castro
2016-02-09Remove excess newlinesChris Sherlock
2015-12-10More smoketest notes.Michael Meeks
2015-11-30Use -ldl -pthread only on LinuxTor Lillqvist
2015-11-26smoketest: improve docs.Michael Meeks
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-11-06loplugin:stringconstant: elide explicit ctor usage (manually due to macros)Stephan Bergmann
2015-11-04yyyyyNoel Grandin
2015-10-29com::sun::star->css in smoketest,sotNoel Grandin
2015-10-15coverity#1326133 Logically dead codeCaolán McNamara
2015-10-14cid#1326675 DLS: Dead local storeNoel Grandin
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-09-15Resolves: tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe
2015-08-07cppcheck:noExplicitConstructorNoel Grandin
2015-06-11java:regulatize the order of 'final' and public/privateNoel Grandin
2015-04-01smoketest: run XML files through xmllint --formatMichael Stahl
2015-03-23Build libtest on Windows, tooTor Lillqvist
2014-11-18Preparation of the LibreOfficeKit for WindowsJuergen Funk
2014-11-06coverity#1000834 Use of untrusted string valueCaolán McNamara
2014-10-30Fixed typos. No automatic tools (sed, and so on).Andrea Gelmini
2014-09-11smoketest: run the extension test firstMichael Stahl