docx_reader/documents/elements/
text_box_content.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use super::*;
use serde::ser::{SerializeStruct, Serializer};
use serde::Serialize;

#[derive(Debug, Clone, Serialize, PartialEq)]
pub struct TextBoxContent {
	pub children: Vec<TextBoxContentChild>,
	pub has_numbering: bool,
}

#[derive(Debug, Clone, PartialEq)]
pub enum TextBoxContentChild {
	Paragraph(Box<Paragraph>),
	Table(Box<Table>),
}

impl Serialize for TextBoxContentChild {
	fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
	where
		S: Serializer,
	{
		match *self {
			TextBoxContentChild::Paragraph(ref p) => {
				let mut t = serializer.serialize_struct("Paragraph", 2)?;
				t.serialize_field("type", "paragraph")?;
				t.serialize_field("data", p)?;
				t.end()
			}
			TextBoxContentChild::Table(ref c) => {
				let mut t = serializer.serialize_struct("Table", 2)?;
				t.serialize_field("type", "table")?;
				t.serialize_field("data", c)?;
				t.end()
			}
		}
	}
}

impl TextBoxContent {
	pub fn new() -> TextBoxContent {
		Default::default()
	}

	pub fn add_paragraph(mut self, p: Paragraph) -> Self {
		if p.has_numbering {
			self.has_numbering = true
		}
		self.children
			.push(TextBoxContentChild::Paragraph(Box::new(p)));
		self
	}

	pub fn add_table(mut self, t: Table) -> Self {
		if t.has_numbering {
			self.has_numbering = true
		}
		self.children.push(TextBoxContentChild::Table(Box::new(t)));
		self
	}
}

impl Default for TextBoxContent {
	fn default() -> Self {
		TextBoxContent {
			children: vec![],
			has_numbering: false,
		}
	}
}