1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_ORCUS_SPREADSHEET_STYLES_HPP
#define INCLUDED_ORCUS_SPREADSHEET_STYLES_HPP
#include "../env.hpp"
#include "../measurement.hpp"
#include "document_types.hpp"
#include <memory>
#include <string_view>
#include <optional>
namespace orcus { namespace spreadsheet {
class document;
/**
* Font style record.
*/
struct ORCUS_SPM_DLLPUBLIC font_t
{
std::optional<std::string_view> name;
std::optional<std::string_view> name_asian;
std::optional<std::string_view> name_complex;
std::optional<double> size;
std::optional<double> size_asian;
std::optional<double> size_complex;
std::optional<bool> bold;
std::optional<bool> bold_asian;
std::optional<bool> bold_complex;
std::optional<bool> italic;
std::optional<bool> italic_asian;
std::optional<bool> italic_complex;
std::optional<color_t> color;
underline_t underline;
strikethrough_t strikethrough;
font_t();
font_t(const font_t& other);
~font_t();
font_t& operator=(const font_t& other);
bool operator==(const font_t& other) const;
bool operator!=(const font_t& other) const;
void reset();
struct ORCUS_SPM_DLLPUBLIC hash
{
std::size_t operator()(const font_t& v) const;
};
};
/**
* Fill style record.
*/
struct ORCUS_SPM_DLLPUBLIC fill_t
{
std::optional<fill_pattern_t> pattern_type;
std::optional<color_t> fg_color;
std::optional<color_t> bg_color;
fill_t();
void reset();
};
/**
* Attributes for a single border.
*/
struct ORCUS_SPM_DLLPUBLIC border_attrs_t
{
std::optional<border_style_t> style;
std::optional<color_t> border_color;
std::optional<length_t> border_width;
border_attrs_t();
void reset();
};
/**
* Style record for the borders of a single cell.
*/
struct ORCUS_SPM_DLLPUBLIC border_t
{
border_attrs_t top;
border_attrs_t bottom;
border_attrs_t left;
border_attrs_t right;
border_attrs_t diagonal;
border_attrs_t diagonal_bl_tr;
border_attrs_t diagonal_tl_br;
border_t();
void reset();
};
/**
* Style record for cell protection attributes.
*/
struct ORCUS_SPM_DLLPUBLIC protection_t
{
std::optional<bool> locked;
std::optional<bool> hidden;
std::optional<bool> print_content;
std::optional<bool> formula_hidden;
protection_t();
void reset();
};
/**
* Style record for a number format.
*/
struct ORCUS_SPM_DLLPUBLIC number_format_t
{
std::optional<std::size_t> identifier;
std::optional<std::string_view> format_string;
number_format_t();
void reset();
bool operator== (const number_format_t& other) const noexcept;
bool operator!= (const number_format_t& other) const noexcept;
};
/**
* Format attributes for a single cell. It references the format entries via
* integer indices, with some exceptions.
*/
struct ORCUS_SPM_DLLPUBLIC cell_format_t
{
/** ID of a font style record. */
std::size_t font;
/** ID of a fill style record. */
std::size_t fill;
/** ID of a border style record. */
std::size_t border;
/** ID for a cell protection record. */
std::size_t protection;
/** ID for a number format record. */
std::size_t number_format;
/** ID for a parent named style. */
std::size_t style_xf;
/** Horizontal alignment of a cell. */
hor_alignment_t hor_align;
/** Vertical alignment of a cell. */
ver_alignment_t ver_align;
/** Flag on whether or not wrap text is enabled. */
std::optional<bool> wrap_text;
/** Flag on whether or not shrink to fit is enabled. */
std::optional<bool> shrink_to_fit;
bool apply_num_format:1;
bool apply_font:1;
bool apply_fill:1;
bool apply_border:1;
bool apply_alignment:1;
bool apply_protection:1;
cell_format_t();
void reset();
};
/**
* Attributes of a named cell style.
*
* Refer to @ref orcus::spreadsheet::iface::import_cell_style for how the data
* members of this struct are used in practice.
*/
struct ORCUS_SPM_DLLPUBLIC cell_style_t
{
std::string_view name;
std::string_view display_name;
std::size_t xf;
std::size_t builtin;
std::string_view parent_name;
cell_style_t();
void reset();
};
ORCUS_SPM_DLLPUBLIC std::ostream& operator<< (std::ostream& os, const color_t& c);
/**
* Stores various styles records such that they can be referenced via integer
* indices.
*/
class ORCUS_SPM_DLLPUBLIC styles
{
friend class document;
struct impl;
std::unique_ptr<impl> mp_impl;
public:
styles();
~styles();
void reserve_font_store(size_t n);
std::size_t append_font(const font_t& font);
void reserve_fill_store(size_t n);
std::size_t append_fill(const fill_t& fill);
void reserve_border_store(size_t n);
std::size_t append_border(const border_t& border);
std::size_t append_protection(const protection_t& protection);
void reserve_number_format_store(size_t n);
std::size_t append_number_format(const number_format_t& nf);
void reserve_cell_style_format_store(size_t n);
size_t append_cell_style_format(const cell_format_t& cf);
void reserve_cell_format_store(size_t n);
size_t append_cell_format(const cell_format_t& cf);
void reserve_diff_cell_format_store(size_t n);
size_t append_diff_cell_format(const cell_format_t& cf);
void reserve_cell_style_store(size_t n);
void append_cell_style(const cell_style_t& cs);
const font_t* get_font(size_t index) const;
const fill_t* get_fill(size_t index) const;
const border_t* get_border(size_t index) const;
const protection_t* get_protection(size_t index) const;
const number_format_t* get_number_format(size_t index) const;
const cell_format_t* get_cell_format(size_t index) const;
const cell_format_t* get_cell_style_format(size_t index) const;
const cell_format_t* get_dxf_format(size_t index) const;
const cell_style_t* get_cell_style(size_t index) const;
const cell_style_t* get_cell_style_by_xf(size_t xfid) const;
size_t get_font_count() const;
size_t get_fill_count() const;
size_t get_border_count() const;
size_t get_protection_count() const;
size_t get_number_format_count() const;
size_t get_cell_formats_count() const;
size_t get_cell_style_formats_count() const;
size_t get_dxf_count() const;
size_t get_cell_styles_count() const;
void clear();
private:
void finalize_import();
};
}}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|