docx_reader/documents/elements/
paragraph_property.rsuse serde::Serialize;
use super::*;
use crate::types::{AlignmentType, SpecialIndentType};
use crate::ParagraphBorderPosition;
#[derive(Serialize, Debug, Clone, PartialEq, Default)]
#[serde(rename_all = "camelCase")]
pub struct ParagraphProperty {
pub run_property: RunProperty,
#[serde(skip_serializing_if = "Option::is_none")]
pub style: Option<ParagraphStyle>,
#[serde(skip_serializing_if = "Option::is_none")]
pub numbering_property: Option<NumberingProperty>,
#[serde(skip_serializing_if = "Option::is_none")]
pub alignment: Option<Justification>,
#[serde(skip_serializing_if = "Option::is_none")]
pub indent: Option<Indent>,
#[serde(skip_serializing_if = "Option::is_none")]
pub line_spacing: Option<LineSpacing>,
#[serde(skip_serializing_if = "Option::is_none")]
pub keep_next: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub keep_lines: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub page_break_before: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub widow_control: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub outline_lvl: Option<OutlineLvl>,
#[serde(skip_serializing_if = "Option::is_none")]
pub section_property: Option<SectionProperty>,
pub tabs: Vec<Tab>,
#[serde(skip_serializing_if = "Option::is_none")]
pub(crate) div_id: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub paragraph_property_change: Option<ParagraphPropertyChange>,
#[serde(skip_serializing_if = "Option::is_none")]
pub borders: Option<ParagraphBorders>,
}
impl ParagraphProperty {
pub fn new() -> ParagraphProperty {
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 = Some(ParagraphStyle::new(Some(style_id)));
self
}
pub fn indent(
mut self,
left: Option<i32>,
special_indent: Option<SpecialIndentType>,
end: Option<i32>,
start_chars: Option<i32>,
) -> Self {
self.indent = Some(Indent::new(left, special_indent, end, start_chars));
self
}
pub fn numbering(mut self, id: NumberingId, level: IndentLevel) -> Self {
self.numbering_property = Some(NumberingProperty::new().add_num(id, level));
self
}
pub fn numbering_property(mut self, np: NumberingProperty) -> Self {
self.numbering_property = Some(np);
self
}
pub fn line_spacing(mut self, spacing: LineSpacing) -> Self {
self.line_spacing = Some(spacing);
self
}
pub fn character_spacing(mut self, spacing: i32) -> Self {
self.run_property.character_spacing = Some(CharacterSpacing::new(spacing));
self
}
pub fn keep_next(mut self, v: bool) -> Self {
self.keep_next = Some(v);
self
}
pub fn keep_lines(mut self, v: bool) -> Self {
self.keep_lines = Some(v);
self
}
pub fn outline_lvl(mut self, v: usize) -> Self {
if v >= 10 {
self.outline_lvl = Some(OutlineLvl::new(9));
return self;
}
self.outline_lvl = Some(OutlineLvl::new(v));
self
}
pub fn page_break_before(mut self, v: bool) -> Self {
self.page_break_before = Some(v);
self
}
pub fn widow_control(mut self, v: bool) -> Self {
self.widow_control = Some(v);
self
}
pub fn add_tab(mut self, t: Tab) -> Self {
self.tabs.push(t);
self
}
pub fn section_property(mut self, s: SectionProperty) -> Self {
self.section_property = Some(s);
self
}
pub fn paragraph_property_change(mut self, p: ParagraphPropertyChange) -> Self {
self.paragraph_property_change = Some(p);
self
}
pub(crate) fn hanging_chars(mut self, chars: i32) -> Self {
if let Some(indent) = self.indent {
self.indent = Some(indent.hanging_chars(chars));
}
self
}
pub(crate) fn first_line_chars(mut self, chars: i32) -> Self {
if let Some(indent) = self.indent {
self.indent = Some(indent.first_line_chars(chars));
}
self
}
pub fn set_borders(mut self, borders: ParagraphBorders) -> Self {
self.borders = Some(borders);
self
}
pub fn set_border(mut self, border: ParagraphBorder) -> Self {
self.borders = Some(self.borders.unwrap_or_default().set(border));
self
}
pub fn clear_border(mut self, position: ParagraphBorderPosition) -> Self {
self.borders = Some(self.borders.unwrap_or_default().clear(position));
self
}
pub fn clear_all_borders(mut self) -> Self {
self.borders = Some(self.borders.unwrap_or_default().clear_all());
self
}
}