xlnt - community edition
border.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 <vector>
29 
30 #include <xlnt/xlnt_config.hpp>
31 #include <xlnt/styles/color.hpp>
32 #include <xlnt/utils/optional.hpp>
33 
34 namespace xlnt {
35 
39 enum class border_side
40 {
41  start,
42  end,
43  top,
44  bottom,
45  diagonal,
46  vertical,
47  horizontal
48 };
49 
53 enum class border_style
54 {
55  none,
56  dashdot,
57  dashdotdot,
58  dashed,
59  dotted,
60  double_,
61  hair,
62  medium,
63  mediumdashdot,
64  mediumdashdotdot,
65  mediumdashed,
66  slantdashdot,
67  thick,
68  thin
69 };
70 
77 {
78  neither,
79  up,
80  down,
81  both
82 };
83 
84 } // namespace xlnt
85 
86 namespace xlnt {
87 
91 class XLNT_API border
92 {
93 public:
98  class XLNT_API border_property
99  {
100  public:
105 
109  border_property &color(const xlnt::color &c);
110 
115 
119  border_property &style(border_style style);
120 
124  bool operator==(const border_property &right) const;
125 
129  bool operator!=(const border_property &right) const;
130 
131  private:
135  optional<class color> color_;
136 
140  optional<border_style> style_;
141  };
142 
146  static const std::vector<border_side> &all_sides();
147 
151  border();
152 
157 
161  border &side(border_side s, const border_property &prop);
162 
166  optional<diagonal_direction> diagonal() const;
167 
171  border &diagonal(diagonal_direction dir);
172 
176  bool operator==(const border &right) const;
177 
181  bool operator!=(const border &right) const;
182 
183 private:
188 
193 
198 
203 
207  optional<border_property> vertical_;
208 
212  optional<border_property> horizontal_;
213 
217  optional<border_property> diagonal_;
218 
222  optional<diagonal_direction> diagonal_direction_;
223 };
224 
225 } // 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.
Colors can be applied to many parts of a cell&#39;s style.
Definition: color.hpp:165
border_side
Enumerates the sides of a cell to which a border style can be applied.
Definition: border.hpp:39
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.
Each side of a cell can have a border_property applied to it to change how it is displayed.
Definition: border.hpp:98
diagonal_direction
Cells can have borders that go from the top-left to bottom-right or from the top-right to bottom-left...
Definition: border.hpp:76
border_style
Enumerates the pattern of the border lines on a particular side.
Definition: border.hpp:53
Many settings in xlnt are allowed to not have a value set. This class encapsulates a value which may ...
Definition: format.hpp:43
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