123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- // Copyright (c) 2014-2021 Thomas Fussell
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE
- //
- // @license: http://www.opensource.org/licenses/mit-license.php
- // @author: see AUTHORS file
- #include <xlnt/cell/cell.hpp>
- #include <xlnt/styles/style.hpp>
- #include <xlnt/workbook/workbook.hpp>
- #include <xlnt/worksheet/range.hpp>
- #include <xlnt/worksheet/range_iterator.hpp>
- #include <xlnt/worksheet/range_reference.hpp>
- #include <xlnt/worksheet/worksheet.hpp>
- namespace xlnt {
- range::range(class worksheet ws, const range_reference &reference, major_order order, bool skip_null)
- : ws_(ws),
- ref_(reference),
- order_(order),
- skip_null_(skip_null)
- {
- }
- range::~range() = default;
- void range::clear_cells()
- {
- if (ref_.top_left().column() == ws_.lowest_column()
- && ref_.bottom_right().column() == ws_.highest_column())
- {
- for (auto row = ref_.top_left().row(); row <= ref_.bottom_right().row(); ++row)
- {
- ws_.clear_row(row);
- }
- }
- else
- {
- for (auto row = ref_.top_left().row(); row <= ref_.bottom_right().row(); ++row)
- {
- for (auto column = ref_.top_left().column(); column <= ref_.bottom_right().column(); ++column)
- {
- ws_.clear_cell(xlnt::cell_reference(column, row));
- }
- }
- }
- }
- cell_vector range::operator[](std::size_t index)
- {
- return vector(index);
- }
- const cell_vector range::operator[](std::size_t index) const
- {
- return vector(index);
- }
- const worksheet &range::target_worksheet() const
- {
- return ws_;
- }
- range_reference range::reference() const
- {
- return ref_;
- }
- std::size_t range::length() const
- {
- if (order_ == major_order::row)
- {
- return ref_.bottom_right().row() - ref_.top_left().row() + 1;
- }
- return (ref_.bottom_right().column() - ref_.top_left().column()).index + 1;
- }
- bool range::operator==(const range &comparand) const
- {
- return ref_ == comparand.ref_
- && ws_ == comparand.ws_
- && order_ == comparand.order_;
- }
- cell_vector range::vector(std::size_t vector_index)
- {
- auto cursor = ref_.top_left();
- if (order_ == major_order::row)
- {
- cursor.row(cursor.row() + static_cast<row_t>(vector_index));
- }
- else
- {
- cursor.column_index(cursor.column_index() + static_cast<column_t::index_t>(vector_index));
- }
- return cell_vector(ws_, cursor, ref_, order_, skip_null_, false);
- }
- const cell_vector range::vector(std::size_t vector_index) const
- {
- auto cursor = ref_.top_left();
- if (order_ == major_order::row)
- {
- cursor.row(cursor.row() + static_cast<row_t>(vector_index));
- }
- else
- {
- cursor.column_index(cursor.column_index() + static_cast<column_t::index_t>(vector_index));
- }
- return cell_vector(ws_, cursor, ref_, order_, skip_null_, false);
- }
- bool range::contains(const cell_reference &cell_ref)
- {
- return ref_.contains(cell_ref);
- }
- range range::alignment(const xlnt::alignment &new_alignment)
- {
- apply([&new_alignment](class cell c) { c.alignment(new_alignment); });
- return *this;
- }
- range range::border(const xlnt::border &new_border)
- {
- apply([&new_border](class cell c) { c.border(new_border); });
- return *this;
- }
- range range::fill(const xlnt::fill &new_fill)
- {
- apply([&new_fill](class cell c) { c.fill(new_fill); });
- return *this;
- }
- range range::font(const xlnt::font &new_font)
- {
- apply([&new_font](class cell c) { c.font(new_font); });
- return *this;
- }
- range range::number_format(const xlnt::number_format &new_number_format)
- {
- apply([&new_number_format](class cell c) { c.number_format(new_number_format); });
- return *this;
- }
- range range::protection(const xlnt::protection &new_protection)
- {
- apply([&new_protection](class cell c) { c.protection(new_protection); });
- return *this;
- }
- range range::style(const class style &new_style)
- {
- apply([&new_style](class cell c) { c.style(new_style); });
- return *this;
- }
- range range::style(const std::string &style_name)
- {
- return style(ws_.workbook().style(style_name));
- }
- conditional_format range::conditional_format(const condition &when)
- {
- return ws_.conditional_format(ref_, when);
- }
- void range::apply(std::function<void(class cell)> f)
- {
- for (auto row : *this)
- {
- for (auto cell : row)
- {
- f(cell);
- }
- }
- }
- cell range::cell(const cell_reference &ref)
- {
- return (*this)[ref.row() - 1][ref.column().index - 1];
- }
- const cell range::cell(const cell_reference &ref) const
- {
- return (*this)[ref.row() - 1][ref.column().index - 1];
- }
- cell_vector range::front()
- {
- return *begin();
- }
- const cell_vector range::front() const
- {
- return *cbegin();
- }
- cell_vector range::back()
- {
- return *(--end());
- }
- const cell_vector range::back() const
- {
- return *(--cend());
- }
- range::iterator range::begin()
- {
- return iterator(ws_, ref_.top_left(), ref_, order_, skip_null_);
- }
- range::iterator range::end()
- {
- auto cursor = ref_.top_left();
- if (order_ == major_order::row)
- {
- cursor.row(ref_.bottom_right().row() + 1);
- }
- else
- {
- cursor.column_index(ref_.bottom_right().column_index() + 1);
- }
- return iterator(ws_, cursor, ref_, order_, skip_null_);
- }
- range::const_iterator range::cbegin() const
- {
- return const_iterator(ws_, ref_.top_left(), ref_, order_, skip_null_);
- }
- range::const_iterator range::cend() const
- {
- auto cursor = ref_.top_left();
- if (order_ == major_order::row)
- {
- cursor.row(ref_.bottom_right().row() + 1);
- }
- else
- {
- cursor.column_index(ref_.bottom_right().column_index() + 1);
- }
- return const_iterator(ws_, cursor, ref_, order_, skip_null_);
- }
- bool range::operator!=(const range &comparand) const
- {
- return !(*this == comparand);
- }
- range::const_iterator range::begin() const
- {
- return cbegin();
- }
- range::const_iterator range::end() const
- {
- return cend();
- }
- range::reverse_iterator range::rbegin()
- {
- return reverse_iterator(end());
- }
- range::reverse_iterator range::rend()
- {
- return reverse_iterator(begin());
- }
- range::const_reverse_iterator range::crbegin() const
- {
- return const_reverse_iterator(cend());
- }
- range::const_reverse_iterator range::rbegin() const
- {
- return crbegin();
- }
- range::const_reverse_iterator range::crend() const
- {
- return const_reverse_iterator(cbegin());
- }
- range::const_reverse_iterator range::rend() const
- {
- return crend();
- }
- } // namespace xlnt
|