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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
use hard_xml::{XmlRead, XmlWrite};
use std::borrow::Cow;

use crate::{
    __define_enum, __define_struct, __define_struct_vec, __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((10isize, 20isize));
/// ```
#[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<'a>>,
    ///  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<CustomTabStopSet>,
    ///  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 text_direction: Option<super::TextDirection>,
    ///  Vertical Character Alignment on Line
    #[xml(child = "w:textAlignment")]
    pub text_alignment: Option<super::TextAlignment>,
    ///  Allow Surrounding Paragraphs to Tight Wrap to Text Box Contents
    #[xml(child = "w:textboxTightWrap")]
    pub textbox_tight_wrap: Option<super::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<RevisionParagraphProperty<'a>>,
}

impl<'a> ParagraphProperty<'a> {
    __setter!(style_id: Option<ParagraphStyleId<'a>>);
    __setter!(justification: Option<Justification>);
    __setter!(border: Option<Borders<'a>>);
    __setter!(numbering: Option<NumberingProperty<'a>>);
    __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 = "w: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: isize,
}

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

#[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>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:pPrChange")]
pub struct RevisionParagraphProperty<'a> {
    #[xml(attr = "w:id")]
    pub id: isize,
    #[xml(attr = "w:author")]
    pub author: Cow<'a, str>,
    #[xml(attr = "w:date")]
    pub date: Option<Cow<'a, str>>,

    #[xml(child = "w:pPr")]
    pub previous_property: Option<PreviousParagraphProperty<'a>>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:pPr")]
pub struct PreviousParagraphProperty<'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<'a>>,
    ///  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<CustomTabStopSet>,
    ///  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 text_direction: Option<super::TextDirection>,
    ///  Vertical Character Alignment on Line
    #[xml(child = "w:textAlignment")]
    pub text_alignment: Option<super::TextAlignment>,
    ///  Allow Surrounding Paragraphs to Tight Wrap to Text Box Contents
    #[xml(child = "w:textboxTightWrap")]
    pub textbox_tight_wrap: Option<super::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>>,
}

__define_enum! {
    TabStopType  {
        Clear = "clear", // No Tab Stop
        Left = "left", // Left Tab
        Center = "center", // Centered Tab
        Right = "right", // Right Tab
        Decimal = "decimal", // Decimal Tab
        Bar = "bar", // Bar Tab
        Num = "num", // List Tab
    }
}

__define_enum! {
    TabLeaderCharacter {
        None = "none", // No tab stop leader
        Dot = "dot", // Dotted leader line
        Hyphen = "hyphen", // Dashed tab stop leader line
        Underscore = "underscore", // Solid leader line
        Heavy = "heavy", // Heavy solid leader line
        MiddleDot = "middleDot", // Middle dot leader line
    }
}

__define_struct! {
    ("w:tab", CustomTabStop) {
        "w:val", tab_stop_type, TabStopType
        "w:leader", leader, TabLeaderCharacter
        "w:pos", pos, isize
    }
}

__define_struct_vec! {
    ("w:tabs", CustomTabStopSet, CustomTabStopSetChoice) {} {
        "w:tab", CustomTabStop
    }
}

#[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:pPr>"#,
);