mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
a8fa6637fe
workbook::operator== was comparing the value of the raw pointer held by two std::unique_ptr's. By definition, this is always false in a well behaved program (if it's true, things go bang...). This then led to adding equality operators to nearly every other struct/class in xlnt to support workbook::operator== workbook::load and the non-default ctors for loading data from a file are tested using the now functional equality operator NOTE: a large number of copy ctors need updates/fixing. Many should be defaulted
82 lines
2.0 KiB
C++
82 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <string>
|
|
|
|
#include <xlnt/utils/optional.hpp>
|
|
|
|
namespace xlnt {
|
|
|
|
class alignment;
|
|
class border;
|
|
class fill;
|
|
class font;
|
|
class number_format;
|
|
class protection;
|
|
|
|
namespace detail {
|
|
|
|
struct stylesheet;
|
|
|
|
struct style_impl
|
|
{
|
|
stylesheet *parent;
|
|
|
|
bool operator==(const style_impl& rhs) const
|
|
{
|
|
return name == rhs.name
|
|
&& formatting_record_id == rhs.formatting_record_id
|
|
&& custom_builtin == rhs.custom_builtin
|
|
&& hidden_style == rhs.hidden_style
|
|
&& builtin_id == rhs.builtin_id
|
|
&& outline_style == rhs.outline_style
|
|
&& alignment_id == rhs.alignment_id
|
|
&& alignment_applied == rhs.alignment_applied
|
|
&& border_id == rhs.border_id
|
|
&& border_applied == rhs.border_applied
|
|
&& fill_id == rhs.fill_id
|
|
&& fill_applied == rhs.fill_applied
|
|
&& font_id == rhs.font_id
|
|
&& font_applied == rhs.font_applied
|
|
&& number_format_id == rhs.number_format_id
|
|
&& number_format_applied == number_format_applied
|
|
&& protection_id == rhs.protection_id
|
|
&& protection_applied == rhs.protection_applied
|
|
&& pivot_button_ == rhs.pivot_button_
|
|
&& quote_prefix_ == rhs.quote_prefix_;
|
|
}
|
|
|
|
std::string name;
|
|
std::size_t formatting_record_id;
|
|
|
|
bool custom_builtin;
|
|
bool hidden_style;
|
|
|
|
optional<std::size_t> builtin_id;
|
|
optional<std::size_t> outline_style;
|
|
|
|
optional<std::size_t> alignment_id;
|
|
optional<bool> alignment_applied;
|
|
|
|
optional<std::size_t> border_id;
|
|
optional<bool> border_applied;
|
|
|
|
optional<std::size_t> fill_id;
|
|
optional<bool> fill_applied;
|
|
|
|
optional<std::size_t> font_id;
|
|
optional<bool> font_applied;
|
|
|
|
optional<std::size_t> number_format_id;
|
|
optional<bool> number_format_applied;
|
|
|
|
optional<std::size_t> protection_id;
|
|
optional<bool> protection_applied;
|
|
|
|
bool pivot_button_ = false;
|
|
bool quote_prefix_ = false;
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace xlnt
|