docx_reader/documents/elements/
level.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
use crate::documents::*;
use crate::types::*;

use serde::Serialize;

#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Level {
	pub level: usize,
	pub start: Start,
	pub format: NumberFormat,
	pub text: LevelText,
	pub jc: LevelJc,
	pub paragraph_property: ParagraphProperty,
	pub run_property: RunProperty,
	pub suffix: LevelSuffixType,
	pub pstyle: Option<String>,
	pub level_restart: Option<LevelRestart>,
	#[serde(skip_serializing_if = "Option::is_none")]
	pub is_lgl: Option<IsLgl>,
}

impl Level {
	pub fn new(
		level: usize,
		start: Start,
		format: NumberFormat,
		text: LevelText,
		jc: LevelJc,
	) -> Level {
		Self {
			level,
			start,
			format,
			text,
			jc,
			paragraph_property: ParagraphProperty::new(),
			run_property: RunProperty::new(),
			suffix: LevelSuffixType::Tab,
			pstyle: None,
			level_restart: None,
			is_lgl: None,
		}
	}

	pub fn indent(
		mut self,
		left: Option<i32>,
		special_indent: Option<SpecialIndentType>,
		end: Option<i32>,
		start_chars: Option<i32>,
	) -> Self {
		self.paragraph_property =
			self.paragraph_property
				.indent(left, special_indent, end, start_chars);
		self
	}

	pub fn paragraph_style(mut self, style_id: impl Into<String>) -> Self {
		self.pstyle = Some(style_id.into());
		self
	}

	pub fn suffix(mut self, s: LevelSuffixType) -> Self {
		self.suffix = s;
		self
	}

	// run property
	pub fn size(mut self, size: usize) -> Self {
		self.run_property = self.run_property.size(size);
		self
	}

	pub fn spacing(mut self, v: i32) -> Self {
		self.run_property = self.run_property.spacing(v);
		self
	}

	pub fn color(mut self, color: impl Into<String>) -> Self {
		self.run_property = self.run_property.color(color);
		self
	}

	pub fn highlight(mut self, color: impl Into<String>) -> Self {
		self.run_property = self.run_property.highlight(color);
		self
	}

	pub fn bold(mut self) -> Self {
		self.run_property = self.run_property.bold();
		self
	}

	pub fn italic(mut self) -> Self {
		self.run_property = self.run_property.italic();
		self
	}

	pub fn underline(mut self, line_type: impl Into<String>) -> Self {
		self.run_property = self.run_property.underline(line_type);
		self
	}

	pub fn vanish(mut self) -> Self {
		self.run_property = self.run_property.vanish();
		self
	}

	pub fn fonts(mut self, f: RunFonts) -> Self {
		self.run_property = self.run_property.fonts(f);
		self
	}

	pub fn level_restart(mut self, v: u32) -> Self {
		self.level_restart = Some(LevelRestart::new(v));
		self
	}

	pub fn is_lgl(mut self) -> Self {
		self.is_lgl = Some(IsLgl::new());
		self
	}
}