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
#![allow(unused_must_use)]

use std::borrow::Cow;

use derive_more::From;
use strong_xml::{XmlRead, XmlWrite};

use crate::__string_enum;

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:drawing")]
pub struct Drawing<'a> {
    /// comment
    #[xml(child = "wp:anchor")]
    pub anchor: Option<Anchor<'a>>,
    #[xml(child = "wp:inline")]
    pub inline: Option<Inline<'a>>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:anchor")]
pub struct Anchor<'a> {
    #[xml(attr = "distT")]
    pub dist_t: Option<isize>,
    #[xml(attr = "distB")]
    pub dist_b: Option<isize>,
    #[xml(attr = "distL")]
    pub dist_l: Option<isize>,
    #[xml(attr = "distR")]
    pub dist_r: Option<isize>,
    #[xml(attr = "simplePos")]
    pub simple_pos_attr: Option<isize>,
    #[xml(attr = "relativeHeight")]
    pub relative_height: Option<isize>,
    #[xml(attr = "behindDoc")]
    pub behind_doc: Option<bool>,
    #[xml(attr = "locked")]
    pub locked: Option<bool>,
    #[xml(attr = "layoutInCell")]
    pub layout_in_cell: Option<bool>,
    #[xml(attr = "allowOverlap")]
    pub allow_overlap: Option<bool>,

    #[xml(child = "wp:simplePos")]
    pub simple_pos: Option<SimplePos>,
    #[xml(child = "wp:positionH")]
    pub position_horizontal: Option<PositionHorizontal>,
    #[xml(child = "wp:positionV")]
    pub position_vertical: Option<PositionVertical>,
    #[xml(child = "wp:extent")]
    pub extent: Option<Extent>,
    #[xml(
        child = "wp:wrapNone",
        child = "wp:wrapSquare",
        child = "wp:wrapTight",
        child = "wp:wrapThrough",
        child = "wp:wrapTopAndBottom"
    )]
    pub wrap: Option<Wrap>,
    #[xml(child = "wp:docPr")]
    pub doc_property: DocPr<'a>,
    #[xml(child = "a:graphic")]
    pub graphic: Option<Graphic<'a>>,
}

#[derive(Debug, From, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
pub enum Wrap {
    #[xml(tag = "wp:wrapNone")]
    None(WrapNone),
    #[xml(tag = "wp:wrapSquare")]
    Square(WrapSquare),
    #[xml(tag = "wp:wrapTight")]
    Tight(WrapTight),
    #[xml(tag = "wp:wrapThrough")]
    Through(WrapThrough),
    #[xml(tag = "wp:wrapTopAndBottom")]
    TopAndBottom(WrapTopAndBottom),
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:wrapNone")]
pub struct WrapNone {}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:wrapSquare")]
pub struct WrapSquare {}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:wrapTight")]
pub struct WrapTight {
    #[xml(attr = "wrapText")]
    pub wrap_text: WrapTextType,
    #[xml(child = "wp:wrapPolygon")]
    pub wrap_polygon: WrapPolygon,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:wrapPolygon")]
pub struct WrapPolygon {
    #[xml(attr = "edited")]
    pub edited: Option<bool>,
    #[xml(child = "wp:start")]
    pub start: WrapPolygonStart,
    #[xml(child = "wp:lineTo")]
    pub lineto: Vec<WrapPolygonLineTo>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:start")]
pub struct WrapPolygonStart {
    #[xml(attr = "x")]
    pub x: Option<isize>,
    #[xml(attr = "y")]
    pub y: Option<isize>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:lineTo")]
pub struct WrapPolygonLineTo {
    #[xml(attr = "x")]
    pub x: Option<isize>,
    #[xml(attr = "y")]
    pub y: Option<isize>,
}

#[derive(Debug, Clone, Default)]
#[cfg_attr(test, derive(PartialEq))]
pub enum WrapTextType {
    #[default]
    Both,
}

__string_enum! {
    WrapTextType {
    Both = "bothSides",
}}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:wrapThrough")]
pub struct WrapThrough {}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:wrapTopAndBottom")]
pub struct WrapTopAndBottom {}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:positionH")]
pub struct PositionHorizontal {
    #[xml(attr = "relativeFrom")]
    pub relative_from: Option<RelativeFrom>,
    #[xml(flatten_text = "wp:posOffset")]
    pub pos_offset: Option<isize>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:positionV")]
pub struct PositionVertical {
    #[xml(attr = "relativeFrom")]
    pub relative_from: Option<RelativeFrom>,
    #[xml(flatten_text = "wp:posOffset")]
    pub pos_offset: Option<isize>,
}

/// Specifies the break type of a break
///
/// The default value is TextWrapping.
#[derive(Debug, Clone)]
#[cfg_attr(test, derive(PartialEq))]
pub enum RelativeFrom {
    /// Text restarts on the next column.
    Column,
    /// Text restarts on the next page.
    Paragraph,
    /// Text restarts on the next line.
    Row,
}

__string_enum! {
    RelativeFrom {
        Column = "column",
        Row = "row",
        Paragraph = "paragraph",
    }
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:inline")]
pub struct Inline<'a> {
    #[xml(attr = "distT")]
    pub dist_t: Option<isize>,
    #[xml(attr = "distB")]
    pub dist_b: Option<isize>,
    #[xml(attr = "distL")]
    pub dist_l: Option<isize>,
    #[xml(attr = "distR")]
    pub dist_r: Option<isize>,
    #[xml(attr = "simplePossimplePos")]
    pub simple_pos_attr: Option<isize>,
    #[xml(attr = "relativeHeight")]
    pub relative_height: Option<isize>,
    #[xml(attr = "behindDoc")]
    pub behind_doc: Option<bool>,
    #[xml(attr = "locked")]
    pub locked: Option<bool>,
    #[xml(attr = "layoutInCell")]
    pub layout_in_cell: Option<bool>,
    #[xml(attr = "allowOverlap")]
    pub allow_overlap: Option<bool>,

    #[xml(child = "wp:simplePos")]
    pub simple_pos: Option<SimplePos>,
    #[xml(child = "wp:positionH")]
    pub position_horizontal: Option<PositionHorizontal>,
    #[xml(child = "wp:positionV")]
    pub position_vertical: Option<PositionVertical>,
    #[xml(child = "wp:extent")]
    pub extent: Option<Extent>,
    #[xml(child = "wp:docPr")]
    pub doc_property: DocPr<'a>,
    #[xml(child = "a:graphic")]
    pub graphic: Option<Graphic<'a>>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:docPr")]
pub struct DocPr<'a> {
    #[xml(attr = "id")]
    pub id: Option<isize>,
    #[xml(attr = "name")]
    pub name: Option<Cow<'a, str>>,
    #[xml(attr = "descr")]
    pub descr: Option<Cow<'a, str>>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:graphic")]
pub struct Graphic<'a> {
    #[xml(default, attr = "xmlns:a")]
    pub a: Cow<'a, str>,
    #[xml(default, child = "a:graphicData")]
    pub data: GraphicData<'a>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:graphicData")]
pub struct GraphicData<'a> {
    #[xml(default, attr = "uri")]
    pub uri: Cow<'a, str>,
    #[xml(child = "pic:pic")]
    pub pic: Picture<'a>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "pic:pic")]
pub struct Picture<'a> {
    #[xml(default, attr = "xmlns:pic")]
    pub a: Cow<'a, str>,
    #[xml(child = "pic:nvPicPr")]
    pub nv_pic_pr: NvPicPr<'a>,
    #[xml(child = "pic:blipFill")]
    pub fill: BlipFill<'a>,
    #[xml(child = "pic:spPr")]
    pub sp_pr: SpPr<'a>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "pic:spPr")]
pub struct SpPr<'a> {
    #[xml(child = "a:xfrm")]
    pub xfrm: Option<Xfrm>,
    #[xml(child = "a:prstGeom")]
    pub prst_geom: Option<PrstGeom<'a>>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:prstGeom")]
pub struct PrstGeom<'a> {
    #[xml(attr = "prst")]
    pub prst: Option<Cow<'a, str>>,
    #[xml(child = "a:avLst")]
    pub av_lst: Option<AvList>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:avLst")]
pub struct AvList {}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:xfrm")]
pub struct Xfrm {
    #[xml(child = "a:off")]
    pub offset: Option<Offset>,
    #[xml(child = "a:ext")]
    pub ext: Option<Ext>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:ext")]
pub struct Ext {
    #[xml(attr = "cx")]
    pub cx: Option<isize>,
    #[xml(attr = "cy")]
    pub cy: Option<isize>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:off")]
pub struct Offset {
    #[xml(attr = "x")]
    pub x: Option<isize>,
    #[xml(attr = "y")]
    pub y: Option<isize>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:simplePos")]
pub struct SimplePos {
    #[xml(attr = "x")]
    pub x: Option<isize>,
    #[xml(attr = "y")]
    pub y: Option<isize>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "pic:nvPicPr")]
pub struct NvPicPr<'a> {
    #[xml(child = "pic:cNvPr")]
    pub c_nv_pr: Option<CNvPr<'a>>,
    #[xml(child = "pic:cNvPicPr")]
    pub c_nv_pic_pr: Option<CNvPicPr>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "pic:cNvPr")]
pub struct CNvPr<'a> {
    #[xml(attr = "id")]
    pub id: Option<isize>,
    #[xml(attr = "name")]
    pub name: Option<Cow<'a, str>>,
    #[xml(attr = "descr")]
    pub descr: Option<Cow<'a, str>>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "pic:cNvPicPr")]
pub struct CNvPicPr {}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "pic:blipFill")]
pub struct BlipFill<'a> {
    #[xml(default, child = "a:blip")]
    pub blip: Blip<'a>,
    #[xml(child = "a:stretch")]
    pub stretch: Option<Stretch>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:blip")]
pub struct Blip<'a> {
    #[xml(default, attr = "r:embed")]
    pub embed: Cow<'a, str>,
    #[xml(default, attr = "cstate")]
    pub cstate: Option<Cow<'a, str>>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:stretch")]
pub struct Stretch {
    #[xml(child = "a:fillRect")]
    pub fill_rect: Option<FillRect>,
}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "a:fillRect")]
pub struct FillRect {}

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "wp:extent")]
pub struct Extent {
    #[xml(default, attr = "cx")]
    pub cx: u64,

    #[xml(default, attr = "cy")]
    pub cy: u64,
}