2016-05-01 23:08:56 +08:00
|
|
|
// Copyright (c) 2014-2016 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, WRISING 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
|
2016-05-15 01:57:07 +08:00
|
|
|
|
2016-08-16 12:23:49 +08:00
|
|
|
#include <xlnt/styles/alignment.hpp>
|
|
|
|
#include <xlnt/styles/border.hpp>
|
|
|
|
#include <xlnt/styles/fill.hpp>
|
|
|
|
#include <xlnt/styles/font.hpp>
|
|
|
|
#include <xlnt/styles/number_format.hpp>
|
|
|
|
#include <xlnt/styles/protection.hpp>
|
2016-05-15 01:57:07 +08:00
|
|
|
#include <xlnt/styles/style.hpp>
|
2016-12-24 23:04:57 +08:00
|
|
|
#include <detail/stylesheet.hpp>
|
2016-05-01 23:08:56 +08:00
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
|
2016-12-24 23:04:57 +08:00
|
|
|
style::style(detail::style_impl *d)
|
|
|
|
: d_(d)
|
2016-08-18 19:34:18 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-08-16 12:23:49 +08:00
|
|
|
bool style::hidden() const
|
2016-05-01 23:08:56 +08:00
|
|
|
{
|
2016-08-16 12:23:49 +08:00
|
|
|
return d_->hidden_style;
|
2016-05-01 23:08:56 +08:00
|
|
|
}
|
|
|
|
|
2016-11-08 10:11:30 +08:00
|
|
|
style style::hidden(bool value)
|
2016-05-01 23:08:56 +08:00
|
|
|
{
|
2016-08-16 12:23:49 +08:00
|
|
|
d_->hidden_style = value;
|
2016-12-24 23:04:57 +08:00
|
|
|
return style(d_);
|
2016-05-01 23:08:56 +08:00
|
|
|
}
|
|
|
|
|
2016-08-18 19:34:18 +08:00
|
|
|
optional<std::size_t> style::builtin_id() const
|
2016-05-04 03:37:34 +08:00
|
|
|
{
|
2016-08-18 19:34:18 +08:00
|
|
|
return d_->builtin_id;
|
2016-05-04 03:37:34 +08:00
|
|
|
}
|
|
|
|
|
2016-11-08 10:11:30 +08:00
|
|
|
style style::builtin_id(std::size_t builtin_id)
|
2016-05-01 23:08:56 +08:00
|
|
|
{
|
2016-08-18 19:34:18 +08:00
|
|
|
d_->builtin_id = builtin_id;
|
2016-12-24 23:04:57 +08:00
|
|
|
return *this;
|
2016-05-01 23:08:56 +08:00
|
|
|
}
|
|
|
|
|
2016-08-16 12:23:49 +08:00
|
|
|
std::string style::name() const
|
2016-05-01 23:08:56 +08:00
|
|
|
{
|
2016-08-16 12:23:49 +08:00
|
|
|
return d_->name;
|
2016-05-01 23:08:56 +08:00
|
|
|
}
|
|
|
|
|
2016-11-08 10:11:30 +08:00
|
|
|
style style::name(const std::string &name)
|
2016-05-01 23:08:56 +08:00
|
|
|
{
|
2016-08-16 12:23:49 +08:00
|
|
|
d_->name = name;
|
2016-12-24 23:04:57 +08:00
|
|
|
return *this;
|
2016-08-18 19:34:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
optional<bool> style::custom() const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->custom_builtin;
|
2016-08-18 19:34:18 +08:00
|
|
|
}
|
|
|
|
|
2016-11-08 10:11:30 +08:00
|
|
|
style style::custom(bool value)
|
2016-08-18 19:34:18 +08:00
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
d_->custom_builtin = value;
|
|
|
|
return *this;
|
2016-08-18 19:34:18 +08:00
|
|
|
}
|
|
|
|
|
2016-11-08 10:11:30 +08:00
|
|
|
bool style::operator==(const style &other) const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return name() == other.name();
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
xlnt::alignment &style::alignment()
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->alignments.at(d_->alignment_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const xlnt::alignment &style::alignment() const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->alignments.at(d_->alignment_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
style style::alignment(const xlnt::alignment &new_alignment, bool applied)
|
|
|
|
{
|
|
|
|
d_->alignment_id = d_->parent->find_or_add(d_->parent->alignments, new_alignment);
|
|
|
|
d_->alignment_applied = applied;
|
|
|
|
return style(d_);
|
|
|
|
}
|
|
|
|
|
|
|
|
xlnt::border &style::border()
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->borders.at(d_->border_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const xlnt::border &style::border() const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->borders.at(d_->border_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
style style::border(const xlnt::border &new_border, bool applied)
|
|
|
|
{
|
|
|
|
d_->border_id = d_->parent->find_or_add(d_->parent->borders, new_border);
|
|
|
|
d_->border_applied = applied;
|
|
|
|
return style(d_);
|
|
|
|
}
|
|
|
|
|
|
|
|
xlnt::fill &style::fill()
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->fills.at(d_->fill_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const xlnt::fill &style::fill() const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->fills.at(d_->fill_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
style style::fill(const xlnt::fill &new_fill, bool applied)
|
|
|
|
{
|
|
|
|
d_->fill_id = d_->parent->find_or_add(d_->parent->fills, new_fill);
|
|
|
|
d_->fill_applied = applied;
|
|
|
|
return style(d_);
|
|
|
|
}
|
|
|
|
|
|
|
|
xlnt::font &style::font()
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->fonts.at(d_->font_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const xlnt::font &style::font() const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->fonts.at(d_->font_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
style style::font(const xlnt::font &new_font, bool applied)
|
|
|
|
{
|
|
|
|
d_->font_id = d_->parent->find_or_add(d_->parent->fonts, new_font);
|
|
|
|
d_->font_applied = applied;
|
|
|
|
return style(d_);
|
|
|
|
}
|
|
|
|
|
|
|
|
xlnt::number_format &style::number_format()
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
auto tarid = d_->number_format_id.get();
|
2016-12-24 23:04:57 +08:00
|
|
|
return *std::find_if(d_->parent->number_formats.begin(), d_->parent->number_formats.end(),
|
2016-12-02 21:37:50 +08:00
|
|
|
[=](const class number_format &nf) { return nf.id() == tarid; });
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const xlnt::number_format &style::number_format() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
auto tarid = d_->number_format_id.get();
|
2016-12-24 23:04:57 +08:00
|
|
|
return *std::find_if(d_->parent->number_formats.begin(), d_->parent->number_formats.end(),
|
2016-12-02 21:37:50 +08:00
|
|
|
[=](const class number_format &nf) { return nf.id() == tarid; });
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
style style::number_format(const xlnt::number_format &new_number_format, bool applied)
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
auto copy = new_number_format;
|
2016-11-08 10:11:30 +08:00
|
|
|
|
2016-12-24 23:04:57 +08:00
|
|
|
if (!copy.has_id())
|
|
|
|
{
|
|
|
|
copy.id(d_->parent->next_custom_number_format_id());
|
2016-11-08 10:11:30 +08:00
|
|
|
d_->parent->number_formats.push_back(copy);
|
2016-12-24 23:04:57 +08:00
|
|
|
}
|
|
|
|
else if (std::find_if(d_->parent->number_formats.begin(), d_->parent->number_formats.end(),
|
|
|
|
[©](const class number_format &nf) { return nf.id() == copy.id(); })
|
2016-11-08 10:11:30 +08:00
|
|
|
== d_->parent->number_formats.end())
|
|
|
|
{
|
|
|
|
d_->parent->number_formats.push_back(copy);
|
|
|
|
}
|
2016-12-24 23:04:57 +08:00
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
d_->number_format_id = copy.id();
|
2016-11-08 10:11:30 +08:00
|
|
|
d_->number_format_applied = applied;
|
|
|
|
|
|
|
|
return style(d_);
|
|
|
|
}
|
|
|
|
|
|
|
|
xlnt::protection &style::protection()
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->protections.at(d_->protection_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const xlnt::protection &style::protection() const
|
|
|
|
{
|
2016-12-24 23:04:57 +08:00
|
|
|
return d_->parent->protections.at(d_->protection_id.get());
|
2016-11-08 10:11:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
style style::protection(const xlnt::protection &new_protection, bool applied)
|
|
|
|
{
|
|
|
|
d_->protection_id = d_->parent->find_or_add(d_->parent->protections, new_protection);
|
|
|
|
d_->protection_applied = applied;
|
|
|
|
return style(d_);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool style::alignment_applied() const
|
|
|
|
{
|
|
|
|
return d_->alignment_applied;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool style::border_applied() const
|
|
|
|
{
|
|
|
|
return d_->border_applied;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool style::fill_applied() const
|
|
|
|
{
|
|
|
|
return d_->fill_applied;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool style::font_applied() const
|
|
|
|
{
|
|
|
|
return d_->font_applied;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool style::number_format_applied() const
|
|
|
|
{
|
|
|
|
return d_->number_format_applied;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool style::protection_applied() const
|
2016-08-18 19:34:18 +08:00
|
|
|
{
|
2016-11-08 10:11:30 +08:00
|
|
|
return d_->protection_applied;
|
2016-05-01 23:08:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace xlnt
|