1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #pragma once
- #include <cstddef>
- #include <xlnt/styles/conditional_format.hpp>
- #include <xlnt/utils/optional.hpp>
- #include <xlnt/worksheet/range_reference.hpp>
- namespace xlnt {
- class border;
- class fill;
- class font;
- namespace detail {
- struct stylesheet;
- struct worksheet_impl;
- struct conditional_format_impl
- {
- stylesheet *parent;
- worksheet_impl *target_sheet;
- bool operator==(const conditional_format_impl& rhs) const
- {
- // not comparing parent or target sheet
- return target_range == rhs.target_range
- && priority == rhs.priority
- && differential_format_id == rhs.differential_format_id
- && when == rhs.when
- && border_id == rhs.border_id
- && fill_id == rhs.fill_id
- && font_id == rhs.font_id;
- }
- range_reference target_range;
- std::size_t priority;
- std::size_t differential_format_id;
- condition when;
- optional<std::size_t> border_id;
- optional<std::size_t> fill_id;
- optional<std::size_t> font_id;
- };
- } // namespace detail
- } // namespace xlnt
|