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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
use std::borrow::Cow;
use strong_xml::{XmlRead, XmlWrite};

use crate::{
    __setter, __xml_test_suites,
    formatting::{Borders, Indent, Justification, NumberingProperty, Spacing, WidowControl},
};

/// Paragraph Property
///
/// ```rust
/// use docx_rust::formatting::{ParagraphProperty, JustificationVal};
///
/// let prop = ParagraphProperty::default()
///     .style_id("foo")
///     .justification(JustificationVal::Start)
///     .numbering((10usize, 20usize));
/// ```
#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:pPr")]
pub struct ParagraphProperty<'a> {
    /// Specifies the style ID of the paragraph style.
    #[xml(child = "w:pStyle")]
    pub style_id: Option<ParagraphStyleId<'a>>,
    ///  Keep Paragraph With Next Paragraph
    #[xml(child = "w:keepNext")]
    pub keep_next: Option<KeepNext>,
    ///  Keep All Lines On One Page
    #[xml(child = "w:keepLines")]
    pub keep_lines: Option<KeepLines>,
    ///  Start Paragraph on Next Page
    #[xml(child = "w:pageBreakBefore")]
    pub page_break_before: Option<PageBreakBefore>,
    ///  Text Frame Properties
    //#[xml(child = "w:framePr")]
    //pub frame_pr: Option<FramePr>,
    ///  Allow First/Last Line to Display on a Separate Page
    /// Specifies whether enable widow control
    #[xml(child = "w:widowControl")]
    pub widow_control: Option<WidowControl>,
    /// Specifies that the paragraph should be numbered.
    #[xml(child = "w:numPr")]
    pub numbering: Option<NumberingProperty>,
    ///  Suppress Line Numbers for Paragraph
    #[xml(child = "w:suppressLineNumbers")]
    pub suppress_line_numbers: Option<SuppressLineNumbers>,
    /// Specifies borders for the paragraph.
    #[xml(child = "w:pBdr")]
    pub border: Option<Borders<'a>>,
    ///  Paragraph Shading
    #[xml(child = "w:shd")]
    pub shading: Option<super::Shading<'a>>,
    ///  Set of Custom Tab Stops
    //#[xml(child = "w:tabs")]
    //pub tabs: Option<Tabs>,
    ///  Suppress Hyphenation for Paragraph
    #[xml(child = "w:suppressAutoHyphens")]
    pub suppress_auto_hyphens: Option<SuppressAutoHyphens>,
    ///  Use East Asian Typography Rules for First and Last Character per Line
    #[xml(child = "w:kinsoku")]
    pub kinsoku: Option<Kinsoku>,
    ///  Allow Line Breaking At Character Level
    #[xml(child = "w:wordWrap")]
    pub word_wrap: Option<WordWrap>,
    ///  Allow Punctuation to Extent Past Text Extents
    #[xml(child = "w:overflowPunct")]
    pub overflow_punct: Option<OverflowPunct>,
    ///  Compress Punctuation at Start of a Line
    #[xml(child = "w:topLinePunct")]
    pub top_line_punct: Option<TopLinePunct>,
    ///  Automatically Adjust Spacing of Latin and East Asian Text
    #[xml(child = "w:autoSpaceDE")]
    pub auto_space_de: Option<AutoSpaceDE>,
    ///  Automatically Adjust Spacing of East Asian Text and Numbers
    #[xml(child = "w:autoSpaceDN")]
    pub auto_space_dn: Option<AutoSpaceDN>,
    ///  Right to Left Paragraph Layout
    #[xml(child = "w:bidi")]
    pub bidi: Option<Bidi>,
    ///  Automatically Adjust Right Indent When Using Document Grid
    #[xml(child = "w:adjustRightInd")]
    pub adjust_right_ind: Option<AdjustRightInd>,
    ///  Use Document Grid Settings for Inter-Line Paragraph Spacing
    #[xml(child = "w:snapToGrid")]
    pub snap_to_grid: Option<SnapToGrid>,
    ///  Spacing Between Lines and Above/Below Paragraph
    #[xml(child = "w:spacing")]
    pub spacing: Option<Spacing>,
    ///  Paragraph Indentation
    #[xml(child = "w:ind")]
    pub indent: Option<Indent>,
    ///  Ignore Spacing Above and Below When Using Identical Styles
    #[xml(child = "w:contextualSpacing")]
    pub contextual_spacing: Option<ContextualSpacing>,
    ///  Use Left/Right Indents as Inside/Outside Indents
    #[xml(child = "w:mirrorIndents")]
    pub mirror_indents: Option<MirrorIndents>,
    ///  Prevent Text Frames From Overlapping
    #[xml(child = "w:suppressOverlap")]
    pub suppress_overlap: Option<SuppressOverlap>,
    ///  Paragraph Alignment
    #[xml(child = "w:jc")]
    pub justification: Option<Justification>,
    ///  Paragraph Text Flow Direction
    //#[xml(child = "w:textDirection")]
    //pub textDirection: Option<TextDirection>,
    ///  Vertical Character Alignment on Line
    //#[xml(child = "w:textAlignment")]
    //pub textAlignment: Option<TextAlignment>,
    ///  Allow Surrounding Paragraphs to Tight Wrap to Text Box Contents
    //#[xml(child = "w:textboxTightWrap")]
    //pub textboxTightWrap: Option<TextboxTightWrap>,
    ///  Associated Outline Level
    #[xml(child = "w:outlineLvl")]
    pub outline_lvl: Option<OutlineLvl>,
    ///  Associated HTML div ID
    #[xml(child = "w:divId")]
    pub div_id: Option<DivId>,
    ///  Paragraph Conditional Formatting
    #[xml(child = "w:cnfStyle")]
    pub cnf_style: Option<CnfStyle<'a>>,
    #[xml(child = "w:rPr")]
    pub r_pr: Option<super::CharacterProperty<'a>>,
    #[xml(child = "w:sectPr")]
    pub section_property: Option<SectionProperty<'a>>,
    //#[xml(child = "w:pPrChange")]
    //pub p_pr_change: Option<PPrChange>,
}

impl<'a> ParagraphProperty<'a> {
    __setter!(style_id: Option<ParagraphStyleId<'a>>);
    __setter!(justification: Option<Justification>);
    __setter!(border: Option<Borders<'a>>);
    __setter!(numbering: Option<NumberingProperty>);
    __setter!(spacing: Option<Spacing>);
    __setter!(indent: Option<Indent>);
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:pStyle")]
pub struct ParagraphStyleId<'a> {
    #[xml(attr = "w:val")]
    pub value: Cow<'a, str>,
}

impl<'a, T: Into<Cow<'a, str>>> From<T> for ParagraphStyleId<'a> {
    fn from(val: T) -> Self {
        ParagraphStyleId { value: val.into() }
    }
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:keepNext")]
pub struct KeepNext {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:keepLines")]
pub struct KeepLines {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:pageBreakBefore")]
pub struct PageBreakBefore {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:suppressLineNumbers")]
pub struct SuppressLineNumbers {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:suppressAutoHyphens")]
pub struct SuppressAutoHyphens {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:kinsoku")]
pub struct Kinsoku {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:wordWrap")]
pub struct WordWrap {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:overflowPunct")]
pub struct OverflowPunct {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:topLinePunct")]
pub struct TopLinePunct {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:autoSpaceDE")]
pub struct AutoSpaceDE {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "AutoSpaceDN")]
pub struct AutoSpaceDN {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:bidi")]
pub struct Bidi {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:adjustRightInd")]
pub struct AdjustRightInd {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:snapToGrid")]
pub struct SnapToGrid {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:contextualSpacing")]
pub struct ContextualSpacing {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:mirrorIndents")]
pub struct MirrorIndents {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:suppressOverlap")]
pub struct SuppressOverlap {
    #[xml(attr = "w:val")]
    pub value: Option<bool>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:outlineLvl")]
pub struct OutlineLvl {
    #[xml(attr = "w:val")]
    pub value: usize,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:divId")]
pub struct DivId {
    #[xml(attr = "w:val")]
    pub value: usize,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:cnfStyle")]
pub struct CnfStyle<'a> {
    #[xml(attr = "w:val")]
    pub value: Cow<'a, str>,
}

#[cfg(test)]
use crate::formatting::JustificationVal;

use super::SectionProperty;

__xml_test_suites!(
    ParagraphProperty,
    ParagraphProperty::default(),
    r#"<w:pPr/>"#,
    ParagraphProperty::default().style_id("id"),
    r#"<w:pPr><w:pStyle w:val="id"/></w:pPr>"#,
    ParagraphProperty::default().justification(JustificationVal::Start),
    r#"<w:pPr><w:jc w:val="start"/></w:pPr>"#,
    ParagraphProperty::default().border(Borders::default()),
    r#"<w:pPr><w:pBdr/></w:pPr>"#,
    ParagraphProperty::default().numbering(NumberingProperty::default()),
    r#"<w:pPr><w:numPr><w:numId w:val="0"/><w:ilvl w:val="0"/></w:numPr></w:pPr>"#,
);