xlnt/source/styles/common_style.cpp

258 lines
6.1 KiB
C++
Raw Normal View History

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