mod build_xml; mod comments; mod content_types; mod doc_props; mod document; mod document_rels; mod elements; mod font_table; mod history_id; mod numberings; mod rels; mod settings; mod styles; mod xml_docx; pub(crate) use build_xml::BuildXML; pub(crate) use history_id::HistoryId; pub use comments::*; pub use content_types::*; pub use doc_props::*; pub use document::*; pub use document_rels::*; pub use elements::*; pub use font_table::*; pub use numberings::*; pub use rels::*; pub use settings::*; pub use styles::*; pub use xml_docx::*; #[derive(Debug)] pub struct Docx { content_type: ContentTypes, rels: Rels, document_rels: DocumentRels, doc_props: DocProps, pub styles: Styles, pub document: Document, pub comments: Comments, pub numberings: Numberings, pub settings: Settings, pub font_table: FontTable, } impl Default for Docx { fn default() -> Self { let content_type = ContentTypes::new(); let rels = Rels::new(); let doc_props = DocProps::new(CorePropsConfig::new()); let styles = Styles::new(); let document = Document::new(); let document_rels = DocumentRels::new(); let settings = Settings::new(); let font_table = FontTable::new(); let comments = Comments::new(); let numberings = Numberings::new(); Docx { content_type, rels, doc_props, styles, document, comments, document_rels, settings, font_table, numberings, } } } impl Docx { pub fn new() -> Docx { Default::default() } pub fn add_paragraph(mut self, p: Paragraph) -> Docx { self.document = self.document.add_paragraph(p); self } pub fn add_table(mut self, t: Table) -> Docx { self.document = self.document.add_table(t); self } pub fn add_numbering(mut self, num: Numbering) -> Docx { self.numberings = self.numberings.add_numbering(num); self } pub fn build(&mut self) -> XMLDocx { self.update_comments(); XMLDocx { content_type: self.content_type.build(), rels: self.rels.build(), doc_props: self.doc_props.build(), styles: self.styles.build(), document: self.document.build(), comments: self.comments.build(), document_rels: self.document_rels.build(), settings: self.settings.build(), font_table: self.font_table.build(), numberings: self.numberings.build(), } } // Traverse and clone comments from document and add to comments node. fn update_comments(&mut self) { let mut comments: Vec = vec![]; for child in &self.document.children { match child { DocumentChild::Paragraph(paragraph) => { for child in ¶graph.children { match child { ParagraphChild::CommentStart(c) => { comments.push(c.comment()); } _ => {} } } } DocumentChild::Table(table) => { for row in &table.rows { for cell in &row.cells { for content in &cell.contents { match content { TableCellContent::Paragraph(paragraph) => { for child in ¶graph.children { match child { ParagraphChild::CommentStart(c) => { comments.push(c.comment()); } _ => {} } } } } } } } } _ => {} } } self.comments.add_comments(comments); } }