2015-12-25 06:10:02 +08:00
|
|
|
// Copyright (c) 2014-2016 Thomas Fussell
|
2015-12-25 04:51:11 +08:00
|
|
|
// 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
|
2014-08-14 06:56:34 +08:00
|
|
|
#include <xlnt/styles/protection.hpp>
|
2015-12-25 04:51:11 +08:00
|
|
|
#include <xlnt/utils/hash_combine.hpp>
|
2014-07-27 04:19:15 +08:00
|
|
|
|
|
|
|
namespace xlnt {
|
|
|
|
|
2016-07-06 09:27:35 +08:00
|
|
|
protection::protection() : protection(true, false)
|
2014-07-27 04:19:15 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-07-06 09:27:35 +08:00
|
|
|
protection::protection(bool locked, bool hidden)
|
|
|
|
: locked_(locked),
|
|
|
|
hidden_(hidden)
|
2014-07-27 04:19:15 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-07-06 09:27:35 +08:00
|
|
|
bool protection::get_locked() const
|
2016-06-13 07:59:59 +08:00
|
|
|
{
|
|
|
|
return locked_;
|
|
|
|
}
|
|
|
|
|
2016-07-06 09:27:35 +08:00
|
|
|
void protection::set_locked(bool locked)
|
2015-12-25 04:51:11 +08:00
|
|
|
{
|
2016-07-06 09:27:35 +08:00
|
|
|
locked_ = locked;
|
2015-12-25 04:51:11 +08:00
|
|
|
}
|
|
|
|
|
2016-07-06 09:27:35 +08:00
|
|
|
bool protection::get_hidden() const
|
2016-06-13 07:59:59 +08:00
|
|
|
{
|
|
|
|
return hidden_;
|
|
|
|
}
|
|
|
|
|
2016-07-06 09:27:35 +08:00
|
|
|
void protection::set_hidden(bool hidden)
|
2015-12-25 04:51:11 +08:00
|
|
|
{
|
2016-07-06 09:27:35 +08:00
|
|
|
hidden_ = hidden;
|
2015-12-25 04:51:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string protection::to_hash_string() const
|
|
|
|
{
|
|
|
|
std::string hash_string = "protection";
|
|
|
|
|
2016-07-06 09:27:35 +08:00
|
|
|
hash_string.append(locked_ ? "1" : "0");
|
|
|
|
hash_string.append(hidden_ ? "1" : "0");
|
2015-12-25 04:51:11 +08:00
|
|
|
|
|
|
|
return hash_string;
|
|
|
|
}
|
|
|
|
|
2014-07-30 06:01:54 +08:00
|
|
|
} // namespace xlnt
|