xlnt - community edition
range.hpp
1 // Copyright (c) 2014-2022 Thomas Fussell
2 // Copyright (c) 2024-2025 xlnt-community
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE
21 //
22 // @license: http://www.opensource.org/licenses/mit-license.php
23 // @author: see AUTHORS file
24 
25 #pragma once
26 
27 #include <functional>
28 #include <iterator>
29 #include <string>
30 
31 #include <xlnt/xlnt_config.hpp>
32 #include <xlnt/styles/alignment.hpp>
33 #include <xlnt/styles/border.hpp>
34 #include <xlnt/styles/conditional_format.hpp>
35 #include <xlnt/styles/fill.hpp>
36 #include <xlnt/styles/font.hpp>
37 #include <xlnt/styles/number_format.hpp>
38 #include <xlnt/styles/protection.hpp>
39 #include <xlnt/worksheet/cell_vector.hpp>
40 #include <xlnt/worksheet/major_order.hpp>
41 #include <xlnt/worksheet/range_iterator.hpp>
42 #include <xlnt/worksheet/range_reference.hpp>
43 #include <xlnt/worksheet/worksheet.hpp>
44 
45 namespace xlnt {
46 
47 class const_range_iterator;
48 class range_iterator;
49 
53 class XLNT_API range
54 {
55 public:
60 
65 
69  using reverse_iterator = std::reverse_iterator<iterator>;
70 
74  using const_reverse_iterator = std::reverse_iterator<const_iterator>;
75 
79  range(worksheet ws, const range_reference &reference,
80  major_order order = major_order::row, bool skip_null = false);
81 
85  ~range();
86 
90  range(const range &) = default;
91 
95  void clear_cells();
96 
101  cell_vector vector(std::size_t n);
102 
107  const cell_vector vector(std::size_t n) const;
108 
112  class cell cell(const cell_reference &ref);
113 
117  const class cell cell(const cell_reference &ref) const;
118 
122  const worksheet &target_worksheet() const;
123 
127  range_reference reference() const;
128 
132  std::size_t length() const;
133 
137  bool contains(const cell_reference &ref);
138 
142  range alignment(const xlnt::alignment &new_alignment);
143 
147  range border(const xlnt::border &new_border);
148 
152  range fill(const xlnt::fill &new_fill);
153 
157  range font(const xlnt::font &new_font);
158 
163  range number_format(const xlnt::number_format &new_number_format);
164 
168  range protection(const xlnt::protection &new_protection);
169 
173  range style(const class style &new_style);
174 
180  range style(const std::string &style_name);
181 
186 
190  cell_vector front();
191 
195  const cell_vector front() const;
196 
200  cell_vector back();
201 
205  const cell_vector back() const;
206 
210  iterator begin();
211 
215  iterator end();
216 
220  const_iterator begin() const;
221 
225  const_iterator end() const;
226 
230  const_iterator cbegin() const;
231 
235  const_iterator cend() const;
236 
240  reverse_iterator rbegin();
241 
245  reverse_iterator rend();
246 
250  const_reverse_iterator rbegin() const;
251 
255  const_reverse_iterator rend() const;
256 
260  const_reverse_iterator crbegin() const;
261 
265  const_reverse_iterator crend() const;
266 
270  void apply(std::function<void(class cell)> f);
271 
275  cell_vector operator[](std::size_t n);
276 
280  const cell_vector operator[](std::size_t n) const;
281 
285  bool operator==(const range &comparand) const;
286 
290  bool operator!=(const range &comparand) const;
291 
292 private:
296  class worksheet ws_;
297 
301  range_reference ref_;
302 
306  major_order order_;
307 
311  bool skip_null_;
312 };
313 
314 } // namespace xlnt
A range is a 2D collection of cells with defined extens that can be iterated upon.
Definition: range.hpp:53
A const version of range_iterator which does not allow modification to the dereferenced cell_vector...
Definition: range_iterator.hpp:163
Enumerates the possible types a cell can be determined by it&#39;s current value.
Definition: cell.hpp:36
bool operator!=(std::nullptr_t, const cell &cell)
Returns true if this cell is initialized.
Describes a conditional format that will be applied to all cells in the associated range that satisfy...
Definition: conditional_format.hpp:90
Describes the font style of a particular cell.
Definition: font.hpp:41
Definition: conditional_format.hpp:48
Describes the fill style of a particular cell.
Definition: fill.hpp:299
A worksheet is a 2D array of cells starting with cell A1 in the top-left corner and extending indefin...
Definition: worksheet.hpp:75
major_order
Defines whether iterating a range returns columns or rows sequentially.
Definition: major_order.hpp:34
Describes the border style of a particular cell.
Definition: border.hpp:91
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
An object used to refer to a cell. References have two parts, the column and the row. In Excel, the reference string A1 refers to the top-left-most cell. A cell_reference can be initialized from a string of this form or a 1-indexed ordered pair of the form column, row.
Definition: cell_reference.hpp:59
Describes a unit of data in a worksheet at a specific coordinate and its associated properties...
Definition: cell.hpp:83
std::reverse_iterator< const_iterator > const_reverse_iterator
Alias for the const reverse iterator type
Definition: range.hpp:74
Describes the number formatting applied to text and numbers within a certain cell.
Definition: number_format.hpp:40
An iterator used by worksheet and range for traversing a 2D grid of cells by row/column then across t...
Definition: range_iterator.hpp:43
Alignment options that determine how text should be displayed within a cell.
Definition: alignment.hpp:63
A cell vector is a linear (1D) range of cells, either vertical or horizontal depending on the major o...
Definition: cell_vector.hpp:47
A range_reference describes a rectangular area of a worksheet with positive width and height defined ...
Definition: range_reference.hpp:36
std::reverse_iterator< iterator > reverse_iterator
Alias for the reverse iterator type
Definition: range.hpp:69
Describes the protection style of a particular cell.
Definition: protection.hpp:36
Describes a style which has a name and can be applied to multiple individual formats. In Excel this is a "Cell Style".
Definition: style.hpp:55