123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- // Copyright (c) 2014-2021 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, ARISING 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/utils/numeric.hpp>
- #include <xlnt/worksheet/page_setup.hpp>
- namespace xlnt {
- page_setup::page_setup()
- : break_(xlnt::page_break::none),
- sheet_state_(xlnt::sheet_state::visible),
- fit_to_page_(false),
- fit_to_height_(false),
- fit_to_width_(false)
- {
- }
- page_break page_setup::page_break() const
- {
- return break_;
- }
- void page_setup::page_break(xlnt::page_break b)
- {
- break_ = b;
- }
- sheet_state page_setup::sheet_state() const
- {
- return sheet_state_;
- }
- void page_setup::sheet_state(xlnt::sheet_state sheet_state)
- {
- sheet_state_ = sheet_state;
- }
- paper_size page_setup::paper_size() const
- {
- return paper_size_.get();
- }
- void page_setup::paper_size(xlnt::paper_size paper_size)
- {
- paper_size_ = paper_size;
- }
- bool page_setup::has_paper_size() const
- {
- return this->paper_size_.is_set();
- }
- bool page_setup::fit_to_page() const
- {
- return fit_to_page_;
- }
- void page_setup::fit_to_page(bool fit_to_page)
- {
- fit_to_page_ = fit_to_page;
- }
- bool page_setup::fit_to_height() const
- {
- return fit_to_height_;
- }
- void page_setup::fit_to_height(bool fit_to_height)
- {
- fit_to_height_ = fit_to_height;
- }
- bool page_setup::fit_to_width() const
- {
- return fit_to_width_;
- }
- void page_setup::fit_to_width(bool fit_to_width)
- {
- fit_to_width_ = fit_to_width;
- }
- void page_setup::scale(double scale)
- {
- scale_ = scale;
- }
- double page_setup::scale() const
- {
- return scale_.get();
- }
- bool page_setup::has_scale() const
- {
- return this->scale_.is_set();
- }
- const std::string& page_setup::rel_id() const
- {
- return this->rel_id_;
- }
- void page_setup::rel_id(const std::string& val)
- {
- this->rel_id_ = val;
- }
- bool page_setup::has_rel_id() const
- {
- return !rel_id_.empty();
- }
- bool page_setup::operator==(const page_setup &rhs) const
- {
- return break_ == rhs.break_
- && sheet_state_ == rhs.sheet_state_
- && paper_size_ == rhs.paper_size_
- && fit_to_page_ == rhs.fit_to_page_
- && fit_to_height_ == rhs.fit_to_height_
- && fit_to_width_ == rhs.fit_to_width_
- && scale_ == rhs.scale_
- && paper_size_ == rhs.paper_size_
- && rel_id_ == rhs.rel_id_;
- }
- } // namespace xlnt
|