docx-rs/docx-core/src/documents/elements/paragraph_property.rs

113 lines
3.3 KiB
Rust

use super::{
Indent, IndentLevel, Justification, NumberingId, NumberingProperty, ParagraphStyle, RunProperty,
};
use crate::documents::BuildXML;
use crate::types::{AlignmentType, SpecialIndentType};
use crate::xml_builder::*;
#[derive(Debug, Clone)]
pub struct ParagraphProperty<'a> {
run_property: RunProperty,
style: ParagraphStyle,
numbering_property: Option<NumberingProperty<'a>>,
alignment: Option<Justification>,
indent: Option<Indent>,
}
impl<'a> Default for ParagraphProperty<'a> {
fn default() -> Self {
let s: Option<&str> = None;
ParagraphProperty {
run_property: RunProperty::new(),
style: ParagraphStyle::new(s),
numbering_property: None,
alignment: None,
indent: None,
}
}
}
// 17.3.1.26
// pPr (Paragraph Properties)
// This element specifies a set of paragraph properties which shall be applied to the contents of the parent
// paragraph after all style/numbering/table properties have been applied to the text. These properties are defined
// as direct formatting, since they are directly applied to the paragraph and supersede any formatting from styles.
impl<'a> ParagraphProperty<'a> {
pub fn new() -> ParagraphProperty<'a> {
Default::default()
}
pub fn align(mut self, alignment_type: AlignmentType) -> Self {
self.alignment = Some(Justification::new(alignment_type.to_string()));
self
}
pub fn style(mut self, style_id: &str) -> Self {
self.style = ParagraphStyle::new(Some(style_id));
self
}
pub fn indent(mut self, left: usize, special_indent: Option<SpecialIndentType>) -> Self {
self.indent = Some(Indent::new(left, special_indent));
self
}
pub fn numbering(mut self, id: NumberingId<'a>, level: IndentLevel) -> Self {
self.numbering_property = Some(NumberingProperty::new(id, level));
self
}
}
impl<'a> BuildXML for ParagraphProperty<'a> {
fn build(&self) -> Vec<u8> {
XMLBuilder::new()
.open_paragraph_property()
.add_child(&self.style)
.add_child(&self.run_property)
.add_optional_child(&self.numbering_property)
.add_optional_child(&self.alignment)
.add_optional_child(&self.indent)
.close()
.build()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[cfg(test)]
use pretty_assertions::assert_eq;
use std::str;
#[test]
fn test_default() {
let c = ParagraphProperty::new();
let b = c.build();
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:pPr><w:pStyle w:val="Normal" /><w:rPr /></w:pPr>"#
);
}
#[test]
fn test_alignment() {
let c = ParagraphProperty::new();
let b = c.align(AlignmentType::Right).build();
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:pPr><w:pStyle w:val="Normal" /><w:rPr /><w:jc w:val="right" /></w:pPr>"#
);
}
#[test]
fn test_indent() {
let c = ParagraphProperty::new();
let b = c.indent(20, None).build();
assert_eq!(
str::from_utf8(&b).unwrap(),
r#"<w:pPr><w:pStyle w:val="Normal" /><w:rPr /><w:ind w:left="20" /></w:pPr>"#
);
}
}