xlnt - community edition
header_footer.hpp
1 // Copyright (c) 2014-2022 Thomas Fussell
2 // Copyright (c) 2010-2015 openpyxl
3 // Copyright (c) 2024-2025 xlnt-community
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 // THE SOFTWARE
22 //
23 // @license: http://www.opensource.org/licenses/mit-license.php
24 // @author: see AUTHORS file
25 
26 #pragma once
27 
28 #include <string>
29 #include <unordered_map>
30 
31 #include <xlnt/xlnt_config.hpp>
32 #include <xlnt/cell/rich_text.hpp>
33 #include <xlnt/utils/scoped_enum_hash.hpp>
34 
35 namespace xlnt {
36 
40 class XLNT_API header_footer
41 {
42 public:
46  enum class location
47  {
48  left,
49  center,
50  right
51  };
52 
53  // General Properties
54 
58  bool has_header() const;
59 
63  bool has_footer() const;
64 
68  bool align_with_margins() const;
69 
74  header_footer &align_with_margins(bool align);
75 
79  bool different_odd_even() const;
80 
84  bool different_first() const;
85 
89  bool scale_with_doc() const;
90 
94  header_footer &scale_with_doc(bool scale);
95 
96  // Normal Header
97 
101  bool has_header(location where) const;
102 
106  void clear_header();
107 
111  void clear_header(location where);
112 
116  header_footer &header(location where, const std::string &text);
117 
121  header_footer &header(location where, const rich_text &text);
122 
127  rich_text header(location where) const;
128 
129  // First Page Header
130 
134  bool has_first_page_header() const;
135 
139  bool has_first_page_header(location where) const;
140 
144  void clear_first_page_header();
145 
149  void clear_first_page_header(location where);
150 
154  header_footer &first_page_header(location where, const rich_text &text);
155 
161  rich_text first_page_header(location where) const;
162 
163  // Odd/Even Header
164 
168  bool has_odd_even_header() const;
169 
173  bool has_odd_even_header(location where) const;
174 
178  void clear_odd_even_header();
179 
183  void clear_odd_even_header(location where);
184 
188  header_footer &odd_even_header(location where, const rich_text &odd, const rich_text &even);
189 
195  rich_text odd_header(location where) const;
196 
202  rich_text even_header(location where) const;
203 
204  // Normal Footer
205 
209  bool has_footer(location where) const;
210 
214  void clear_footer();
215 
219  void clear_footer(location where);
220 
224  header_footer &footer(location where, const std::string &text);
225 
229  header_footer &footer(location where, const rich_text &text);
230 
235  rich_text footer(location where) const;
236 
237  // First Page footer
238 
242  bool has_first_page_footer() const;
243 
247  bool has_first_page_footer(location where) const;
248 
252  void clear_first_page_footer();
253 
257  void clear_first_page_footer(location where);
258 
262  header_footer &first_page_footer(location where, const rich_text &text);
263 
269  rich_text first_page_footer(location where) const;
270 
271  // Odd/Even Footer
272 
276  bool has_odd_even_footer() const;
277 
281  bool has_odd_even_footer(location where) const;
282 
286  void clear_odd_even_footer();
287 
291  void clear_odd_even_footer(location where);
292 
296  header_footer &odd_even_footer(location where, const rich_text &odd, const rich_text &even);
297 
303  rich_text odd_footer(location where) const;
304 
310  rich_text even_footer(location where) const;
311 
312  bool operator==(const header_footer &rhs) const;
313 
314  bool operator!=(const header_footer &rhs) const;
315 
316 private:
317  bool align_with_margins_ = false;
318  bool different_odd_even_ = false;
319  bool scale_with_doc_ = false;
320 
321  using container = std::unordered_map<location, rich_text, scoped_enum_hash<location>>;
322 
323  container odd_headers_;
324  container even_headers_;
325  container first_headers_;
326  container odd_footers_;
327  container even_footers_;
328  container first_footers_;
329 };
330 
331 } // namespace xlnt
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.
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
Encapsulates zero or more formatted text runs where a text run is a string of text with the same defi...
Definition: rich_text.hpp:41