123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- // Copyright (c) 2014-2021 Thomas Fussell
- // Copyright (c) 2010-2015 openpyxl
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE
- //
- // @license: http://www.opensource.org/licenses/mit-license.php
- // @author: see AUTHORS file
- // detail imports must come first in this file.
- #include <detail/implementations/format_impl.hpp>
- #include <detail/implementations/stylesheet.hpp>
- #include <xlnt/styles/format.hpp>
- #include <xlnt/styles/style.hpp>
- namespace xlnt {
- format::format(detail::format_impl *d)
- : d_(d)
- {
- }
- void format::clear_style()
- {
- d_->style.clear();
- }
- format format::style(const xlnt::style &new_style)
- {
- d_ = d_->parent->find_or_create_with(d_, new_style.name());
- return format(d_);
- }
- format format::style(const std::string &new_style)
- {
- d_->style = new_style;
- return format(d_);
- }
- bool format::has_style() const
- {
- return d_->style.is_set();
- }
- style format::style()
- {
- if (!has_style())
- {
- throw invalid_attribute();
- }
- return d_->parent->style(d_->style.get());
- }
- const style format::style() const
- {
- if (!has_style())
- {
- throw invalid_attribute();
- }
- return d_->parent->style(d_->style.get());
- }
- xlnt::alignment format::alignment() const
- {
- return d_->parent->alignments.at(d_->alignment_id.get());
- }
- format format::alignment(const xlnt::alignment &new_alignment, optional<bool> applied)
- {
- d_ = d_->parent->find_or_create_with(d_, new_alignment, applied);
- return format(d_);
- }
- xlnt::border format::border() const
- {
- return d_->parent->borders.at(d_->border_id.get());
- }
- format format::border(const xlnt::border &new_border, optional<bool> applied)
- {
- d_ = d_->parent->find_or_create_with(d_, new_border, applied);
- return format(d_);
- }
- xlnt::fill format::fill() const
- {
- return d_->parent->fills.at(d_->fill_id.get());
- }
- format format::fill(const xlnt::fill &new_fill, optional<bool> applied)
- {
- d_ = d_->parent->find_or_create_with(d_, new_fill, applied);
- return format(d_);
- }
- xlnt::font format::font() const
- {
- return d_->parent->fonts.at(d_->font_id.get());
- }
- format format::font(const xlnt::font &new_font, optional<bool> applied)
- {
- d_ = d_->parent->find_or_create_with(d_, new_font, applied);
- return format(d_);
- }
- xlnt::number_format format::number_format() const
- {
- if (d_->number_format_id.is_set())
- {
- const auto number_format_id = d_->number_format_id.get();
- if (number_format::is_builtin_format(number_format_id))
- {
- return number_format::from_builtin_id(number_format_id);
- }
- const auto it = std::find_if(d_->parent->number_formats.begin(),
- d_->parent->number_formats.end(),
- [number_format_id](const xlnt::number_format &nf)
- {
- return nf.id() == number_format_id;
- });
- if (it != d_->parent->number_formats.end())
- {
- return *it;
- }
- }
- return xlnt::number_format();
- }
- format format::number_format(const xlnt::number_format &new_number_format, optional<bool> applied)
- {
- auto copy = new_number_format;
- if (!copy.has_id())
- {
- copy.id(d_->parent->next_custom_number_format_id());
- d_->parent->number_formats.push_back(copy);
- }
- d_ = d_->parent->find_or_create_with(d_, copy, applied);
- return format(d_);
- }
- xlnt::protection format::protection() const
- {
- return d_->parent->protections.at(d_->protection_id.get());
- }
- format format::protection(const xlnt::protection &new_protection, optional<bool> applied)
- {
- d_ = d_->parent->find_or_create_with(d_, new_protection, applied);
- return format(d_);
- }
- bool format::alignment_applied() const
- {
- return d_->alignment_applied.is_set()
- ? d_->alignment_applied.get()
- : d_->alignment_id.is_set();
- }
- bool format::border_applied() const
- {
- return d_->border_applied.is_set()
- ? d_->border_applied.get()
- : d_->border_id.is_set();
- }
- bool format::fill_applied() const
- {
- return d_->fill_applied.is_set()
- ? d_->fill_applied.get()
- : d_->fill_id.is_set();
- }
- bool format::font_applied() const
- {
- return d_->font_applied.is_set()
- ? d_->font_applied.get()
- : d_->font_id.is_set();
- }
- bool format::number_format_applied() const
- {
- return d_->number_format_applied.is_set()
- ? d_->number_format_applied.get()
- : d_->number_format_id.is_set();
- }
- bool format::protection_applied() const
- {
- return d_->protection_applied.is_set()
- ? d_->protection_applied.get()
- : d_->protection_id.is_set();
- }
- bool format::pivot_button() const
- {
- return d_->pivot_button_;
- }
- void format::pivot_button(bool show)
- {
- d_->pivot_button_ = show;
- }
- bool format::quote_prefix() const
- {
- return d_->quote_prefix_;
- }
- void format::quote_prefix(bool quote)
- {
- d_->quote_prefix_ = quote;
- }
- } // namespace xlnt
|