2017-01-03 09:35:18 +08:00
|
|
|
// Copyright (c) 2014-2017 Thomas Fussell
|
2015-12-25 04:51:11 +08:00
|
|
|
//
|
|
|
|
// 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, WRISING 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
|
2015-11-20 11:54:54 +08:00
|
|
|
#include <xlnt/cell/cell.hpp>
|
2016-01-25 00:15:49 +08:00
|
|
|
#include <xlnt/worksheet/cell_iterator.hpp>
|
|
|
|
#include <xlnt/worksheet/cell_vector.hpp>
|
|
|
|
#include <xlnt/worksheet/const_cell_iterator.hpp>
|
2015-11-20 11:54:54 +08:00
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
|
|
|
|
cell_vector::iterator cell_vector::begin()
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return iterator(ws_, ref_.top_left(), ref_, order_);
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::iterator cell_vector::end()
|
|
|
|
{
|
|
|
|
if (order_ == major_order::row)
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
auto past_end = ref_.bottom_right();
|
|
|
|
past_end.column_index(past_end.column_index() + 1);
|
2016-12-24 23:04:57 +08:00
|
|
|
|
2016-11-10 08:52:18 +08:00
|
|
|
return iterator(ws_, past_end, ref_, order_);
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
auto past_end = ref_.bottom_right();
|
|
|
|
past_end.row(past_end.row() + 1);
|
2016-12-24 23:04:57 +08:00
|
|
|
|
2016-11-10 08:52:18 +08:00
|
|
|
return iterator(ws_, past_end, ref_, order_);
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::const_iterator cell_vector::cbegin() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return const_iterator(ws_, ref_.top_left(), order_);
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::const_iterator cell_vector::cend() const
|
|
|
|
{
|
|
|
|
if (order_ == major_order::row)
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
auto past_end = ref_.bottom_right();
|
|
|
|
past_end.column_index(past_end.column_index() + 1);
|
2016-12-24 23:04:57 +08:00
|
|
|
|
2015-11-20 11:54:54 +08:00
|
|
|
return const_iterator(ws_, past_end, order_);
|
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
auto past_end = ref_.bottom_right();
|
|
|
|
past_end.row(past_end.row() + 1);
|
2016-12-24 23:04:57 +08:00
|
|
|
|
2015-11-20 11:54:54 +08:00
|
|
|
return const_iterator(ws_, past_end, order_);
|
|
|
|
}
|
|
|
|
|
|
|
|
cell cell_vector::operator[](std::size_t cell_index)
|
|
|
|
{
|
2016-12-04 04:31:48 +08:00
|
|
|
if (order_ == major_order::row)
|
|
|
|
{
|
|
|
|
return ws_.cell(ref_.top_left().make_offset(static_cast<int>(cell_index), 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ws_.cell(ref_.top_left().make_offset(0, static_cast<int>(cell_index)));
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::cell_vector(worksheet ws, const range_reference &reference, major_order order)
|
|
|
|
: ws_(ws), ref_(reference), order_(order)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cell cell_vector::front()
|
|
|
|
{
|
|
|
|
if (order_ == major_order::row)
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return ws_.cell(ref_.top_left());
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
return ws_.cell(ref_.top_left());
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cell cell_vector::back()
|
|
|
|
{
|
|
|
|
if (order_ == major_order::row)
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return ws_.cell(ref_.bottom_right());
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
return ws_.cell(ref_.bottom_right());
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t cell_vector::length() const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return order_ == major_order::row ? ref_.width() + 1 : ref_.height() + 1;
|
2015-11-20 11:54:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::const_iterator cell_vector::begin() const
|
|
|
|
{
|
|
|
|
return cbegin();
|
|
|
|
}
|
|
|
|
cell_vector::const_iterator cell_vector::end() const
|
|
|
|
{
|
|
|
|
return cend();
|
|
|
|
}
|
|
|
|
|
2016-06-14 11:36:26 +08:00
|
|
|
cell_vector::reverse_iterator cell_vector::rbegin()
|
|
|
|
{
|
|
|
|
return reverse_iterator(end());
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::reverse_iterator cell_vector::rend()
|
|
|
|
{
|
|
|
|
return reverse_iterator(begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::const_reverse_iterator cell_vector::crbegin() const
|
|
|
|
{
|
|
|
|
return const_reverse_iterator(cend());
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::const_reverse_iterator cell_vector::rbegin() const
|
|
|
|
{
|
|
|
|
return crbegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::const_reverse_iterator cell_vector::crend() const
|
|
|
|
{
|
|
|
|
return const_reverse_iterator(cbegin());
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_vector::const_reverse_iterator cell_vector::rend() const
|
|
|
|
{
|
|
|
|
return crend();
|
|
|
|
}
|
|
|
|
|
2015-11-20 11:54:54 +08:00
|
|
|
} // namespace xlnt
|