xlnt - community edition
format.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 <string>
28 
29 #include <xlnt/xlnt_config.hpp>
30 
31 namespace xlnt {
32 
33 class alignment;
34 class border;
35 class cell;
36 class fill;
37 class font;
38 class number_format;
39 class protection;
40 class style;
41 
42 template <typename T>
43 class optional;
44 
45 namespace detail {
46 
47 struct format_impl;
48 struct stylesheet;
49 class xlsx_producer;
50 class xlsx_consumer;
51 
52 } // namespace detail
53 
57 class XLNT_API format
58 {
59 public:
63  class alignment alignment() const;
64 
70  format alignment(const xlnt::alignment &new_alignment, xlnt::optional<bool> applied = {});
71 
76  bool alignment_applied() const;
77 
81  class border border() const;
82 
88  format border(const xlnt::border &new_border, xlnt::optional<bool> applied = {});
89 
93  bool border_applied() const;
94 
98  class fill fill() const;
99 
105  format fill(const xlnt::fill &new_fill, xlnt::optional<bool> applied = {});
106 
110  bool fill_applied() const;
111 
115  class font font() const;
116 
122  format font(const xlnt::font &new_font, xlnt::optional<bool> applied = {});
123 
127  bool font_applied() const;
128 
132  class number_format number_format() const;
133 
139  format number_format(const xlnt::number_format &new_number_format, xlnt::optional<bool> applied = {});
140 
144  bool number_format_applied() const;
145 
149  class protection protection() const;
150 
154  bool protection_applied() const;
155 
161  format protection(const xlnt::protection &new_protection, xlnt::optional<bool> applied = {});
162 
166  bool pivot_button() const;
167 
172  void pivot_button(bool show);
173 
177  bool quote_prefix() const;
178 
184  void quote_prefix(bool quote);
185 
189  bool has_style() const;
190 
194  void clear_style();
195 
199  format style(const std::string &name);
200 
204  format style(const class style &new_style);
205 
210  class style style();
211 
216  const class style style() const;
217 
218 private:
219  friend struct detail::stylesheet;
220  friend class detail::xlsx_producer;
221  friend class detail::xlsx_consumer;
222  friend class cell;
223 
227  format(detail::format_impl *d);
228 
232  detail::format_impl *d_ = nullptr;
233 };
234 
235 } // namespace xlnt
Enumerates the possible types a cell can be determined by it&#39;s current value.
Definition: cell.hpp:36
Describes the font style of a particular cell.
Definition: font.hpp:41
Describes the fill style of a particular cell.
Definition: fill.hpp:299
Describes the border style of a particular cell.
Definition: border.hpp:91
Describes a unit of data in a worksheet at a specific coordinate and its associated properties...
Definition: cell.hpp:83
Describes the number formatting applied to text and numbers within a certain cell.
Definition: number_format.hpp:40
Many settings in xlnt are allowed to not have a value set. This class encapsulates a value which may ...
Definition: format.hpp:43
Describes the formatting of a particular cell.
Definition: format.hpp:57
Alignment options that determine how text should be displayed within a cell.
Definition: alignment.hpp:63
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