-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.am
More file actions
1585 lines (1582 loc) · 67.9 KB
/
Makefile.am
File metadata and controls
1585 lines (1582 loc) · 67.9 KB
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AUTOMAKE_OPTIONS = foreign
lib_LTLIBRARIES = libpptx.la
libpptx_la_SOURCES = \
src/pptx-common.c \
src/pptx-st-cross-between.c \
src/pptx-st-constraint-type.c \
src/pptx-st-tlanimate-color-space.c \
src/pptx-st-path-fill-mode.c \
src/pptx-st-preset-material-type.c \
src/pptx-st-true-false.c \
src/pptx-st-built-in-unit.c \
src/pptx-st-transition-in-out-direction-type.c \
src/pptx-st-yalign.c \
src/pptx-st-text-horz-overflow-type.c \
src/pptx-st-auto-text-rotation.c \
src/pptx-st-alg-class.c \
src/pptx-st-lbl-algn.c \
src/pptx-st-continue-direction.c \
src/pptx-st-bend-point.c \
src/pptx-st-color-scheme-index.c \
src/pptx-st-resize-handles-str.c \
src/pptx-st-text-autonumber-scheme.c \
src/pptx-st-tick-mark.c \
src/pptx-st-iterate-type.c \
src/pptx-st-tlprevious-action-type.c \
src/pptx-st-tlpara-build-type.c \
src/pptx-st-pen-alignment.c \
src/pptx-st-text-tab-align-type.c \
src/pptx-st-shape.c \
src/pptx-st-size-represents.c \
src/pptx-st-radar-style.c \
src/pptx-st-text-strike-type.c \
src/pptx-st-photo-album-frame-shape.c \
src/pptx-st-tltime-node-master-relation.c \
src/pptx-st-tltime-node-preset-class-type.c \
src/pptx-st-print-what.c \
src/pptx-st-blend-mode.c \
src/pptx-st-web-color-type.c \
src/pptx-st-breakpoint.c \
src/pptx-st-crypt-prov.c \
src/pptx-st-font-collection-index.c \
src/pptx-st-bar-dir.c \
src/pptx-st-line-cap.c \
src/pptx-st-ax-pos.c \
src/pptx-st-effect-container-type.c \
src/pptx-st-secondary-child-alignment.c \
src/pptx-st-preset-line-dash-val.c \
src/pptx-st-tlbehavior-transform-type.c \
src/pptx-st-ole-object-follow-color-scheme.c \
src/pptx-st-constraint-relationship.c \
src/pptx-st-child-direction.c \
src/pptx-st-err-dir.c \
src/pptx-st-tltime-node-fill-type.c \
src/pptx-st-time-unit.c \
src/pptx-st-vertical-alignment.c \
src/pptx-st-connector-routing.c \
src/pptx-st-xalign.c \
src/pptx-st-conformance-class.c \
src/pptx-st-transition-side-direction-type.c \
src/pptx-st-pyramid-accent-text-margin.c \
src/pptx-st-child-alignment.c \
src/pptx-st-path-shade-type.c \
src/pptx-st-axis-type.c \
src/pptx-st-text-font-align-type.c \
src/pptx-st-element-type.c \
src/pptx-st-rotation-path.c \
src/pptx-st-pt-type.c \
src/pptx-st-light-rig-direction.c \
src/pptx-st-line-end-type.c \
src/pptx-st-pyramid-accent-position.c \
src/pptx-st-text-block-direction.c \
src/pptx-st-err-bar-type.c \
src/pptx-st-parameter-id.c \
src/pptx-st-system-color-val.c \
src/pptx-st-orientation.c \
src/pptx-st-dgm-build-step.c \
src/pptx-st-offset.c \
src/pptx-st-direction.c \
src/pptx-st-grow-direction.c \
src/pptx-st-child-order-type.c \
src/pptx-st-center-shape-mapping.c \
src/pptx-st-tlanimate-behavior-calc-mode.c \
src/pptx-st-flow-direction.c \
src/pptx-st-tlchart-subelement-type.c \
src/pptx-st-connector-point.c \
src/pptx-st-text-align-type.c \
src/pptx-st-fallback-dimension.c \
src/pptx-st-tltime-indefinite.c \
src/pptx-st-text-anchoring-type.c \
src/pptx-st-trendline-type.c \
src/pptx-st-animation-chart-only-build-type.c \
src/pptx-st-text-direction.c \
src/pptx-st-line-end-length.c \
src/pptx-st-text-underline-type.c \
src/pptx-st-layout-mode.c \
src/pptx-st-clr-app-method.c \
src/pptx-st-tlnext-action-type.c \
src/pptx-st-secondary-linear-direction.c \
src/pptx-st-tlanimate-motion-behavior-origin.c \
src/pptx-st-chart-build-step.c \
src/pptx-st-animation-build-type.c \
src/pptx-st-bevel-preset-type.c \
src/pptx-st-starting-element.c \
src/pptx-st-split-type.c \
src/pptx-st-alg-type.c \
src/pptx-st-text-anchor-horizontal.c \
src/pptx-st-linear-direction.c \
src/pptx-st-on-off1.c \
src/pptx-st-text-wrapping-type.c \
src/pptx-st-diagram-text-alignment.c \
src/pptx-st-hierarchy-alignment.c \
src/pptx-st-tlanimate-behavior-value-type.c \
src/pptx-st-picture-format.c \
src/pptx-st-web-screen-size.c \
src/pptx-st-layout-target.c \
src/pptx-st-black-white-mode.c \
src/pptx-st-preset-shadow-val.c \
src/pptx-st-tltrigger-runtime-node.c \
src/pptx-st-tick-lbl-pos.c \
src/pptx-st-tlanimate-effect-transition.c \
src/pptx-st-compound-line.c \
src/pptx-st-err-val-type.c \
src/pptx-st-tlanimate-motion-path-edit-mode.c \
src/pptx-st-cxn-type.c \
src/pptx-st-crosses.c \
src/pptx-st-bar-grouping.c \
src/pptx-st-tldiagram-build-type.c \
src/pptx-st-algorithm-type.c \
src/pptx-st-function-operator.c \
src/pptx-st-connector-dimension.c \
src/pptx-st-legend-pos.c \
src/pptx-st-scatter-style.c \
src/pptx-st-preset-pattern-val.c \
src/pptx-st-tlanimate-color-direction.c \
src/pptx-st-text-caps-type.c \
src/pptx-st-tlbehavior-additive-type.c \
src/pptx-st-variable-type.c \
src/pptx-st-text-anchor-vertical.c \
src/pptx-st-grouping.c \
src/pptx-st-hue-dir.c \
src/pptx-st-tltrigger-event.c \
src/pptx-st-true-false-blank.c \
src/pptx-st-tlbehavior-override-type.c \
src/pptx-st-blip-compression.c \
src/pptx-st-tlbehavior-accumulate-type.c \
src/pptx-st-animation-dgm-only-build-type.c \
src/pptx-st-node-vertical-alignment.c \
src/pptx-st-text-vertical-type.c \
src/pptx-st-transition-speed.c \
src/pptx-st-calendar-type.c \
src/pptx-st-marker-style.c \
src/pptx-st-hier-branch-style.c \
src/pptx-st-tlcommand-type.c \
src/pptx-st-photo-album-layout.c \
src/pptx-st-tltime-node-type.c \
src/pptx-st-dlbl-pos.c \
src/pptx-st-rect-alignment.c \
src/pptx-st-transition-corner-direction-type.c \
src/pptx-st-bool-operator.c \
src/pptx-st-text-shape-type.c \
src/pptx-st-output-shape-type.c \
src/pptx-st-of-pie-type.c \
src/pptx-st-tltime-node-restart-type.c \
src/pptx-st-page-setup-orientation.c \
src/pptx-st-view-type.c \
src/pptx-st-light-rig-type.c \
src/pptx-st-text-vert-overflow-type.c \
src/pptx-st-tile-flip-mode.c \
src/pptx-st-preset-color-val.c \
src/pptx-st-function-type.c \
src/pptx-st-shape-type.c \
src/pptx-st-splitter-bar-state.c \
src/pptx-st-tlole-chart-build-type.c \
src/pptx-st-disp-blanks-as.c \
src/pptx-st-placeholder-size.c \
src/pptx-st-anim-lvl-str.c \
src/pptx-st-on-off-style-type.c \
src/pptx-st-placeholder-type.c \
src/pptx-st-line-end-width.c \
src/pptx-st-node-horizontal-alignment.c \
src/pptx-st-preset-camera-type.c \
src/pptx-st-tltime-node-sync-type.c \
src/pptx-st-slide-layout-type.c \
src/pptx-st-pitch-family.c \
src/pptx-st-anim-one-str.c \
src/pptx-st-slide-size-type.c \
src/pptx-st-scheme-color-val.c \
src/pptx-st-diagram-horizontal-alignment.c \
src/pptx-st-print-color-mode.c \
src/pptx-st-arrowhead-style.c \
src/pptx-st-vertical-align-run.c \
src/pptx-ct-a-bubble-chart.c \
src/pptx-ct-p-ole-object-link.c \
src/pptx-ct-a-alpha-floor-effect.c \
src/pptx-ct-a-text-underline-fill-group-wrapper.c \
src/pptx-ct-a-gvml-shape.c \
src/pptx-ct-p-control-list.c \
src/pptx-ct-a-text-spacing.c \
src/pptx-ct-a-non-visual-group-drawing-shape-props.c \
src/pptx-ct-a-text-tab-stop-list.c \
src/pptx-ct-a-multi-lvl-str-data.c \
src/pptx-ct-p-tlshape-target-element.c \
src/pptx-ct-a-cell-3d.c \
src/pptx-ct-a-pie-ser.c \
src/pptx-ct-a-group-transform-2d.c \
src/pptx-ct-a-gvml-picture.c \
src/pptx-ct-a-themeable-line-style.c \
src/pptx-ct-a-ser-tx.c \
src/pptx-ct-dgm-sdname.c \
src/pptx-ct-a-table-properties.c \
src/pptx-ct-p-slide-id-list-entry.c \
src/pptx-ct-dgm-color-transform.c \
src/pptx-ct-a-rot-x.c \
src/pptx-ct-a-rot-y.c \
src/pptx-ct-a-path-2d.c \
src/pptx-ct-a-unsigned-int.c \
src/pptx-ct-p-connector.c \
src/pptx-ct-a-fill-properties.c \
src/pptx-ct-a-audio-cdtime.c \
src/pptx-ct-a-table-grid.c \
src/pptx-ct-a-alpha-outset-effect.c \
src/pptx-ct-a-srgb-color.c \
src/pptx-ct-p-custom-show-list.c \
src/pptx-ct-p-notes-master-id-list.c \
src/pptx-ct-a-lbl-algn.c \
src/pptx-ct-dgm-org-chart.c \
src/pptx-ct-p-outline-view-slide-entry.c \
src/pptx-ct-a-font-reference.c \
src/pptx-ct-a-legend-pos.c \
src/pptx-ct-a-scatter-ser.c \
src/pptx-ct-p-orientation-transition.c \
src/pptx-ct-p-slide-master-id-list.c \
src/pptx-ct-a-rel-id.c \
src/pptx-ct-a-skip.c \
src/pptx-ct-p-group-shape-non-visual.c \
src/pptx-ct-p-tltime-target-element.c \
src/pptx-ct-a-connection-site.c \
src/pptx-ct-a-tick-mark.c \
src/pptx-ct-p-tlby-rgb-color-transform.c \
src/pptx-ct-p-customer-data.c \
src/pptx-ct-p-extension-list.c \
src/pptx-ct-a-inverse-gamma-transform.c \
src/pptx-ct-a-no-fill-properties.c \
src/pptx-ct-a-path-2dlist.c \
src/pptx-ct-cdr-graphic-frame-non-visual.c \
src/pptx-ct-cdr-connector-non-visual.c \
src/pptx-ct-a-extension.c \
src/pptx-ct-p-tlcommon-media-node-data.c \
src/pptx-ct-a-tx.c \
src/pptx-ct-a-bar-3dchart.c \
src/pptx-ct-p-outline-view-slide-list.c \
src/pptx-ct-a-clipboard-style-sheet.c \
src/pptx-ct-a-color-mapping-override.c \
src/pptx-ct-p-comment.c \
src/pptx-ct-a-preset-text-shape.c \
src/pptx-ct-a-animation-chart-element.c \
src/pptx-ct-a-default-shape-definition.c \
src/pptx-ct-p-picture.c \
src/pptx-ct-p-tlmedia-node-video.c \
src/pptx-ct-p-handout-master-id-list-entry.c \
src/pptx-ct-a-positive-percentage.c \
src/pptx-ct-cdr-group-shape.c \
src/pptx-ct-p-transition-start-sound-action.c \
src/pptx-ct-p-handout-master.c \
src/pptx-ct-dgm-diagram-definition-header-lst.c \
src/pptx-ct-p-shape.c \
src/pptx-ct-a-print-settings.c \
src/pptx-ct-p-time-node-list.c \
src/pptx-ct-p-picture-non-visual.c \
src/pptx-ct-dgm-sdcategories.c \
src/pptx-ct-a-animation-dgm-element.c \
src/pptx-ct-p-normal-view-properties.c \
src/pptx-ct-a-effect-properties.c \
src/pptx-ct-p-connector-non-visual.c \
src/pptx-ct-a-text-paragraph.c \
src/pptx-ct-a-camera.c \
src/pptx-ct-a-gradient-stop.c \
src/pptx-ct-a-pivot-fmts.c \
src/pptx-ct-a-alpha-ceiling-effect.c \
src/pptx-ct-p-common-slide-data.c \
src/pptx-ct-a-blur-effect.c \
src/pptx-ct-p-slide-layout-id-list-entry.c \
src/pptx-ct-a-text-spacing-point.c \
src/pptx-ct-a-text-shape-autofit.c \
src/pptx-ct-a-connection.c \
src/pptx-ct-a-gvml-use-shape-rectangle.c \
src/pptx-ct-p-eight-direction-transition.c \
src/pptx-ct-p-web-properties.c \
src/pptx-ct-a-positive-fixed-percentage.c \
src/pptx-ct-dgm-rules.c \
src/pptx-ct-a-surface.c \
src/pptx-ct-a-depth-percent.c \
src/pptx-ct-p-tltext-target-element.c \
src/pptx-ct-p-comment-author-list.c \
src/pptx-ct-p-graphical-object-frame.c \
src/pptx-ct-a-dlbls.c \
src/pptx-ct-a-background-fill-style-list.c \
src/pptx-ct-p-tlby-animate-color-transform.c \
src/pptx-ct-a-color-scheme-list.c \
src/pptx-ct-a-non-visual-drawing-shape-props.c \
src/pptx-ct-dgm-constraints.c \
src/pptx-ct-a-alpha-replace-effect.c \
src/pptx-ct-p-guide.c \
src/pptx-ct-a-point-3d.c \
src/pptx-ct-a-adj-point-2d.c \
src/pptx-ct-a-gamma-transform.c \
src/pptx-ct-a-pivot-fmt.c \
src/pptx-ct-a-non-visual-connector-properties.c \
src/pptx-ct-dgm-algorithm.c \
src/pptx-ct-a-line-join-round.c \
src/pptx-ct-a-path-2dcubic-bezier-to.c \
src/pptx-ct-a-picture-options.c \
src/pptx-ct-a-quick-time-file.c \
src/pptx-ct-a-effect-reference.c \
src/pptx-ct-a-crosses.c \
src/pptx-ct-a-trendline.c \
src/pptx-ct-p-slide-timing.c \
src/pptx-ct-a-color-mapping.c \
src/pptx-ct-a-stretch-info-properties.c \
src/pptx-ct-dgm-style-label.c \
src/pptx-ct-a-table-cell-properties.c \
src/pptx-ct-a-boolean.c \
src/pptx-ct-a-blip.c \
src/pptx-ct-a-table-style-text-style.c \
src/pptx-ct-a-connection-site-list.c \
src/pptx-ct-a-effect-list.c \
src/pptx-ct-p-tags-data.c \
src/pptx-ct-a-gradient-stop-list.c \
src/pptx-ct-a-scheme-color.c \
src/pptx-ct-a-line-ser.c \
src/pptx-ct-a-percentage.c \
src/pptx-ct-a-text-normal-autofit.c \
src/pptx-ct-cdr-shape.c \
src/pptx-ct-a-base-styles.c \
src/pptx-ct-p-tliterate-interval-time.c \
src/pptx-ct-dgm-colors.c \
src/pptx-ct-a-legend.c \
src/pptx-ct-a-glow-effect.c \
src/pptx-ct-a-color-scheme-and-mapping.c \
src/pptx-ct-p-tlcommon-behavior-data.c \
src/pptx-ct-p-tag-list.c \
src/pptx-ct-a-gradient-fill-properties.c \
src/pptx-ct-a-style-matrix.c \
src/pptx-ct-a-content-part-locking.c \
src/pptx-ct-a-linear-shade-properties.c \
src/pptx-ct-a-text-no-bullet.c \
src/pptx-ct-a-page-setup.c \
src/pptx-ct-p-tlanimate-motion-behavior.c \
src/pptx-ct-a-scatter-chart.c \
src/pptx-ct-p-tltime-node-parallel.c \
src/pptx-ct-p-embedded-font-data-id.c \
src/pptx-ct-a-complement-transform.c \
src/pptx-ct-a-table-part-style.c \
src/pptx-ct-p-notes-slide.c \
src/pptx-ct-p-show-info-browse.c \
src/pptx-ct-cdr-rel-size-anchor.c \
src/pptx-ct-a-bar-dir.c \
src/pptx-ct-a-transform-2d.c \
src/pptx-ct-a-animation-element-choice.c \
src/pptx-ct-dgm-layout-variable-property-set.c \
src/pptx-ct-a-ratio.c \
src/pptx-ct-a-inverse-transform.c \
src/pptx-ct-a-style-matrix-reference.c \
src/pptx-ct-a-angle.c \
src/pptx-ct-p-ole-object-embed.c \
src/pptx-ct-a-system-color.c \
src/pptx-ct-a-gvml-group-shape.c \
src/pptx-ct-a-multi-lvl-str-ref.c \
src/pptx-ct-a-soft-edges-effect.c \
src/pptx-ct-a-disp-units.c \
src/pptx-ct-p-shape-non-visual.c \
src/pptx-ct-p-graphical-object-frame-non-visual.c \
src/pptx-ct-a-text-font.c \
src/pptx-ct-a-num-fmt.c \
src/pptx-ct-a-light-rig.c \
src/pptx-ct-a-doughnut-chart.c \
src/pptx-ct-a-group-fill-properties.c \
src/pptx-ct-a-geom-guide.c \
src/pptx-ct-a-period.c \
src/pptx-ct-a-color-change-effect.c \
src/pptx-ct-a-shape-style.c \
src/pptx-ct-a-gap-amount.c \
src/pptx-ct-a-line-style-list.c \
src/pptx-ct-dgm-description.c \
src/pptx-ct-p-show-info-kiosk.c \
src/pptx-ct-a-table-style.c \
src/pptx-ct-a-text-language-id.c \
src/pptx-ct-a-text-tab-stop.c \
src/pptx-ct-a-group-locking.c \
src/pptx-ct-a-table-col.c \
src/pptx-ct-a-audio-cd.c \
src/pptx-ct-dsp-drawing.c \
src/pptx-ct-p-custom-show.c \
src/pptx-ct-cdr-group-shape-non-visual.c \
src/pptx-ct-p-slide-relationship-list-entry.c \
src/pptx-ct-a-err-bar-type.c \
src/pptx-ct-a-hsleffect.c \
src/pptx-ct-a-cross-between.c \
src/pptx-ct-a-object-style-defaults.c \
src/pptx-ct-p-empty.c \
src/pptx-ct-a-scale-2d.c \
src/pptx-ct-p-kinsoku.c \
src/pptx-ct-p-tlbehavior-attribute-name-list.c \
src/pptx-ct-a-pivot-source.c \
src/pptx-ct-p-custom-show-id.c \
src/pptx-ct-a-shape-locking.c \
src/pptx-ct-dgm-categories.c \
src/pptx-ct-p-tlanimate-behavior.c \
src/pptx-ct-a-page-margins.c \
src/pptx-ct-p-slide-master-text-styles.c \
src/pptx-ct-a-alpha-bi-level-effect.c \
src/pptx-ct-a-layout-mode.c \
src/pptx-ct-p-slide-relationship-list.c \
src/pptx-ct-p-background-properties.c \
src/pptx-ct-dgm-anim-one.c \
src/pptx-ct-a-animation-dgm-build-properties.c \
src/pptx-ct-a-text-bullet-size-point.c \
src/pptx-ct-a-graphical-object-frame-locking.c \
src/pptx-ct-a-reflection-effect.c \
src/pptx-ct-a-gvml-graphic-frame-non-visual.c \
src/pptx-ct-a-ax-data-source.c \
src/pptx-ct-a-color-replace-effect.c \
src/pptx-ct-a-title.c \
src/pptx-ct-p-html-publish-properties.c \
src/pptx-ct-a-polar-adjust-handle.c \
src/pptx-ct-p-slide-id-list.c \
src/pptx-ct-dgm-cxn.c \
src/pptx-ct-a-text-field.c \
src/pptx-ct-p-tltime-node-exclusive.c \
src/pptx-ct-a-color.c \
src/pptx-ct-p-side-direction-transition.c \
src/pptx-ct-a-shape-properties.c \
src/pptx-ct-a-video-file.c \
src/pptx-ct-a-text-bullet-size-follow-text.c \
src/pptx-ct-a-luminance-effect.c \
src/pptx-ct-a-effect-style-item.c \
src/pptx-ct-a-text-line-break.c \
src/pptx-ct-cdr-abs-size-anchor.c \
src/pptx-ct-a-geom-guide-list.c \
src/pptx-ct-a-solid-color-fill-properties.c \
src/pptx-ct-a-thickness.c \
src/pptx-ct-p-optional-black-transition.c \
src/pptx-ct-p-comment-author.c \
src/pptx-ct-p-tlbuild-paragraph.c \
src/pptx-ct-dgm-cxn-list.c \
src/pptx-ct-a-dpt.c \
src/pptx-ct-a-outer-shadow-effect.c \
src/pptx-ct-dgm-color-transform-header-lst.c \
src/pptx-ct-p-slide-transition.c \
src/pptx-ct-a-grouping.c \
src/pptx-ct-p-tlsub-shape-id.c \
src/pptx-ct-a-graphical-object.c \
src/pptx-ct-a-font-collection.c \
src/pptx-ct-dgm-diagram-definition-header.c \
src/pptx-ct-p-tlanim-variant-string-val.c \
src/pptx-ct-a-preset-shadow-effect.c \
src/pptx-ct-a-val-ax.c \
src/pptx-ct-a-path-2darc-to.c \
src/pptx-ct-a-table-background-style.c \
src/pptx-ct-a-path-shade-properties.c \
src/pptx-ct-a-blip-fill-properties.c \
src/pptx-ct-a-text-spacing-percent.c \
src/pptx-ct-dgm-anim-lvl.c \
src/pptx-ct-a-picture-locking.c \
src/pptx-ct-p-tlanimate-color-behavior.c \
src/pptx-ct-a-graphical-object-data.c \
src/pptx-ct-p-outline-view-properties.c \
src/pptx-ct-p-photo-album.c \
src/pptx-ct-a-marker-size.c \
src/pptx-ct-a-supplemental-font.c \
src/pptx-ct-a-marker.c \
src/pptx-ct-a-picture-stack-unit.c \
src/pptx-ct-a-audio-file.c \
src/pptx-ct-a-xyadjust-handle.c \
src/pptx-ct-p-tlole-build-chart.c \
src/pptx-ct-cdr-graphic-frame.c \
src/pptx-ct-a-positive-fixed-angle.c \
src/pptx-ct-dgm-otherwise.c \
src/pptx-ct-dgm-ctstyle-label.c \
src/pptx-ct-a-blend-effect.c \
src/pptx-ct-a-text-char-bullet.c \
src/pptx-ct-a-regular-text-run.c \
src/pptx-ct-p-common-view-properties.c \
src/pptx-ct-a-text-bullet-typeface-follow-text.c \
src/pptx-ct-a-color-scheme.c \
src/pptx-ct-p-extension-list-modify.c \
src/pptx-ct-a-dlbl.c \
src/pptx-ct-p-extension.c \
src/pptx-ct-a-table-row.c \
src/pptx-ct-p-embedded-font-list-entry.c \
src/pptx-ct-a-transform-effect.c \
src/pptx-ct-a-bar-ser.c \
src/pptx-ct-p-common-slide-view-properties.c \
src/pptx-ct-a-style.c \
src/pptx-ct-cdr-picture-non-visual.c \
src/pptx-ct-p-tlset-behavior.c \
src/pptx-ct-a-chart-space.c \
src/pptx-ct-a-line-chart.c \
src/pptx-ct-a-fixed-percentage.c \
src/pptx-ct-a-custom-color.c \
src/pptx-ct-p-show-properties.c \
src/pptx-ct-p-modify-verifier.c \
src/pptx-ct-a-surface-3dchart.c \
src/pptx-ct-a-duotone-effect.c \
src/pptx-ct-p-in-out-transition.c \
src/pptx-ct-a-dash-stop.c \
src/pptx-ct-dgm-direction.c \
src/pptx-ct-p-notes-master-id-list-entry.c \
src/pptx-ct-a-color-mru.c \
src/pptx-ct-p-tltime-animate-value-list.c \
src/pptx-ct-a-embedded-wavaudio-file.c \
src/pptx-ct-a-non-visual-content-part-properties.c \
src/pptx-ct-a-sc-rgb-color.c \
src/pptx-ct-dgm-hier-branch-style.c \
src/pptx-ct-dgm-diagram-definition.c \
src/pptx-ct-dgm-sddescription.c \
src/pptx-ct-a-background-formatting.c \
src/pptx-ct-a-hsl-color.c \
src/pptx-ct-dgm-name.c \
src/pptx-ct-p-split-transition.c \
src/pptx-ct-p-presentation.c \
src/pptx-ct-cdr-marker.c \
src/pptx-ct-a-disp-units-lbl.c \
src/pptx-ct-a-lbl-offset.c \
src/pptx-ct-p-tlmedia-node-audio.c \
src/pptx-ct-dgm-bullet-enabled.c \
src/pptx-ct-dgm-pt-list.c \
src/pptx-ct-a-radar-chart.c \
src/pptx-ct-p-smart-tags.c \
src/pptx-ct-a-text-bullet-size-percent.c \
src/pptx-ct-a-line-3dchart.c \
src/pptx-ct-p-tltime-condition-list.c \
src/pptx-ct-a-table-cell.c \
src/pptx-ct-dgm-presentation-of.c \
src/pptx-ct-dgm-style-definition-header.c \
src/pptx-ct-a-non-visual-drawing-props.c \
src/pptx-ct-a-surface-ser.c \
src/pptx-ct-a-text-character-properties.c \
src/pptx-ct-a-surface-chart.c \
src/pptx-ct-a-gvml-group-shape-non-visual.c \
src/pptx-ct-a-text-underline-fill-follow-text.c \
src/pptx-ct-a-date-ax.c \
src/pptx-ct-a-table-style-cell-style.c \
src/pptx-ct-p-corner-direction-transition.c \
src/pptx-ct-a-str-data.c \
src/pptx-ct-p-tltime-node-sequence.c \
src/pptx-ct-a-text-underline-line-follow-text.c \
src/pptx-ct-p-print-properties.c \
src/pptx-ct-dgm-choose.c \
src/pptx-ct-a-bubble-ser.c \
src/pptx-ct-dgm-category.c \
src/pptx-ct-a-gvml-graphical-object-frame.c \
src/pptx-ct-p-tltime-condition.c \
src/pptx-ct-p-slide.c \
src/pptx-ct-a-second-pie-size.c \
src/pptx-ct-a-text-body.c \
src/pptx-ct-dgm-sdcategory.c \
src/pptx-ct-a-table-cell-border-style.c \
src/pptx-ct-a-path-2dquad-bezier-to.c \
src/pptx-ct-p-header-footer.c \
src/pptx-ct-p-group-shape.c \
src/pptx-ct-a-bar-grouping.c \
src/pptx-ct-p-view-properties.c \
src/pptx-ct-a-shape-3d.c \
src/pptx-ct-a-path-2dline-to.c \
src/pptx-ct-a-layout-target.c \
src/pptx-ct-a-up-down-bar.c \
src/pptx-ct-a-preset-color.c \
src/pptx-ct-a-geom-rect.c \
src/pptx-ct-p-notes-view-properties.c \
src/pptx-ct-a-marker-style.c \
src/pptx-ct-a-size-represents.c \
src/pptx-ct-dgm-ctcategory.c \
src/pptx-ct-a-str-val.c \
src/pptx-ct-cdr-connector.c \
src/pptx-ct-a-sphere-coords.c \
src/pptx-ct-dgm-ctcategories.c \
src/pptx-ct-a-extension-list.c \
src/pptx-ct-a-double.c \
src/pptx-ct-a-overlap.c \
src/pptx-ct-dgm-child-pref.c \
src/pptx-ct-p-tlpoint.c \
src/pptx-ct-p-slide-layout.c \
src/pptx-ct-a-empty-element.c \
src/pptx-ct-a-inner-shadow-effect.c \
src/pptx-ct-a-legend-entry.c \
src/pptx-ct-a-trendline-lbl.c \
src/pptx-ct-dgm-rel-ids.c \
src/pptx-ct-a-table-style-list.c \
src/pptx-ct-a-preset-geometry-2d.c \
src/pptx-ct-a-gvml-connector-non-visual.c \
src/pptx-ct-p-slide-sorter-view-properties.c \
src/pptx-ct-a-pattern-fill-properties.c \
src/pptx-ct-a-hpercent.c \
src/pptx-ct-a-cat-ax.c \
src/pptx-ct-a-num-data-source.c \
src/pptx-ct-dgm-data-model.c \
src/pptx-ct-a-animation-graphical-object-build-properties.c \
src/pptx-ct-p-tlgraphical-object-build.c \
src/pptx-ct-a-office-art-extension.c \
src/pptx-ct-a-tile-info-properties.c \
src/pptx-ct-a-lvl.c \
src/pptx-ct-a-path-2dclose.c \
src/pptx-ct-dgm-numeric-rule.c \
src/pptx-ct-a-gvml-text-shape.c \
src/pptx-ct-a-non-visual-graphic-frame-properties.c \
src/pptx-ct-dgm-constraint.c \
src/pptx-ct-dgm-elem-prop-set.c \
src/pptx-ct-a-band-fmt.c \
src/pptx-ct-p-tlbuild-diagram.c \
src/pptx-ct-dgm-child-max.c \
src/pptx-ct-a-pie-chart.c \
src/pptx-ct-p-slide-master.c \
src/pptx-ct-dsp-shape-non-visual.c \
src/pptx-ct-p-slide-master-id-list-entry.c \
src/pptx-ct-a-chart.c \
src/pptx-ct-a-manual-layout.c \
src/pptx-ct-dgm-layout-node.c \
src/pptx-ct-a-vector-3d.c \
src/pptx-ct-p-slide-size.c \
src/pptx-ct-a-fill-overlay-effect.c \
src/pptx-ct-a-backdrop.c \
src/pptx-ct-p-wheel-transition.c \
src/pptx-ct-a-axis-unit.c \
src/pptx-ct-a-log-base.c \
src/pptx-ct-p-normal-view-portion.c \
src/pptx-ct-a-radar-ser.c \
src/pptx-ct-a-scatter-style.c \
src/pptx-ct-a-bar-chart.c \
src/pptx-ct-a-non-visual-picture-properties.c \
src/pptx-ct-a-hyperlink.c \
src/pptx-ct-a-of-pie-chart.c \
src/pptx-ct-a-cust-split.c \
src/pptx-ct-a-built-in-unit.c \
src/pptx-ct-p-notes-text-view-properties.c \
src/pptx-ct-a-text-body-properties.c \
src/pptx-ct-a-area-chart.c \
src/pptx-ct-a-line-end-properties.c \
src/pptx-ct-a-up-down-bars.c \
src/pptx-ct-p-presentation-properties.c \
src/pptx-ct-a-line-properties.c \
src/pptx-ct-a-perspective.c \
src/pptx-ct-a-area-ser.c \
src/pptx-ct-p-application-non-visual-drawing-props.c \
src/pptx-ct-p-slide-sync-properties.c \
src/pptx-ct-p-tlanim-variant-float-val.c \
src/pptx-ct-a-tint-effect.c \
src/pptx-ct-a-font-scheme.c \
src/pptx-ct-p-tltrigger-time-node-id.c \
src/pptx-ct-a-text-list-style.c \
src/pptx-ct-dgm-style-definition.c \
src/pptx-ct-a-bubble-scale.c \
src/pptx-ct-a-preset-line-dash-properties.c \
src/pptx-ct-a-alpha-modulate-fixed-effect.c \
src/pptx-ct-a-split-type.c \
src/pptx-ct-a-text-paragraph-properties.c \
src/pptx-ct-p-placeholder.c \
src/pptx-ct-p-guide-list.c \
src/pptx-ct-a-text-autonumber-bullet.c \
src/pptx-ct-a-custom-geometry-2d.c \
src/pptx-ct-p-tlole-chart-target-element.c \
src/pptx-ct-cdr-shape-non-visual.c \
src/pptx-ct-p-tliterate-interval-percentage.c \
src/pptx-ct-p-tlanim-variant.c \
src/pptx-ct-a-err-dir.c \
src/pptx-ct-p-tlanim-variant-integer-val.c \
src/pptx-ct-p-tltime-animate-value.c \
src/pptx-ct-a-err-val-type.c \
src/pptx-ct-a-fill-style-list.c \
src/pptx-ct-dsp-group-shape.c \
src/pptx-ct-a-chart-lines.c \
src/pptx-ct-dsp-group-shape-non-visual.c \
src/pptx-ct-a-num-data.c \
src/pptx-ct-dgm-pt.c \
src/pptx-ct-dgm-sample-data.c \
src/pptx-ct-p-tltrigger-runtime-node.c \
src/pptx-ct-a-effect-container.c \
src/pptx-ct-a-office-style-sheet.c \
src/pptx-ct-a-adjust-handle-list.c \
src/pptx-ct-p-tlcommand-behavior.c \
src/pptx-ct-dgm-resize-handles.c \
src/pptx-ct-a-path-2dmove-to.c \
src/pptx-ct-a-grayscale-transform.c \
src/pptx-ct-a-whole-e2o-formatting.c \
src/pptx-ct-p-background.c \
src/pptx-ct-a-flat-text.c \
src/pptx-ct-dgm-shape.c \
src/pptx-ct-dgm-ctdescription.c \
src/pptx-ct-a-alpha-modulate-effect.c \
src/pptx-ct-a-line-join-bevel.c \
src/pptx-ct-a-relative-offset-effect.c \
src/pptx-ct-cdr-picture.c \
src/pptx-ct-p-embedded-font-list.c \
src/pptx-ct-a-bevel.c \
src/pptx-ct-a-err-bars.c \
src/pptx-ct-dgm-parameter.c \
src/pptx-ct-a-line-join-miter-properties.c \
src/pptx-ct-p-tliterate-data.c \
src/pptx-ct-a-dtable.c \
src/pptx-ct-a-tick-lbl-pos.c \
src/pptx-ct-a-order.c \
src/pptx-ct-a-shape.c \
src/pptx-ct-p-ole-object.c \
src/pptx-ct-a-time-unit.c \
src/pptx-ct-a-picture-non-visual.c \
src/pptx-ct-p-rel.c \
src/pptx-ct-p-notes-master.c \
src/pptx-ct-a-dash-stop-list.c \
src/pptx-ct-a-gvml-shape-non-visual.c \
src/pptx-ct-a-relative-rect.c \
src/pptx-ct-a-dlbl-pos.c \
src/pptx-ct-a-hole-size.c \
src/pptx-ct-p-tlanim-variant-boolean-val.c \
src/pptx-ct-a-trendline-type.c \
src/pptx-ct-p-customer-data-list.c \
src/pptx-ct-dgm-adj.c \
src/pptx-ct-a-connector-locking.c \
src/pptx-ct-a-text-blip-bullet.c \
src/pptx-ct-dgm-adj-lst.c \
src/pptx-ct-p-index-range.c \
src/pptx-ct-a-effect-style-list.c \
src/pptx-ct-a-header-footer.c \
src/pptx-ct-a-picture.c \
src/pptx-ct-dsp-data-model-ext-block.c \
src/pptx-ct-a-table.c \
src/pptx-ct-dsp-shape.c \
src/pptx-ct-a-view-3d.c \
src/pptx-ct-a-external-data.c \
src/pptx-ct-p-slide-view-properties.c \
src/pptx-ct-p-tlby-hsl-color-transform.c \
src/pptx-ct-p-tlanimate-rotation-behavior.c \
src/pptx-ct-dgm-style-definition-header-lst.c \
src/pptx-ct-a-first-slice-ang.c \
src/pptx-ct-p-handout-master-id-list.c \
src/pptx-ct-a-custom-color-list.c \
src/pptx-ct-a-scaling.c \
src/pptx-ct-a-positive-size-2d.c \
src/pptx-ct-p-tlanimate-effect-behavior.c \
src/pptx-ct-a-text-bullet-color-follow-text.c \
src/pptx-ct-a-num-ref.c \
src/pptx-ct-a-pie-3dchart.c \
src/pptx-ct-a-fill-effect.c \
src/pptx-ct-a-base-styles-override.c \
src/pptx-ct-a-plot-area.c \
src/pptx-ct-p-tlcommon-time-node-data.c \
src/pptx-ct-p-control.c \
src/pptx-ct-a-str-ref.c \
src/pptx-ct-a-num-val.c \
src/pptx-ct-a-layout.c \
src/pptx-ct-dgm-for-each.c \
src/pptx-ct-dgm-ctname.c \
src/pptx-ct-p-tltemplate.c \
src/pptx-ct-p-build-list.c \
src/pptx-ct-dgm-when.c \
src/pptx-ct-a-stock-chart.c \
src/pptx-ct-p-tlanimate-scale-behavior.c \
src/pptx-ct-a-band-fmts.c \
src/pptx-ct-a-protection.c \
src/pptx-ct-a-group-shape-properties.c \
src/pptx-ct-a-headers.c \
src/pptx-ct-a-disp-blanks-as.c \
src/pptx-ct-a-bi-level-effect.c \
src/pptx-ct-cdr-drawing.c \
src/pptx-ct-dgm-text-props.c \
src/pptx-ct-p-transition-sound-action.c \
src/pptx-ct-a-of-pie-type.c \
src/pptx-ct-a-text-no-autofit.c \
src/pptx-ct-a-picture-format.c \
src/pptx-ct-p-comment-list.c \
src/pptx-ct-a-radar-style.c \
src/pptx-ct-a-animation-chart-build-properties.c \
src/pptx-ct-a-gvml-picture-non-visual.c \
src/pptx-ct-a-ser-ax.c \
src/pptx-ct-a-ax-pos.c \
src/pptx-ct-p-string-tag.c \
src/pptx-ct-a-point-2d.c \
src/pptx-ct-a-office-art-extension-list.c \
src/pptx-ct-a-alpha-inverse-effect.c \
src/pptx-ct-a-orientation.c \
src/pptx-ct-p-slide-layout-id-list.c \
src/pptx-ct-a-gvml-connector.c \
src/pptx-ct-a-area-3dchart.c \
src/pptx-ct-a-scene-3d.c \
src/pptx-ct-a-grayscale-effect.c \
src/pptx-ct-dgm-color-transform-header.c \
src/pptx-ct-p-tltemplate-list.c \
src/pptx-any.c
publicincludedir = $(includedir)/pptx
privateincludedir = $(publicincludedir)/private
privateinclude_HEADERS = \
include/private/pptx-common.h \
include/private/pptx-st-cross-between.h \
include/private/pptx-st-constraint-type.h \
include/private/pptx-st-tlanimate-color-space.h \
include/private/pptx-st-path-fill-mode.h \
include/private/pptx-st-preset-material-type.h \
include/private/pptx-st-true-false.h \
include/private/pptx-st-built-in-unit.h \
include/private/pptx-st-transition-in-out-direction-type.h \
include/private/pptx-st-yalign.h \
include/private/pptx-st-text-horz-overflow-type.h \
include/private/pptx-st-auto-text-rotation.h \
include/private/pptx-st-alg-class.h \
include/private/pptx-st-lbl-algn.h \
include/private/pptx-st-continue-direction.h \
include/private/pptx-st-bend-point.h \
include/private/pptx-st-color-scheme-index.h \
include/private/pptx-st-resize-handles-str.h \
include/private/pptx-st-text-autonumber-scheme.h \
include/private/pptx-st-tick-mark.h \
include/private/pptx-st-iterate-type.h \
include/private/pptx-st-tlprevious-action-type.h \
include/private/pptx-st-tlpara-build-type.h \
include/private/pptx-st-pen-alignment.h \
include/private/pptx-st-text-tab-align-type.h \
include/private/pptx-st-shape.h \
include/private/pptx-st-size-represents.h \
include/private/pptx-st-radar-style.h \
include/private/pptx-st-text-strike-type.h \
include/private/pptx-st-photo-album-frame-shape.h \
include/private/pptx-st-tltime-node-master-relation.h \
include/private/pptx-st-tltime-node-preset-class-type.h \
include/private/pptx-st-print-what.h \
include/private/pptx-st-blend-mode.h \
include/private/pptx-st-web-color-type.h \
include/private/pptx-st-breakpoint.h \
include/private/pptx-st-crypt-prov.h \
include/private/pptx-st-font-collection-index.h \
include/private/pptx-st-bar-dir.h \
include/private/pptx-st-line-cap.h \
include/private/pptx-st-ax-pos.h \
include/private/pptx-st-effect-container-type.h \
include/private/pptx-st-secondary-child-alignment.h \
include/private/pptx-st-preset-line-dash-val.h \
include/private/pptx-st-tlbehavior-transform-type.h \
include/private/pptx-st-ole-object-follow-color-scheme.h \
include/private/pptx-st-constraint-relationship.h \
include/private/pptx-st-child-direction.h \
include/private/pptx-st-err-dir.h \
include/private/pptx-st-tltime-node-fill-type.h \
include/private/pptx-st-time-unit.h \
include/private/pptx-st-vertical-alignment.h \
include/private/pptx-st-connector-routing.h \
include/private/pptx-st-xalign.h \
include/private/pptx-st-conformance-class.h \
include/private/pptx-st-transition-side-direction-type.h \
include/private/pptx-st-pyramid-accent-text-margin.h \
include/private/pptx-st-child-alignment.h \
include/private/pptx-st-path-shade-type.h \
include/private/pptx-st-axis-type.h \
include/private/pptx-st-text-font-align-type.h \
include/private/pptx-st-element-type.h \
include/private/pptx-st-rotation-path.h \
include/private/pptx-st-pt-type.h \
include/private/pptx-st-light-rig-direction.h \
include/private/pptx-st-line-end-type.h \
include/private/pptx-st-pyramid-accent-position.h \
include/private/pptx-st-text-block-direction.h \
include/private/pptx-st-err-bar-type.h \
include/private/pptx-st-parameter-id.h \
include/private/pptx-st-system-color-val.h \
include/private/pptx-st-orientation.h \
include/private/pptx-st-dgm-build-step.h \
include/private/pptx-st-offset.h \
include/private/pptx-st-direction.h \
include/private/pptx-st-grow-direction.h \
include/private/pptx-st-child-order-type.h \
include/private/pptx-st-center-shape-mapping.h \
include/private/pptx-st-tlanimate-behavior-calc-mode.h \
include/private/pptx-st-flow-direction.h \
include/private/pptx-st-tlchart-subelement-type.h \
include/private/pptx-st-connector-point.h \
include/private/pptx-st-text-align-type.h \
include/private/pptx-st-fallback-dimension.h \
include/private/pptx-st-tltime-indefinite.h \
include/private/pptx-st-text-anchoring-type.h \
include/private/pptx-st-trendline-type.h \
include/private/pptx-st-animation-chart-only-build-type.h \
include/private/pptx-st-text-direction.h \
include/private/pptx-st-line-end-length.h \
include/private/pptx-st-text-underline-type.h \
include/private/pptx-st-layout-mode.h \
include/private/pptx-st-clr-app-method.h \
include/private/pptx-st-tlnext-action-type.h \
include/private/pptx-st-secondary-linear-direction.h \
include/private/pptx-st-tlanimate-motion-behavior-origin.h \
include/private/pptx-st-chart-build-step.h \
include/private/pptx-st-animation-build-type.h \
include/private/pptx-st-bevel-preset-type.h \
include/private/pptx-st-starting-element.h \
include/private/pptx-st-split-type.h \
include/private/pptx-st-alg-type.h \
include/private/pptx-st-text-anchor-horizontal.h \
include/private/pptx-st-linear-direction.h \
include/private/pptx-st-on-off1.h \
include/private/pptx-st-text-wrapping-type.h \
include/private/pptx-st-diagram-text-alignment.h \
include/private/pptx-st-hierarchy-alignment.h \
include/private/pptx-st-tlanimate-behavior-value-type.h \
include/private/pptx-st-picture-format.h \
include/private/pptx-st-web-screen-size.h \
include/private/pptx-st-layout-target.h \
include/private/pptx-st-black-white-mode.h \
include/private/pptx-st-preset-shadow-val.h \
include/private/pptx-st-tltrigger-runtime-node.h \
include/private/pptx-st-tick-lbl-pos.h \
include/private/pptx-st-tlanimate-effect-transition.h \
include/private/pptx-st-compound-line.h \
include/private/pptx-st-err-val-type.h \
include/private/pptx-st-tlanimate-motion-path-edit-mode.h \
include/private/pptx-st-cxn-type.h \
include/private/pptx-st-crosses.h \
include/private/pptx-st-bar-grouping.h \
include/private/pptx-st-tldiagram-build-type.h \
include/private/pptx-st-algorithm-type.h \
include/private/pptx-st-function-operator.h \
include/private/pptx-st-connector-dimension.h \
include/private/pptx-st-legend-pos.h \
include/private/pptx-st-scatter-style.h \
include/private/pptx-st-preset-pattern-val.h \
include/private/pptx-st-tlanimate-color-direction.h \
include/private/pptx-st-text-caps-type.h \
include/private/pptx-st-tlbehavior-additive-type.h \
include/private/pptx-st-variable-type.h \
include/private/pptx-st-text-anchor-vertical.h \
include/private/pptx-st-grouping.h \
include/private/pptx-st-hue-dir.h \
include/private/pptx-st-tltrigger-event.h \
include/private/pptx-st-true-false-blank.h \
include/private/pptx-st-tlbehavior-override-type.h \
include/private/pptx-st-blip-compression.h \
include/private/pptx-st-tlbehavior-accumulate-type.h \
include/private/pptx-st-animation-dgm-only-build-type.h \
include/private/pptx-st-node-vertical-alignment.h \
include/private/pptx-st-text-vertical-type.h \
include/private/pptx-st-transition-speed.h \
include/private/pptx-st-calendar-type.h \
include/private/pptx-st-marker-style.h \
include/private/pptx-st-hier-branch-style.h \
include/private/pptx-st-tlcommand-type.h \
include/private/pptx-st-photo-album-layout.h \
include/private/pptx-st-tltime-node-type.h \
include/private/pptx-st-dlbl-pos.h \
include/private/pptx-st-rect-alignment.h \
include/private/pptx-st-transition-corner-direction-type.h \
include/private/pptx-st-bool-operator.h \
include/private/pptx-st-text-shape-type.h \
include/private/pptx-st-output-shape-type.h \
include/private/pptx-st-of-pie-type.h \
include/private/pptx-st-tltime-node-restart-type.h \
include/private/pptx-st-page-setup-orientation.h \
include/private/pptx-st-view-type.h \
include/private/pptx-st-light-rig-type.h \
include/private/pptx-st-text-vert-overflow-type.h \
include/private/pptx-st-tile-flip-mode.h \
include/private/pptx-st-preset-color-val.h \
include/private/pptx-st-function-type.h \
include/private/pptx-st-shape-type.h \
include/private/pptx-st-splitter-bar-state.h \
include/private/pptx-st-tlole-chart-build-type.h \
include/private/pptx-st-disp-blanks-as.h \
include/private/pptx-st-placeholder-size.h \
include/private/pptx-st-anim-lvl-str.h \
include/private/pptx-st-on-off-style-type.h \
include/private/pptx-st-placeholder-type.h \
include/private/pptx-st-line-end-width.h \
include/private/pptx-st-node-horizontal-alignment.h \
include/private/pptx-st-preset-camera-type.h \
include/private/pptx-st-tltime-node-sync-type.h \
include/private/pptx-st-slide-layout-type.h \
include/private/pptx-st-pitch-family.h \
include/private/pptx-st-anim-one-str.h \
include/private/pptx-st-slide-size-type.h \
include/private/pptx-st-scheme-color-val.h \
include/private/pptx-st-diagram-horizontal-alignment.h \
include/private/pptx-st-print-color-mode.h \
include/private/pptx-st-arrowhead-style.h \
include/private/pptx-st-vertical-align-run.h \
include/private/pptx-ct-a-bubble-chart.h \
include/private/pptx-ct-p-ole-object-link.h \
include/private/pptx-ct-a-alpha-floor-effect.h \
include/private/pptx-ct-a-text-underline-fill-group-wrapper.h \
include/private/pptx-ct-a-gvml-shape.h \
include/private/pptx-ct-p-control-list.h \
include/private/pptx-ct-a-text-spacing.h \
include/private/pptx-ct-a-non-visual-group-drawing-shape-props.h \
include/private/pptx-ct-a-text-tab-stop-list.h \
include/private/pptx-ct-a-multi-lvl-str-data.h \
include/private/pptx-ct-p-tlshape-target-element.h \
include/private/pptx-ct-a-cell-3d.h \
include/private/pptx-ct-a-pie-ser.h \
include/private/pptx-ct-a-group-transform-2d.h \
include/private/pptx-ct-a-gvml-picture.h \
include/private/pptx-ct-a-themeable-line-style.h \
include/private/pptx-ct-a-ser-tx.h \
include/private/pptx-ct-dgm-sdname.h \
include/private/pptx-ct-a-table-properties.h \
include/private/pptx-ct-p-slide-id-list-entry.h \