2016-05-14 02:40:17 +08:00
|
|
|
// Copyright (c) 2014-2016 Thomas Fussell
|
|
|
|
//
|
|
|
|
// 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/cell/text_run.hpp>
|
2016-10-29 22:23:04 +08:00
|
|
|
#include <xlnt/styles/color.hpp>
|
2016-05-14 02:40:17 +08:00
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
|
|
|
|
text_run::text_run() : text_run("")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
text_run::text_run(const std::string &string) : string_(string)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
std::string text_run::string() const
|
2016-05-14 02:40:17 +08:00
|
|
|
{
|
|
|
|
return string_;
|
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::string(const std::string &string)
|
2016-05-14 02:40:17 +08:00
|
|
|
{
|
|
|
|
string_ = string;
|
|
|
|
}
|
|
|
|
|
2016-05-15 03:19:08 +08:00
|
|
|
bool text_run::has_formatting() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.is_set();
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool text_run::has_size() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.is_set() && font_.get().has_size();
|
2016-05-15 03:19:08 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
std::size_t text_run::size() const
|
2016-05-15 03:19:08 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.get().size();
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::size(std::size_t size)
|
2016-05-15 23:51:32 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
if (!font_.is_set())
|
|
|
|
{
|
|
|
|
font_ = xlnt::font();
|
|
|
|
}
|
|
|
|
|
|
|
|
font_.get().size(size);
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool text_run::has_color() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.is_set() && font_.get().has_color();
|
2016-05-15 03:19:08 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
color text_run::color() const
|
2016-05-15 03:19:08 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.get().color();
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::color(const class color &new_color)
|
2016-05-15 23:51:32 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
if (!font_.is_set())
|
|
|
|
{
|
|
|
|
font_ = xlnt::font();
|
|
|
|
}
|
|
|
|
|
|
|
|
font_.get().color(new_color);
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool text_run::has_font() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.is_set() && font_.get().has_name();
|
2016-05-15 03:19:08 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
std::string text_run::font() const
|
2016-05-15 03:19:08 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.get().name();
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::font(const std::string &font)
|
2016-05-15 23:51:32 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
if (!font_.is_set())
|
|
|
|
{
|
|
|
|
font_ = xlnt::font();
|
|
|
|
}
|
|
|
|
|
|
|
|
font_.get().name(font);
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool text_run::has_family() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.is_set() && font_.get().has_family();
|
2016-05-15 03:19:08 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
std::size_t text_run::family() const
|
2016-05-15 03:19:08 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.get().family();
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::family(std::size_t family)
|
2016-05-15 23:51:32 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
if (!font_.is_set())
|
|
|
|
{
|
|
|
|
font_ = xlnt::font();
|
|
|
|
}
|
|
|
|
|
|
|
|
font_.get().family(family);
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool text_run::has_scheme() const
|
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.is_set() && font_.get().has_scheme();
|
2016-05-15 03:19:08 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
std::string text_run::scheme() const
|
2016-05-15 03:19:08 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.get().scheme();
|
2016-05-15 23:51:32 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::scheme(const std::string &scheme)
|
2016-05-15 23:51:32 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
if (!font_.is_set())
|
|
|
|
{
|
|
|
|
font_ = xlnt::font();
|
|
|
|
}
|
|
|
|
|
|
|
|
font_.get().scheme(scheme);
|
2016-05-15 03:19:08 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
bool text_run::bold() const
|
2016-10-29 22:23:04 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
return font_.is_set() && font_.get().bold();
|
2016-10-29 22:23:04 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::bold(bool bold)
|
2016-10-29 22:23:04 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
if (!font_.is_set())
|
|
|
|
{
|
|
|
|
font_ = xlnt::font();
|
|
|
|
}
|
|
|
|
|
|
|
|
font_.get().bold(bold);
|
2016-10-29 22:23:04 +08:00
|
|
|
}
|
|
|
|
|
2016-12-02 21:37:50 +08:00
|
|
|
void text_run::underline(font::underline_style style)
|
2016-10-29 22:23:04 +08:00
|
|
|
{
|
2016-12-02 21:37:50 +08:00
|
|
|
if (!font_.is_set())
|
|
|
|
{
|
|
|
|
font_ = xlnt::font();
|
|
|
|
}
|
|
|
|
|
|
|
|
font_.get().underline(style);
|
2016-10-29 22:23:04 +08:00
|
|
|
}
|
|
|
|
|
2016-05-14 02:40:17 +08:00
|
|
|
} // namespace xlnt
|