/* -*- 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 . */ #pragma once #include #include namespace svt::table { class TableControl_Impl; //= TableGeometry class TableGeometry { protected: const TableControl_Impl& m_rControl; const tools::Rectangle& m_rBoundaries; tools::Rectangle m_aRect; protected: TableGeometry( const TableControl_Impl& _rControl, const tools::Rectangle& _rBoundaries ) :m_rControl( _rControl ) ,m_rBoundaries( _rBoundaries ) ,m_aRect( _rBoundaries ) { } public: // attribute access const TableControl_Impl& getControl() const { return m_rControl; } // status const tools::Rectangle& getRect() const { return m_aRect; } bool isValid() const { return !m_aRect.GetIntersection( m_rBoundaries ).IsEmpty(); } }; //= TableRowGeometry class TableRowGeometry final : public TableGeometry { public: TableRowGeometry( TableControl_Impl const & _rControl, tools::Rectangle const & _rBoundaries, RowPos const _nRow, bool const i_allowVirtualRows = false // allow rows >= getRowCount()? ); // status RowPos getRow() const { return m_nRowPos; } // operations bool moveDown(); private: void impl_initRect(); bool impl_isValidRow( RowPos const i_row ) const; RowPos m_nRowPos; bool m_bAllowVirtualRows; }; //= TableColumnGeometry class TableColumnGeometry final : public TableGeometry { public: TableColumnGeometry( TableControl_Impl const & _rControl, tools::Rectangle const & _rBoundaries, ColPos const _nCol ); // status ColPos getCol() const { return m_nColPos; } // operations bool moveRight(); private: void impl_initRect(); bool impl_isValidColumn( ColPos const i_column ) const; ColPos m_nColPos; }; //= TableCellGeometry /** a helper representing geometry information of a cell */ class TableCellGeometry { private: TableRowGeometry m_aRow; TableColumnGeometry m_aCol; public: TableCellGeometry( TableControl_Impl const & _rControl, tools::Rectangle const & _rBoundaries, ColPos const _nCol, RowPos const _nRow ) :m_aRow( _rControl, _rBoundaries, _nRow, false/*allowVirtualCells*/ ) ,m_aCol( _rControl, _rBoundaries, _nCol ) { } TableCellGeometry( const TableRowGeometry& _rRow, ColPos _nCol ) :m_aRow( _rRow ) ,m_aCol( _rRow.getControl(), _rRow.getRect(), _nCol ) { } tools::Rectangle getRect() const { return m_aRow.getRect().GetIntersection( m_aCol.getRect() ); } ColPos getColumn() const { return m_aCol.getCol(); } bool isValid() const { return !getRect().IsEmpty(); } bool moveRight() {return m_aCol.moveRight(); } }; } // namespace svt::table /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ n> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-04-12clang-tidy performance-unnecessary-value-param in writerfilterNoel Grandin
2016-01-29writerfilter: uno::Sequence -> std::vector for table rangesMiklos Vajna
2016-01-28writerfilter: uno::Sequence -> std::vector for table row rangesMiklos Vajna
2016-01-27writerfilter: uno::Sequence -> std::vector for table cell rangesMiklos Vajna
2016-01-21writerfilter: can use a plain instance for the cell sequence hereMiklos Vajna
2016-01-20writerfilter: can use a plain instance for the row sequence hereMiklos Vajna
2015-12-22writerfilter: can use a plain instance for the table sequence hereMiklos Vajna
2015-07-21loplugin:unusedmethods writerfilterNoel Grandin
2015-07-08writerfilter: remove not needed TableDataHandler interfaceMiklos Vajna
2015-07-06remove some unnecessary typedefs around uno::ReferenceNoel Grandin
2015-06-23tdf#87460 DOCX import: fix missing endnote in floattableMiklos Vajna
2015-04-11writerfilter: no need to spell out com::sun::star, css is enoughMiklos Vajna
2015-02-06fdo#75757: Remove inheritance from std::vectorMatthew Pottage
2015-01-26new loplugin: change virtual methods to non-virtualNoel Grandin
2014-12-30writerfilter: boost::shared_ptr -> c++11 std::shared_ptrMiklos Vajna
2014-12-06No need to have TableDataHandler as a templateMiklos Vajna
2014-11-30writerfilter: only dmapper needs TableManager.hxxMiklos Vajna
2014-10-13Avoid manual realloc, use comphelper::SequenceAsVector insteadMiklos Vajna
2014-07-22writerfilter: pass uno::Reference by reference, more dmapper...Michael Stahl
2014-05-19writerfilter: remove using namespace from headersThomas Arnhold
2014-04-19fixincludeguards.sh: writerfilterThomas Arnhold
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann