xlnt/source/styles/base_format.cpp

155 lines
3.3 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-08-18 19:34:18 +08:00
alignment &base_format::alignment()
2016-05-01 23:08:56 +08:00
{
return alignment_;
}
2016-08-18 19:34:18 +08:00
const alignment &base_format::alignment() const
2016-05-01 23:08:56 +08:00
{
return alignment_;
}
2016-08-18 19:34:18 +08:00
void base_format::alignment(const xlnt::alignment &new_alignment, bool apply)
2016-05-01 23:08:56 +08:00
{
alignment_ = new_alignment;
2016-08-18 19:34:18 +08:00
apply_alignment_ = apply;
2016-05-01 23:08:56 +08:00
}
2016-08-18 19:34:18 +08:00
number_format &base_format::number_format()
2016-05-01 23:08:56 +08:00
{
return number_format_;
}
2016-08-18 19:34:18 +08:00
const number_format &base_format::number_format() const
2016-05-01 23:08:56 +08:00
{
return number_format_;
}
2016-08-18 19:34:18 +08:00
void base_format::number_format(const xlnt::number_format &new_number_format, bool apply)
2016-05-01 23:08:56 +08:00
{
number_format_ = new_number_format;
2016-08-18 19:34:18 +08:00
apply_number_format_ = apply;
2016-05-01 23:08:56 +08:00
}
2016-08-18 19:34:18 +08:00
border &base_format::border()
2016-05-01 23:08:56 +08:00
{
return border_;
}
2016-08-18 19:34:18 +08:00
const border &base_format::border() const
2016-05-01 23:08:56 +08:00
{
return border_;
}
2016-08-18 19:34:18 +08:00
void base_format::border(const xlnt::border &new_border, bool apply)
2016-05-01 23:08:56 +08:00
{
border_ = new_border;
2016-08-18 19:34:18 +08:00
apply_border_ = apply;
2016-05-01 23:08:56 +08:00
}
2016-08-18 19:34:18 +08:00
fill &base_format::fill()
2016-05-01 23:08:56 +08:00
{
return fill_;
}
2016-08-18 19:34:18 +08:00
const fill &base_format::fill() const
2016-05-01 23:08:56 +08:00
{
return fill_;
}
2016-08-18 19:34:18 +08:00
void base_format::fill(const xlnt::fill &new_fill, bool apply)
2016-05-01 23:08:56 +08:00
{
fill_ = new_fill;
2016-08-18 19:34:18 +08:00
apply_fill_ = apply;
2016-05-01 23:08:56 +08:00
}
2016-08-18 19:34:18 +08:00
font &base_format::font()
2016-05-01 23:08:56 +08:00
{
return font_;
}
2016-08-18 19:34:18 +08:00
const font &base_format::font() const
2016-05-01 23:08:56 +08:00
{
return font_;
}
2016-08-18 19:34:18 +08:00
void base_format::font(const xlnt::font &new_font, bool apply)
2016-05-01 23:08:56 +08:00
{
font_ = new_font;
2016-08-18 19:34:18 +08:00
apply_font_ = apply;
2016-05-01 23:08:56 +08:00
}
2016-08-18 19:34:18 +08:00
protection &base_format::protection()
2016-05-01 23:08:56 +08:00
{
return protection_;
}
2016-08-18 19:34:18 +08:00
const protection &base_format::protection() const
2016-05-01 23:08:56 +08:00
{
return protection_;
}
2016-08-18 19:34:18 +08:00
void base_format::protection(const xlnt::protection &new_protection, bool apply)
2016-05-14 02:40:17 +08:00
{
2016-08-18 19:34:18 +08:00
protection_ = new_protection;
apply_protection_ = apply;
2016-05-14 02:40:17 +08:00
}
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