Fix - Print Settings (Page Size, margins, etc) not saved when loading a file and save it.

This commit is contained in:
Wu, Ganhao 2021-08-29 02:56:57 +08:00
parent 3a279fcaab
commit 5946eec32e
4 changed files with 111 additions and 27 deletions

View File

@ -119,6 +119,11 @@ public:
/// </summary> /// </summary>
void paper_size(xlnt::paper_size paper_size); void paper_size(xlnt::paper_size paper_size);
/// <summary>
/// Check if current paper setting has paper size setting
/// </summary>
bool has_paper_size() const;
/// <summary> /// <summary>
/// Returns true if this worksheet should be scaled to fit on a single page during printing. /// Returns true if this worksheet should be scaled to fit on a single page during printing.
/// </summary> /// </summary>
@ -159,6 +164,26 @@ public:
/// </summary> /// </summary>
double scale() const; double scale() const;
/// <summary>
/// Check if current paper setting has scale setting
/// </summary>
bool has_scale() const;
/// <summary>
/// Gets reference relationship Id
/// </summary>
const std::string& rel_id() const;
/// <summary>
/// Sets reference relationship Id
/// </summary>
void rel_id(const std::string& val);
/// <summary>
/// Check if current paper setting has a reference relationship
/// </summary>
bool has_rel_id() const;
/// <summary> /// <summary>
/// The orientation /// The orientation
/// </summary> /// </summary>
@ -175,6 +200,11 @@ public:
bool operator==(const page_setup &rhs) const; bool operator==(const page_setup &rhs) const;
private: private:
/// <summary>
/// Relationship Id
/// </summary>
std::string rel_id_;
/// <summary> /// <summary>
/// The break /// The break
/// </summary> /// </summary>
@ -188,7 +218,7 @@ private:
/// <summary> /// <summary>
/// The paper size /// The paper size
/// </summary> /// </summary>
xlnt::paper_size paper_size_; xlnt::optional<xlnt::paper_size> paper_size_;
/// <summary> /// <summary>
/// Whether or not to fit to page /// Whether or not to fit to page
@ -208,7 +238,7 @@ private:
/// <summary> /// <summary>
/// The amount to scale the worksheet /// The amount to scale the worksheet
/// </summary> /// </summary>
double scale_; xlnt::optional<double> scale_;
}; };
} // namespace xlnt } // namespace xlnt

View File

@ -955,19 +955,19 @@ worksheet xlsx_consumer::read_worksheet_end(const std::string &rel_id)
} }
if (parser().attribute_present("gridLinesSet")) if (parser().attribute_present("gridLinesSet"))
{ {
opts.print_grid_lines.set(parser().attribute<bool>("gridLinesSet")); opts.grid_lines_set.set(parser().attribute<bool>("gridLinesSet"));
} }
if (parser().attribute_present("headings")) if (parser().attribute_present("headings"))
{ {
opts.print_grid_lines.set(parser().attribute<bool>("headings")); opts.print_headings.set(parser().attribute<bool>("headings"));
} }
if (parser().attribute_present("horizontalCentered")) if (parser().attribute_present("horizontalCentered"))
{ {
opts.print_grid_lines.set(parser().attribute<bool>("horizontalCentered")); opts.horizontal_centered.set(parser().attribute<bool>("horizontalCentered"));
} }
if (parser().attribute_present("verticalCentered")) if (parser().attribute_present("verticalCentered"))
{ {
opts.print_grid_lines.set(parser().attribute<bool>("verticalCentered")); opts.vertical_centered.set(parser().attribute<bool>("verticalCentered"));
} }
ws.d_->print_options_.set(opts); ws.d_->print_options_.set(opts);
skip_remaining_content(current_worksheet_element); skip_remaining_content(current_worksheet_element);
@ -1000,6 +1000,18 @@ worksheet xlsx_consumer::read_worksheet_end(const std::string &rel_id)
{ {
setup.vertical_dpi_.set(parser().attribute<std::size_t>("verticalDpi")); setup.vertical_dpi_.set(parser().attribute<std::size_t>("verticalDpi"));
} }
if (parser().attribute_present("paperSize"))
{
setup.paper_size(static_cast<xlnt::paper_size>(parser().attribute<std::size_t>("paperSize")));
}
if (parser().attribute_present("scale"))
{
setup.scale(parser().attribute<double>("scale"));
}
if (parser().attribute_present(qn("r", "id")))
{
setup.rel_id(parser().attribute(qn("r", "id")));
}
ws.page_setup(setup); ws.page_setup(setup);
skip_remaining_content(current_worksheet_element); skip_remaining_content(current_worksheet_element);
} }

View File

@ -2782,6 +2782,22 @@ void xlsx_producer::write_worksheet(const relationship &rel)
write_end_element(xmlns, "hyperlinks"); write_end_element(xmlns, "hyperlinks");
} }
if (ws.has_phonetic_properties())
{
write_start_element(xmlns, phonetic_pr::Serialised_ID());
const auto &ph_props = ws.phonetic_properties();
write_attribute("fontId", ph_props.font_id());
if (ph_props.has_type())
{
write_attribute("type", phonetic_pr::type_as_string(ph_props.type()));
}
if (ph_props.has_alignment())
{
write_attribute("alignment", phonetic_pr::alignment_as_string(ph_props.alignment()));
}
write_end_element(xmlns, phonetic_pr::Serialised_ID());
}
if (ws.d_->print_options_.is_set()) if (ws.d_->print_options_.is_set())
{ {
auto &opts = ws.d_->print_options_.get(); auto &opts = ws.d_->print_options_.get();
@ -2809,22 +2825,6 @@ void xlsx_producer::write_worksheet(const relationship &rel)
write_end_element(xmlns, "printOptions"); write_end_element(xmlns, "printOptions");
} }
if (ws.has_phonetic_properties())
{
write_start_element(xmlns, phonetic_pr::Serialised_ID());
const auto &ph_props = ws.phonetic_properties();
write_attribute("fontId", ph_props.font_id());
if (ph_props.has_type())
{
write_attribute("type", phonetic_pr::type_as_string(ph_props.type()));
}
if (ph_props.has_alignment())
{
write_attribute("alignment", phonetic_pr::alignment_as_string(ph_props.alignment()));
}
write_end_element(xmlns, phonetic_pr::Serialised_ID());
}
if (ws.has_page_margins()) if (ws.has_page_margins())
{ {
write_start_element(xmlns, "pageMargins"); write_start_element(xmlns, "pageMargins");
@ -2841,6 +2841,7 @@ void xlsx_producer::write_worksheet(const relationship &rel)
if (ws.has_page_setup()) if (ws.has_page_setup())
{ {
const xlnt::page_setup &ps = ws.page_setup();
write_start_element(xmlns, "pageSetup"); write_start_element(xmlns, "pageSetup");
if (ws.page_setup().orientation_.is_set()) if (ws.page_setup().orientation_.is_set())
{ {
@ -2854,8 +2855,22 @@ void xlsx_producer::write_worksheet(const relationship &rel)
{ {
write_attribute("verticalDpi", ws.page_setup().vertical_dpi_.get()); write_attribute("verticalDpi", ws.page_setup().vertical_dpi_.get());
} }
/*write_attribute("paperSize", static_cast<std::size_t>(ws.page_setup().paper_size()));
write_attribute("fitToHeight", write_bool(ws.page_setup().fit_to_height())); if (ps.has_paper_size())
{
write_attribute("paperSize", static_cast<std::size_t>(ps.paper_size()));
}
if (ps.has_scale())
{
write_attribute("scale", ps.scale());
}
if (ps.has_rel_id())
{
write_attribute(xml::qname(xmlns_r, "id"), ps.rel_id());
}
/*write_attribute("fitToHeight", write_bool(ws.page_setup().fit_to_height()));
write_attribute("fitToWidth", write_bool(ws.page_setup().fit_to_width()));*/ write_attribute("fitToWidth", write_bool(ws.page_setup().fit_to_width()));*/
write_end_element(xmlns, "pageSetup"); write_end_element(xmlns, "pageSetup");
} }

View File

@ -59,7 +59,7 @@ void page_setup::sheet_state(xlnt::sheet_state sheet_state)
paper_size page_setup::paper_size() const paper_size page_setup::paper_size() const
{ {
return paper_size_; return paper_size_.get();
} }
void page_setup::paper_size(xlnt::paper_size paper_size) void page_setup::paper_size(xlnt::paper_size paper_size)
@ -67,6 +67,11 @@ void page_setup::paper_size(xlnt::paper_size paper_size)
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 bool page_setup::fit_to_page() const
{ {
return fit_to_page_; return fit_to_page_;
@ -104,7 +109,27 @@ void page_setup::scale(double scale)
double page_setup::scale() const double page_setup::scale() const
{ {
return scale_; 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 bool page_setup::operator==(const page_setup &rhs) const
@ -115,7 +140,9 @@ bool page_setup::operator==(const page_setup &rhs) const
&& fit_to_page_ == rhs.fit_to_page_ && fit_to_page_ == rhs.fit_to_page_
&& fit_to_height_ == rhs.fit_to_height_ && fit_to_height_ == rhs.fit_to_height_
&& fit_to_width_ == rhs.fit_to_width_ && fit_to_width_ == rhs.fit_to_width_
&& detail::float_equals(scale_, rhs.scale_); && scale_ == rhs.scale_
&& paper_size_ == rhs.paper_size_
&& rel_id_ == rhs.rel_id_;
} }
} // namespace xlnt } // namespace xlnt