xlnt/source/styles/base_format.cpp
2016-08-01 18:33:43 -04:00

258 lines
6.1 KiB
C++

// 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
#include <xlnt/styles/base_format.hpp>
namespace xlnt {
base_format::base_format()
: apply_alignment_(false),
apply_border_(false),
apply_fill_(false),
apply_font_(false),
apply_number_format_(false),
apply_protection_(false)
{
}
base_format::base_format(const base_format &other)
: alignment_(other.alignment_),
border_(other.border_),
fill_(other.fill_),
font_(other.font_),
number_format_(other.number_format_),
protection_(other.protection_),
apply_alignment_(other.apply_alignment_),
apply_border_(other.apply_border_),
apply_fill_(other.apply_fill_),
apply_font_(other.apply_font_),
apply_number_format_(other.apply_number_format_),
apply_protection_(other.apply_protection_)
{
}
base_format &base_format::operator=(const xlnt::base_format &other)
{
alignment_ = other.alignment_;
border_ = other.border_;
fill_ = other.fill_;
font_ = other.font_;
number_format_ = other.number_format_;
protection_ = other.protection_;
apply_alignment_ = other.apply_alignment_;
apply_border_ = other.apply_border_;
apply_fill_ = other.apply_fill_;
apply_font_ = other.apply_font_;
apply_number_format_ = other.apply_number_format_;
apply_protection_ = other.apply_protection_;
return *this;
}
alignment &base_format::get_alignment()
{
return alignment_;
}
const alignment &base_format::get_alignment() const
{
return alignment_;
}
void base_format::set_alignment(const xlnt::alignment &new_alignment)
{
alignment_ = new_alignment;
alignment_applied(true);
}
number_format &base_format::get_number_format()
{
return number_format_;
}
const number_format &base_format::get_number_format() const
{
return number_format_;
}
void base_format::set_number_format(const xlnt::number_format &new_number_format)
{
number_format_ = new_number_format;
number_format_applied(true);
}
border &base_format::get_border()
{
return border_;
}
const border &base_format::get_border() const
{
return border_;
}
void base_format::set_border(const xlnt::border &new_border)
{
border_ = new_border;
border_applied(true);
}
fill &base_format::get_fill()
{
return fill_;
}
const fill &base_format::get_fill() const
{
return fill_;
}
void base_format::set_fill(const xlnt::fill &new_fill)
{
fill_ = new_fill;
fill_applied(true);
}
font &base_format::get_font()
{
return font_;
}
const font &base_format::get_font() const
{
return font_;
}
void base_format::set_font(const xlnt::font &new_font)
{
font_ = new_font;
font_applied(true);
}
protection &base_format::get_protection()
{
return protection_;
}
const protection &base_format::get_protection() const
{
return protection_;
}
void base_format::set_protection(const xlnt::protection &new_protection)
{
if (!new_protection.get_locked() || new_protection.get_hidden())
{
protection_ = new_protection;
protection_applied(true);
}
}
std::string base_format::to_hash_string() const
{
std::string hash_string("base_format:");
hash_string.append(std::to_string(alignment_applied()));
hash_string.append(alignment_applied() ? std::to_string(alignment_.hash()) : ":");
hash_string.append(std::to_string(border_applied()));
hash_string.append(border_applied() ? std::to_string(border_.hash()) : ":");
hash_string.append(std::to_string(font_applied()));
hash_string.append(font_applied() ? std::to_string(font_.hash()) : ":");
hash_string.append(std::to_string(fill_applied()));
hash_string.append(fill_applied() ? std::to_string(fill_.hash()) : ":");
hash_string.append(std::to_string(number_format_applied()));
hash_string.append(std::to_string(number_format_.hash()));
hash_string.append(std::to_string(protection_applied()));
hash_string.append(protection_applied() ? std::to_string(protection_.hash()) : ":");
return hash_string;
}
void base_format::alignment_applied(bool applied)
{
apply_alignment_ = applied;
}
void base_format::border_applied(bool applied)
{
apply_border_ = applied;
}
void base_format::fill_applied(bool applied)
{
apply_fill_ = applied;
}
void base_format::font_applied(bool applied)
{
apply_font_ = applied;
}
void base_format::number_format_applied(bool applied)
{
apply_number_format_ = applied;
}
void base_format::protection_applied(bool applied)
{
apply_protection_ = applied;
}
bool base_format::alignment_applied() const
{
return apply_alignment_;
}
bool base_format::border_applied() const
{
return apply_border_;
}
bool base_format::fill_applied() const
{
return apply_fill_;
}
bool base_format::font_applied() const
{
return apply_font_;
}
bool base_format::number_format_applied() const
{
return apply_number_format_;
}
bool base_format::protection_applied() const
{
return apply_protection_;
}
} // namespace xlnt