mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
unimplemented functions in range and path
This commit is contained in:
parent
bf4c6032be
commit
c593a16cfb
|
@ -141,6 +141,22 @@ path::path(const std::string &path_string)
|
|||
{
|
||||
}
|
||||
|
||||
path::path(const std::string &path_string, char sep)
|
||||
: internal_(path_string)
|
||||
{
|
||||
char curr_sep = guess_separator();
|
||||
if (curr_sep != sep)
|
||||
{
|
||||
for (char& c : internal_) // simple find and replace
|
||||
{
|
||||
if (c == curr_sep)
|
||||
{
|
||||
c = sep;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// general attributes
|
||||
|
||||
bool path::is_relative() const
|
||||
|
|
|
@ -71,6 +71,11 @@ 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::worksheet() const
|
||||
{
|
||||
return ws_;
|
||||
|
@ -114,6 +119,22 @@ cell_vector range::vector(std::size_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 &ref)
|
||||
{
|
||||
return ref_.top_left().column_index() <= ref.column_index()
|
||||
|
@ -190,6 +211,11 @@ 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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user