33 #include <unordered_map> 36 #include <xlnt/xlnt_config.hpp> 37 #include <xlnt/internal/features.hpp> 39 #if XLNT_HAS_INCLUDE(<string_view>) && XLNT_HAS_FEATURE(U8_STRING_VIEW) 40 #include <string_view> 52 class calculation_properties;
56 class const_worksheet_iterator;
62 class metadata_property;
69 class range_reference;
71 class streaming_workbook_reader;
73 class style_serializer;
78 class worksheet_iterator;
87 struct worksheet_impl;
158 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 173 workbook(std::istream &data,
const std::string &password);
175 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 176 workbook(std::istream &data, std::u8string_view password);
216 worksheet create_sheet(std::size_t index);
245 void active_sheet(std::size_t index);
252 worksheet sheet_by_title(
const std::string &title);
259 const worksheet sheet_by_title(
const std::string &title)
const;
265 worksheet sheet_by_index(std::size_t index);
271 const worksheet sheet_by_index(std::size_t index)
const;
283 const worksheet sheet_by_id(std::size_t
id)
const;
290 bool sheet_hidden_by_index(std::size_t index)
const;
295 bool contains(
const std::string &title)
const;
356 void apply_to_cells(std::function<
void(
cell)> f);
362 std::vector<std::string> sheet_titles()
const;
367 std::size_t sheet_count()
const;
380 std::vector<xlnt::core_property> core_properties()
const;
401 std::vector<xlnt::extended_property> extended_properties()
const;
416 bool has_custom_property(
const std::string &property_name)
const;
422 std::vector<std::string> custom_properties()
const;
427 variant custom_property(
const std::string &property_name)
const;
432 void custom_property(
const std::string &property_name,
const variant &value);
450 bool has_title()
const;
455 std::string title()
const;
460 void title(
const std::string &title);
465 void abs_path(
const std::string &
path);
470 void arch_id_flags(
const std::size_t flags);
477 std::vector<xlnt::named_range> named_ranges()
const;
487 void create_named_range(
const std::string &name,
worksheet worksheet,
const std::string &reference_string);
492 bool has_named_range(
const std::string &name)
const;
502 void remove_named_range(const std::string &name);
510 void save(std::vector<std::uint8_t> &data) const;
516 void save(std::vector<std::uint8_t> &data, const std::string &password) const;
518 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 519 void save(std::vector<std::uint8_t> &data, std::u8string_view password) const;
530 void save(const std::string &filename) const;
536 void save(const std::string &filename, const std::string &password) const;
538 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 539 void save(std::u8string_view filename) const;
549 void save(std::u8string_view filename, std::u8string_view password) const;
553 void save(const std::wstring &filename) const;
563 void save(const std::wstring &filename, const std::string &password) const;
570 void save(const xlnt::path &filename) const;
576 void save(const xlnt::path &filename, const std::string &password) const;
578 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 579 void save(const xlnt::path &filename, std::u8string_view password) const;
589 void save(std::ostream &stream) const;
595 void save(std::ostream &stream, const std::string &password) const;
597 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 598 void save(std::ostream &stream, std::u8string_view password) const;
609 void load(const std::vector<std::uint8_t> &data);
615 void load(const std::vector<std::uint8_t> &data, const std::string &password);
617 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 618 void load(const std::vector<std::uint8_t> &data, std::u8string_view password);
629 void load(const std::string &filename);
635 void load(const std::string &filename, const std::string &password);
637 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 638 void load(std::u8string_view filename);
648 void load(std::u8string_view filename, std::u8string_view password);
653 void load(const std::wstring &filename);
663 void load(const std::wstring &filename, const std::string &password);
670 void load(const xlnt::path &filename);
676 void load(const xlnt::path &filename, const std::string &password);
678 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 679 void load(const xlnt::path &filename, std::u8string_view password);
690 void load(std::istream &stream);
696 void load(std::istream &stream, const std::string &password);
698 #if XLNT_HAS_FEATURE(U8_STRING_VIEW) 699 void load(std::istream &stream, std::u8string_view password);
711 bool has_view() const;
721 void view(const workbook_view &view);
728 bool has_code_name() const;
733 std::string code_name() const;
738 void code_name(const std::string &code_name);
743 bool has_file_version() const;
748 std::string app_name() const;
753 std::size_t last_edited() const;
758 std::size_t lowest_edited() const;
763 std::size_t rup_build() const;
770 bool has_theme() const;
780 void
theme(const class theme &value);
799 xlnt::format create_format(bool default_format = false);
805 void clear_formats();
812 bool has_style(const std::string &name) const;
822 const class
style style(const std::string &name) const;
827 class
style create_style(const std::string &name);
832 class
style create_builtin_style(std::size_t builtin_id);
844 void default_slicer_style(const std::string &value);
849 std::string default_slicer_style() const;
854 void enable_known_fonts();
859 void disable_known_fonts();
864 bool known_fonts_enabled() const;
886 std::size_t add_shared_string(const rich_text &shared, bool allow_duplicates = false);
891 const
rich_text &shared_strings(std::size_t index) const;
897 std::vector<rich_text> &shared_strings();
903 const std::vector<rich_text> &shared_strings() const;
911 void thumbnail(const std::vector<std::uint8_t> &thumbnail,
912 const std::string &extension, const std::string &content_type);
917 const std::vector<std::uint8_t> &thumbnail() const;
922 const std::unordered_map<std::string, std::vector<std::uint8_t>>& binaries() const;
929 bool has_calculation_properties() const;
946 bool compare(const workbook &other, bool compare_by_reference) const;
954 workbook &operator=(const workbook &other) = default;
960 workbook &operator=(workbook &&other) = default;
965 worksheet operator[](const std::string &name);
976 bool operator==(const workbook &rhs) const;
982 bool operator!=(const workbook &rhs) const;
987 friend class detail::xlsx_consumer;
988 friend class detail::xlsx_producer;
989 friend struct detail::worksheet_impl;
995 workbook(std::shared_ptr<detail::workbook_impl> impl);
1001 workbook(std::weak_ptr<detail::workbook_impl> impl);
1006 void set_impl(std::shared_ptr<detail::workbook_impl> impl);
1011 template <typename T>
1012 void construct(const xlnt::path &file, const T &password);
1017 template <typename T>
1018 void construct(std::istream &data, const T &password);
1024 template <typename T>
1025 void save_internal(std::vector<std::uint8_t> &data, const T &password) const;
1031 template <typename T>
1032 void save_internal(const T &filename) const;
1038 template <typename T>
1039 void save_internal(const T &filename, const T &password) const;
1045 template <typename T>
1046 void save_internal(const xlnt::path &filename, const T &password) const;
1052 template <typename T>
1053 void save_internal(std::ostream &stream, const T &password) const;
1059 template <typename T>
1060 void load_internal(const std::vector<std::uint8_t> &data, const T &password);
1066 template <typename T>
1067 void load_internal(const T &filename);
1073 template <typename T>
1074 void load_internal(const T &filename, const T &password);
1080 template <typename T>
1081 void load_internal(const xlnt::path &filename, const T &password);
1087 template <typename T>
1088 void load_internal(std::istream &stream, const T &password);
1094 detail::workbook_impl &impl();
1100 const detail::workbook_impl &impl() const;
1107 void register_package_part(relationship_type type);
1115 void register_workbook_part(relationship_type type);
1123 void register_worksheet_part(worksheet ws, relationship_type type);
1128 void garbage_collect_formulae();
1133 void update_sheet_properties();
1138 void swap(workbook &other);
1143 void reorder_relationships();
1148 std::shared_ptr<detail::workbook_impl> d_;
core_property
Every core property in a workbook must be one of these types.
Definition: metadata_property.hpp:34
A range is a 2D collection of cells with defined extens that can be iterated upon.
Definition: range.hpp:53
Represents an association between a source Package or part, and a target object which can be a part o...
Definition: relationship.hpp:103
Represents an object that can have variable type.
Definition: variant.hpp:40
Definition: cell_reference.hpp:261
A workbook can be opened in multiple windows with different views. This class represents a particular...
Definition: workbook_view.hpp:37
Enumerates the possible types a cell can be determined by it's current value.
Definition: cell.hpp:36
extended_property
Every extended property in a workbook must be one of these types.
Definition: metadata_property.hpp:56
std::reverse_iterator< iterator > reverse_iterator
typedef for the iterator used for iterating through this workbook (non-const) in a range-based for lo...
Definition: workbook.hpp:125
A worksheet is a 2D array of cells starting with cell A1 in the top-left corner and extending indefin...
Definition: worksheet.hpp:75
A theme is a combination of fonts, colors, and effects. This isn't really supported yet...
Definition: theme.hpp:35
Describes a unit of data in a worksheet at a specific coordinate and its associated properties...
Definition: cell.hpp:83
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
An iterator which is used to iterate over the worksheets in a workbook.
Definition: worksheet_iterator.hpp:44
Encapsulates a path that points to location in a filesystem.
Definition: path.hpp:43
relationship_type
All package relationships must be one of these defined types.
Definition: relationship.hpp:54
Workbook file properties relating to calculations.
Definition: calculation_properties.hpp:36
An iterator which is used to iterate over the worksheets in a const workbook.
Definition: worksheet_iterator.hpp:154
A 2D range of cells in a worksheet that is referred to by name. ws->range("A1:B2") could be replaced ...
Definition: named_range.hpp:42
workbook is the container for all other parts of the document.
Definition: streaming_workbook_reader.hpp:55
The manifest keeps track of all files in the OOXML package and their type and relationships.
Definition: manifest.hpp:41
A range_reference describes a rectangular area of a worksheet with positive width and height defined ...
Definition: range_reference.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
std::reverse_iterator< const_iterator > const_reverse_iterator
typedef for the iterator used for iterating through this workbook (const) in a range-based for loop i...
Definition: workbook.hpp:132
workbook is the container for all other parts of the document.
Definition: workbook.hpp:96
calendar
An enumeration of possible base dates. Dates in Excel are stored as days since this base date...
Definition: calendar.hpp:35
clone_method
The method for cloning workbooks.
Definition: workbook.hpp:102