summaryrefslogtreecommitdiff
path: root/officecfg/registry/schema/org/openoffice/Office/Impress.xcs
blob: 5fe21cdfcc5eee288b39b3a0625a1674797ed755 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
<?xml version="1.0" encoding="UTF-8"?>
<!--
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 -->
<!DOCTYPE oor:component-schema SYSTEM "../../../../component-schema.dtd">
<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" oor:name="Impress" oor:package="org.openoffice.Office" xml:lang="en-US">
  <info>
    <desc>Contains configuration items related to the Impress application.</desc>
  </info>
  <import oor:component="org.openoffice.Office.Common"/>
  <templates>
    <group oor:name="MasterPageDescriptor">
      <info>
        <desc>Describes master pages that belong to the list of recently used master pages.</desc>
      </info>
      <prop oor:name="URL" oor:type="xs:string">
        <info>
          <desc>The URL of the template document that contains the master page.</desc>
        </info>
      </prop>
      <prop oor:name="Name" oor:type="xs:string">
        <info>
          <desc>The internal name of the master page.</desc>
        </info>
      </prop>
    </group>
    <group oor:name="Resource">
      <info>
        <desc>A factory that can create one more resources for the multi pane framework.</desc>
      </info>
      <prop oor:name="URL" oor:type="xs:string">
        <info>
          <desc>URL of a multi pane framework resource.</desc>
        </info>
      </prop>
    </group>
    <group oor:name="ResourceFactory">
      <info>
        <desc>A factory that can create one more resources for the multi pane framework.</desc>
      </info>
      <prop oor:name="ServiceName" oor:type="xs:string">
        <info>
          <desc>
            The service name of the factory.  This service is not the factory itself.
            It is expected to create and register a set of factories when an instance of
            the service is created.
          </desc>
        </info>
      </prop>
      <set oor:name="ResourceList" oor:node-type="Resource">
        <info>
          <desc>List of URLs of the resources that are created by the factory.</desc>
        </info>
      </set>
    </group>
    <group oor:name="StartupService">
      <info>
        <desc>
          A service that is instantiated when a framework is initialized for a
          Draw or Impress document.
        </desc>
      </info>
      <prop oor:name="ServiceName" oor:type="xs:string">
        <info>
          <desc>The name of the startup service.</desc>
        </info>
      </prop>
    </group>
    <group oor:name="AuthorisedRemote">
      <info>
        <desc>
          A Remote Control Device that has been authorised for connection.
        </desc>
      </info>
      <prop oor:name="PIN" oor:type="xs:string">
        <info>
          <desc>The PIN used by the device for authentication.</desc>
        </info>
      </prop>
    </group>
  </templates>
  <component>
    <group oor:name="Layout">
      <info>
        <desc>Contains general properties of the graphical object representation.</desc>
      </info>
      <group oor:name="Display">
        <info>
          <desc>Contains general properties of the graphical object representation of screen displays.</desc>
        </info>
        <prop oor:name="Ruler" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
          <info>
            <desc>Indicates whether to show the rulers at the left and at the top of the working area.</desc>
            <label>Rulers visible</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Helpline" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
          <info>
            <desc>Indicates whether to show help-lines that can be created by dragging them from the rulers.</desc>
            <label>Helplines visible</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Guide" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
          <info>
            <desc>Indicates whether to show help-lines when moving an object.</desc>
            <label>Helplines While Moving</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Bezier" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
          <info>
            <desc>Indicates whether to show all control points in the Bezier curve editor.</desc>
            <label>All control points in Bezier editor</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Contour" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Layout - [Section] Display -->
          <info>
            <desc>Indicates whether to show the outline of all moved objects when moving more then one object at the same time.</desc>
            <label>Contour of each individual object</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Other">
        <info>
          <desc>Specifies other layout options that do not fit into any other group.</desc>
          <label>Other Layout Options</label>
        </info>
        <group oor:name="TabStop">
          <!-- OldPath: Impress/Layout -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Layout - [Section] Tab stops -->
          <!-- Notice: Default-Nonmetric Value: 1270 1/100 mm-->
          <info>
            <desc>Specifies the distance between adjacent tab stops with regard to whether the metric or the non-metric system is currently selected.</desc>
            <label>Tab stops</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Specifies the distance between adjacent tab stops in 1/100 mm when the metric system is selected.</desc>
              <label/>
            </info>
            <value>1250</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Specifies the distance between adjacent tab stops in 1/100 mm when the non-metric system is selected.</desc>
              <label/>
            </info>
            <value>1270</value>
          </prop>
        </group>
        <group oor:name="MeasureUnit">
          <!-- OldPath: Impress/Layout -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation- Layout - [Section] Meas. units -->
          <info>
            <desc>Specifies the measurement unit to be used with respect to whether the metric or the non-metric system is selected.</desc>
            <label>Measurement unit</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Specifies the measurement unit to be used when the metric system is selected.</desc>
              <label>Measurement unit</label>
            </info>
            <constraints>
              <enumeration oor:value="1">
                <info>
                  <desc>Millimeter</desc>
                </info>
              </enumeration>
              <enumeration oor:value="2">
                <info>
                  <desc>Centimeter</desc>
                </info>
              </enumeration>
              <enumeration oor:value="6">
                <info>
                  <desc>Point</desc>
                </info>
              </enumeration>
              <enumeration oor:value="7">
                <info>
                  <desc>Pica</desc>
                </info>
              </enumeration>
              <enumeration oor:value="8">
                <info>
                  <desc>Inch</desc>
                </info>
              </enumeration>
            </constraints>
            <value>2</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Specifies the measurement unit to be used when the non-metric system is selected.</desc>
              <label>Measurement unit</label>
            </info>
            <constraints>
              <enumeration oor:value="1">
                <info>
                  <desc>Millimeter</desc>
                </info>
              </enumeration>
              <enumeration oor:value="2">
                <info>
                  <desc>Centimeter</desc>
                </info>
              </enumeration>
              <enumeration oor:value="6">
                <info>
                  <desc>Point</desc>
                </info>
              </enumeration>
              <enumeration oor:value="7">
                <info>
                  <desc>Pica</desc>
                </info>
              </enumeration>
              <enumeration oor:value="8">
                <info>
                  <desc>Inch</desc>
                </info>
              </enumeration>
            </constraints>
            <value>8</value>
          </prop>
        </group>
      </group>
    </group>
    <group oor:name="Content">
      <info>
        <desc>Contains content related configuration items.</desc>
      </info>
      <group oor:name="Display">
        <info>
          <desc>Contains configuration items related to the display of Impress documents.</desc>
        </info>
        <prop oor:name="PicturePlaceholder" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to show only the bounding box of graphic-objects like bitmaps and drawings.</desc>
            <label>Picture placeholders</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="ContourMode" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to show only outlines of objects such as filled rectangles and filled ellipses.</desc>
            <label>Contour mode</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="TextPlaceholder" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to show only a placeholder for text in graphical objects.</desc>
            <label>Text placeholders</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="LineContour" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to show only hairlines instead of the true line styles.</desc>
            <label>Line contour only</label>
          </info>
          <value>false</value>
        </prop>
      </group>
    </group>
    <group oor:name="Misc">
      <info>
        <desc>Contains a collection of configuration items for the Impress application that do not fit into another category.</desc>
      </info>
      <prop oor:name="BackgroundCache" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Presentation  Other  [Section] Other -->
        <info>
          <desc>Indicates whether to store master pages in a cache to speed up drawing.</desc>
          <label>Use background cache</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="CopyWhileMoving" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Presentation  Other  [Section] Other -->
        <info>
          <desc>Indicates whether moving while holding the Control key makes a copy of the moved object.</desc>
          <label>Copy while moving</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="ObjectMoveable" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Presentation  Other  [Section] Other -->
        <info>
          <desc>Indicates whether objects can still be moved while in rotating mode.</desc>
          <label>Objects always moveable</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="NoDistort" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Presentation  Other  [Section] Other -->
        <info>
          <desc>Indicates whether objects that are placed on a circle keep their original form, i.e. may be moved and rotated but not resized or otherwise distorted.</desc>
          <label>Don't distort objects in curve</label>
        </info>
        <value>false</value>
      </prop>
      <prop oor:name="DclickTextedit" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: soffice.cfg -->
        <!-- UIHints: Option Bar -->
        <info>
          <desc>Indicates whether a double-click on a text object activates the edit mode.</desc>
          <label>Double-Click Text to Edit</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="RotateClick" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: soffice.cfg -->
        <!-- UIHints: Option Bar -->
        <info>
          <desc>Indicates whether a double-click on an object activates the rotation mode.</desc>
          <label>Rotation Mode after clicking object</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="Preview" oor:type="xs:double" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: soffice.cfg -->
        <!-- UIHints: Menu: view - preview mode -->
        <info>
          <desc>Specifies the color quality of the preview: 0 - Color, 868 - Grayscale, 5381 - Black/White.</desc>
          <label>Preview-Mode</label>
        </info>
        <constraints>
          <enumeration oor:value="0">
            <info>
              <desc>Color</desc>
            </info>
          </enumeration>
          <enumeration oor:value="868">
            <info>
              <desc>Grayscale</desc>
            </info>
          </enumeration>
          <enumeration oor:value="5381">
            <info>
              <desc>Black/White</desc>
            </info>
          </enumeration>
        </constraints>
        <value>0</value>
      </prop>
      <prop oor:name="ShowComments" oor:type="xs:boolean" oor:nillable="false">
        <info>
          <desc>Indicates whether to show comments (true) or hide them (false).</desc>
          <label>Show Comments</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="ModifyWithAttributes" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Impress/Other -->
        <!-- OldLocation: soffice.cfg -->
        <!-- UIHints: Optionbar -->
        <info>
          <desc>Indicates whether the object creation and modification will be visualized using the full object attribute set or wireframe.</desc>
          <label>Modify with attributes</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="ShowUndoDeleteWarning" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: UNDO stack delete warning dialog -->
        <info>
          <desc>Indicates whether the warning dialog appears when setting a new standard page layout.</desc>
          <label>Show Undo-Stack Delete Warning</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="SlideshowRespectZOrder" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: Slideshow Z order for animations -->
        <info>
          <desc>Indicates whether the slideshow should respect shape z-order while animating shapes. Disabling this can improve slideshow performance</desc>
          <label>Enable shape z-order during slideshow animations</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="TransitionFiles" oor:type="oor:string-list" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: List of files containing transition effects -->
        <info>
          <desc>
            Contains a list of odf files, that define
            slideshow transitions. Values are put through
            macro expansion, so, vnd.sun.star.expand prefix
            is allowed.
          </desc>
          <label>List of files containing transition effects</label>
        </info>
        <value oor:separator=";">vnd.sun.star.expand:$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/config/soffice.cfg/simpress/transitions.xml;vnd.sun.star.expand:$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/config/soffice.cfg/simpress/transitions-ogl.xml</value>
      </prop>
      <prop oor:name="EffectFiles" oor:type="oor:string-list" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: List of files containing object effects -->
        <info>
          <desc>
            Contains a list of odf files, that define
            slideshow shape effects. Values are put through
            macro expansion, so, vnd.sun.star.expand prefix
            is allowed.
          </desc>
          <label>List of files containing object effects</label>
        </info>
        <value oor:separator=";">vnd.sun.star.expand:$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/config/soffice.cfg/simpress/effects.xml</value>
      </prop>
      <prop oor:name="LayoutListFiles" oor:type="oor:string-list" oor:nillable="false">
        <info>
          <desc>
            Contains a list of xml files defining the Impress slide
            "layouts". It contains properties of presentation objects,
            like their position, width, and height. Entries are run
            through macro expansion, so, vnd.sun.star.expand prefix is
            allowed.
          </desc>
          <label>List of files containing Impress slide layouts</label>
        </info>
        <value oor:separator=";">vnd.sun.star.expand:$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/config/soffice.cfg/simpress/layoutlist.xml</value>
      </prop>
      <prop oor:name="PresObjListFiles" oor:type="oor:string-list" oor:nillable="false">
        <info>
          <desc>
            Contains a list of xml files defining the presentation
            object used in the master page of "notes" and "handout".
            It contains properties of presentation objects,like
            their position, width, and height. Entries are run
            through macro expansion, so, vnd.sun.star.expand prefix is
            allowed.
          </desc>
          <label>List of files containing master presentation objects</label>
        </info>
        <value oor:separator=";">vnd.sun.star.expand:$BRAND_BASE_DIR/$BRAND_SHARE_SUBDIR/config/soffice.cfg/simpress/objectlist.xml</value>
      </prop>
      <prop oor:name="PreviewNewEffects" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: automatic preview checkbox in create new effect dialog -->
        <info>
          <desc>Indicates whether a selected effect in the custom animation create dialog should be previewed.</desc>
          <label>Automatic preview for new custom animation</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="PreviewChangedEffects" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: automatic preview in custom animation panel -->
        <info>
          <desc>Indicates whether changes in the custom animation panel should be previewed.</desc>
          <label>Automatic preview for custom animation panel</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="PreviewTransitions" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: automatic preview in slide transition panel -->
        <info>
          <desc>Indicates whether changes in the slide transition panel should be previewed.</desc>
          <label>Automatic preview for slide transition panel</label>
        </info>
        <value>true</value>
      </prop>
      <prop oor:name="Display" oor:type="xs:int" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: slide show settings display listbox -->
        <info>
          <desc>Offset number of the display used for full screen slide show mode;
	        -1   means all screens,
	         0   means default external screen,
	         N>0 means real-screen number + 1.</desc>
          <label>Display for full screen slide show mode</label>
        </info>
        <value>0</value>
      </prop>
      <prop oor:name="PenColor" oor:type="xs:int" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: slide show context menu -->
        <info>
          <desc>Color of the pen during slideshow.</desc>
          <label>Pen Color</label>
        </info>
        <value>16711680</value>
      </prop>
      <prop oor:name="PenWidth" oor:type="xs:double" oor:nillable="false">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: slide show context menu -->
        <info>
          <desc>Width of the pen during slideshow.</desc>
          <label>Pen Width</label>
        </info>
        <value>150</value>
      </prop>
      <group oor:name="TextObject">
        <info>
          <desc>Contains text editing related configuration items.</desc>
        </info>
        <prop oor:name="QuickEditing" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Other/Text_Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Other  [Section] Text objects -->
          <info>
            <desc>Indicates whether a simple click on a text object changes it to edit mode.</desc>
            <label>Allow quick editing</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Selectable" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Other/Text_Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Other  [Section] Text objects -->
          <info>
            <desc>Indicates whether a text frame can only be selected by clicking on the text or by clicking somewhere in the frame.</desc>
            <label>Only text area selectable</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="NewDoc">
        <info>
          <desc>Specifies configuration items governing the behavior when creating a new document or a new page.</desc>
          <label>Start with AutoPilots</label>
        </info>
        <prop oor:name="AutoPilot" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Other/New_Doc -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Other  [Section] New document -->
          <info>
            <desc>Indicates whether to show the autopilot when creating a new presentation.</desc>
            <label>Start with AutoPilots</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Layout" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Other/New_Doc -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Other  [Section] New document -->
          <info>
            <desc>Indicates whether to show the layout dialog when creating a new page.</desc>
            <label>Start with AutoPilots</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Start">
        <info>
          <desc>Specifies configuration items governing behavior when starting a presentation.</desc>
        </info>
        <prop oor:name="EnableSdremote" oor:type="xs:boolean" oor:nillable="false">
          <info>
            <desc>Indicates whether to enable the Impress remote controller.</desc>
            <label>Enable remote control</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="EnablePresenterScreen" oor:type="xs:boolean" oor:nillable="false">
           <info>
            <desc>Indicates whether to show Presenter Screen Console which shows next slide, notes etc.</desc>
            <label>Enable Presenter Screen</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Compatibility">
        <info>
          <desc>Contains the group of options that control the compatibility to other applications.</desc>
          <label>Compatibility options.</label>
        </info>
        <prop oor:name="AddBetween" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Writer/Other/Compatibility -->
          <!-- UIHints: Tools - Options - Presentation - Other - [Section] Compatibility -->
          <info>
            <desc>Specifies if spacing between paragraphs should be added to ensure compatibility to MS Word documents</desc>
            <label>Add spacing between paragraphs</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="PrinterIndependentLayout" oor:type="xs:short" oor:nillable="false">
          <!-- UIHints: Tools - Options - Presentation - Other - [Section] Compatibility -->
          <info>
            <desc>Indicates whether to use printer independent metrics for document formatting (2) or to use metrics derived from the current printer (1). Refer to com::sun::star::document::PrinterIndependentLayout for valid values.</desc>
            <label>Use printer independent metrics for document formatting</label>
          </info>
          <value>2</value>
        </prop>
      </group>
      <group oor:name="DefaultObjectSize">
        <!-- OldPath: -->
        <!-- OldLocation: -->
        <!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-Klick -->
        <info>
          <desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button.</desc>
          <label>Default Object Size</label>
        </info>
        <prop oor:name="Width" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>[UNIT=1/100 mm]</desc>
            <label/>
          </info>
          <value>8000</value>
        </prop>
        <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>[UNIT=1/100 mm]</desc>
            <label/>
          </info>
          <value>5000</value>
        </prop>
      </group>
      <set oor:name="AuthorisedRemotes" oor:node-type="AuthorisedRemote">
        <info>
          <desc>Contains a list of remote control devices that can connect without user confirmation.</desc>
        </info>
      </set>
    </group>
    <group oor:name="Snap">
      <info>
        <desc>Specifies how to force object positions and sizes to the snap grid or to align with other objects.</desc>
      </info>
      <group oor:name="Object">
        <info>
          <desc>Specifies how to force object positions and sizes to predefined locations in relation to other objects.</desc>
        </info>
        <prop oor:name="Grid" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Indicates whether to snap an object when moved to the next grid point.</desc>
            <label>Grid lines</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="SnapLine" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Indicates whether to snap at snap lines.</desc>
            <label>Snap lines</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="PageMargin" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Indicates whether the outline of an object is justified with adjacent page margins.</desc>
            <label>Page margins</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="ObjectFrame" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Indicates whether to justify the outline of an object to that of an adjacent object.</desc>
            <label>Object frame</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="ObjectPoint" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Indicates whether to snap corner points of adjacent objects.</desc>
            <label>Object points</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Range" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Specifies the maximal range in pixels along the coordinate axes at which snapping becomes active.</desc>
            <label>Snap range</label>
          </info>
          <constraints>
            <minInclusive oor:value="1">
              <info>
                <desc>Specifies that the minimum snap range is 1.</desc>
              </info>
            </minInclusive>
            <maxInclusive oor:value="50">
              <info>
                <desc>Specifies that the maximal snap range is 50.</desc>
              </info>
            </maxInclusive>
          </constraints>
          <value>5</value>
        </prop>
      </group>
      <group oor:name="Position">
        <info>
          <desc>Specifies constraints regarding the creation and modification of graphical objects.</desc>
        </info>
        <prop oor:name="CreatingMoving" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap position -->
          <info>
            <desc>Indicates whether to restrict the creation of objects to squares, circles, etc. and to retain the x/y ratio when resizing.</desc>
            <label>When creating or moving objects</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="ExtendEdges" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap position -->
          <info>
            <desc>Indicates whether to use the longer (true) or the shorter (false) of the two distances along the coordinates axes from the initial to the current position to determine a new square's edge length or a new circle's diameter.</desc>
            <label>Extend edges</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Rotating" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap position -->
          <info>
            <desc>Indicates whether to use snapping while rotating an object.</desc>
            <label>When rotating</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="RotatingValue" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap position -->
          <info>
            <desc>Specifies the rotation angle when snapping for rotation is enabled. [UNIT=Degree/100]</desc>
            <label>When rotating</label>
          </info>
          <constraints>
            <minInclusive oor:value="0">
              <info>
                <desc>Specifies that the minimum rotation angle is 0/100 degrees.</desc>
              </info>
            </minInclusive>
            <maxInclusive oor:value="18000">
              <info>
                <desc>Specifies that the maximum rotation angle is 18000/100 degrees.</desc>
              </info>
            </maxInclusive>
          </constraints>
          <value>1500</value>
        </prop>
        <prop oor:name="PointReduction" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: Impress/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Snap to Grid - [Section] Snap position -->
          <info>
            <desc>Specifies the maximum angle that you can move a line before it snaps into place in the point editor that connects two points [UNIT=Degree/100].</desc>
            <label>Point reduction</label>
          </info>
          <constraints>
            <minInclusive oor:value="100">
              <info>
                <desc>Specifies that the minimum angle is 100/100 degrees.</desc>
              </info>
            </minInclusive>
            <maxInclusive oor:value="9000">
              <info>
                <desc>Specifies that the maximum angle is 9000/100 degrees.</desc>
              </info>
            </maxInclusive>
          </constraints>
          <value>1500</value>
        </prop>
      </group>
    </group>
    <group oor:name="Grid">
      <info>
        <desc>Defines the handling and display of the snap grid.</desc>
      </info>
      <group oor:name="Option">
        <info>
          <desc>Specifies switches regarding use and display of the snap grid.</desc>
        </info>
        <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Grid/Options -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation Grid - [Section] Options -->
          <info>
            <desc>Indicates whether to force frames and drawing elements on grid points.</desc>
            <label>Snap to grid</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="VisibleGrid" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Grid/Options -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation Grid - [Section] Options -->
          <info>
            <desc>Indicates whether to show the grid.</desc>
            <label>Visible grid</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Grid/Options -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation Grid - [Section] Options -->
          <info>
            <desc>Indicates whether to synchronize the resolutions of x- and y-grids.</desc>
            <label>Synchronize axes</label>
          </info>
          <value>false</value>
        </prop>
      </group>
      <group oor:name="Resolution">
        <info>
          <desc>Specifies grid resolution.</desc>
        </info>
        <group oor:name="XAxis">
          <!-- OldPath: Impress/Grid/Resolution -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Grid - [Section] Grid -->
          <!-- Notice: Default-nonmetrical value: 1270 1/100 mm. -->
          <info>
            <desc>Defines the horizontal distance between adjacent grid points.</desc>
            <label>X Axis Resolution</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the horizontal distance between adjacent grid points in 1/100 mm, used when the metric system is active.</desc>
              <label/>
            </info>
            <value>2000</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the horizontal distance between adjacent grid points in 1/100 mm, used when the non-metric system is active.</desc>
              <label/>
            </info>
            <value>2540</value>
          </prop>
        </group>
        <group oor:name="YAxis">
          <!-- OldPath: Impress/Grid/Resolution -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Grid - [Section] Grid -->
          <!-- Notice: Default- nonmetrical value: 1270 1/100 mm. -->
          <info>
            <desc>Defines the vertical distance between adjacent grid points.</desc>
            <label>Y Axis Resolution</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the vertical distance between adjacent grid points in 1/100 mm, used when the metric system is active.</desc>
              <label/>
            </info>
            <value>2000</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the vertical distance between adjacent grid points in 1/100 mm, used when the non-metric system is active.</desc>
              <label/>
            </info>
            <value>2540</value>
          </prop>
        </group>
      </group>
      <group oor:name="Subdivision">
        <info>
          <desc>Specifies the subdivision of the grid.</desc>
        </info>
        <prop oor:name="XAxis" oor:type="xs:double" oor:nillable="false">
          <!-- OldPath: Impress/Grid/Subdivision -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Grid - [Section] Grid -->
          <!-- Notice: Default value for English Version only: 254 Points) -->
          <info>
            <desc>Specifies the number of points between two adjacent grid points on the X axis.</desc>
            <label>X Axis Subdivision</label>
          </info>
          <value>9</value>
        </prop>
        <prop oor:name="YAxis" oor:type="xs:double" oor:nillable="false">
          <!-- OldPath: Impress/Grid/Subdivision -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Grid - [Section] Grid -->
          <!-- Notice: Default value for English Version only: 254 Points) -->
          <info>
            <desc>Specifies the number of intervals between two adjacent grid points on the Y axis</desc>
            <label>Y Axis Subdivision</label>
          </info>
          <value>9</value>
        </prop>
      </group>
      <group oor:name="SnapGrid">
        <info>
          <desc>Contains the specifications of the snap grid.</desc>
        </info>
        <prop oor:name="Size" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Grid/Snap_Grid -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Grid - [Section] Snap grid -->
          <info>
            <desc>Indicates whether to synchronize grid and snap-grid.</desc>
            <label>Size to grid</label>
          </info>
          <value>true</value>
        </prop>
        <group oor:name="XAxis">
          <!-- OldPath: Impress/Grid/Snap_Grid -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Grid - [Section] Snap grid -->
          <!-- Notice: Default-nonmetrical value: 1270 1/100 mm. -->
          <info>
            <desc>Defines the horizontal distance between adjacent points of the snap grid.</desc>
            <label>X axis</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the horizontal distance between adjacent points of the snap grid in 1/100 mm, used when the metric system is selected.</desc>
              <label/>
            </info>
            <value>100</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the horizontal distance between adjacent points of the snap grid in 1/100 mm, used when the non-metric system is selected.</desc>
              <label/>
            </info>
            <value>1270</value>
          </prop>
        </group>
        <group oor:name="YAxis">
          <!-- OldPath: Impress/Grid/Snap_Grid -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Grid - [Section] Snap grid -->
          <!-- Notice: Default-Default-nonmetrical value: 1270 1/100 mm. -->
          <info>
            <desc>Defines the vertical distance between adjacent points of the snap grid.</desc>
            <label>Y axis</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the vertical distance between adjacent points of the snap grid in 1/100 mm, used when the metric system is selected.</desc>
              <label/>
            </info>
            <value>100</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Defines the vertical distance between adjacent points of the snap grid in 1/100 mm, used when the non-metric system is selected.</desc>
              <label/>
            </info>
            <value>1270</value>
          </prop>
        </group>
      </group>
    </group>
    <group oor:name="Print">
      <info>
        <desc>Defines options regarding the printing of Impress documents.</desc>
      </info>
      <group oor:name="Content">
        <info>
          <desc>Defines options regarding the printing of document content.</desc>
        </info>
        <prop oor:name="Presentation" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Contents -->
          <info>
            <desc>Indicates whether the presentation will be printed.</desc>
            <label>Presentation</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Note" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Contents -->
          <info>
            <desc>Indicates whether the notes will be printed.</desc>
            <label>Notes</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Handout" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Contents -->
          <info>
            <desc>Indicates whether the handouts will be printed.</desc>
            <label>Handouts</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Outline" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Contents -->
          <info>
            <desc>Indicates whether the outlines will be printed.</desc>
            <label>Outline</label>
          </info>
          <value>false</value>
        </prop>
      </group>
      <group oor:name="Page">
        <info>
          <desc>Specifies how and which pages will be printed.</desc>
        </info>
        <prop oor:name="PageSize" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Page options -->
          <info>
            <desc>Indicates whether to enlarge or shrink a document's page size while printing to fit the physical paper size.</desc>
            <label>Fit to page</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="PageTile" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Page options -->
          <info>
            <desc>Indicates whether to print the pages' titles at the top of every page.</desc>
            <label>Tile pages</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Booklet" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Page options -->
          <info>
            <desc>Indicates whether to print a document in the form of a brochure.</desc>
            <label>Brochure</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="BookletFront" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Page options -->
          <info>
            <desc>Indicates whether to print the front side pages of a brochure.</desc>
            <label>Front side</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="BookletBack" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Page options -->
          <info>
            <desc>Indicates whether to print the back side pages of a brochure.</desc>
            <label>Back side</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Other">
        <info>
          <desc>Specifies general printing related issues.</desc>
        </info>
        <prop oor:name="PageName" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Print -->
          <info>
            <desc>Indicates whether to print page names.</desc>
            <label>Page name</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Date" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Print -->
          <info>
            <desc>Indicates whether to print the current date at the top of every page.</desc>
            <label>Date</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Time" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Print -->
          <info>
            <desc>Indicates whether to print the current time at the top of every page.</desc>
            <label>Time</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="HiddenPage" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Print -->
          <info>
            <desc>Indicates whether to print hidden pages.</desc>
            <label>Hidden pages</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Quality" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: Impress/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print - [Section] Quality -->
          <info>
            <desc>Specifies the quality of the printed colors.</desc>
          </info>
          <constraints>
            <enumeration oor:value="0">
              <info>
                <desc>Color</desc>
              </info>
            </enumeration>
            <enumeration oor:value="1">
              <info>
                <desc>Grayscale</desc>
              </info>
            </enumeration>
            <enumeration oor:value="2">
              <info>
                <desc>Black/White</desc>
              </info>
            </enumeration>
          </constraints>
          <value>0</value>
        </prop>
        <prop oor:name="FromPrinterSetup" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Impress/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Presentation  Print  [Check box] From printer setup -->
          <info>
            <desc>Indicates whether to use the system settings of the printer to choose the paper tray.</desc>
            <label>From printer setup</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="HandoutHorizontal" oor:type="xs:boolean" oor:nillable="false">
          <!-- UIHints: File - Print - [Section] Print content - [Radio buttons] Horizontal(TRUE)/Vertical(FALSE) -->
          <info>
            <desc>Indicates whether the slide thumbnails on the printed handouts are ordered horizontal or vertical</desc>
            <label>Handout orientation</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="PagesPerHandout" oor:type="xs:int" oor:nillable="false">
          <!-- UIHints: File - Print - [Section] Print content - [ListBox] Slides per page -->
          <info>
            <desc>Specifies the number of slide thumbnails printed on each handout page.</desc>
            <label>Slides per page</label>
          </info>
          <constraints>
            <enumeration oor:value="1">
              <info>
                <desc>One slide</desc>
              </info>
            </enumeration>
            <enumeration oor:value="2">
              <info>
                <desc>Two slides</desc>
              </info>
            </enumeration>
            <enumeration oor:value="3">
              <info>
                <desc>Three slides, including lines for notes</desc>
              </info>
            </enumeration>
            <enumeration oor:value="4">
              <info>
                <desc>Four slides</desc>
              </info>
            </enumeration>
            <enumeration oor:value="6">
              <info>
                <desc>Six slides</desc>
              </info>
            </enumeration>
            <enumeration oor:value="9">
              <info>
                <desc>Nine slides</desc>
              </info>
            </enumeration>
          </constraints>
          <value>0</value>
        </prop>
      </group>
    </group>
    <group oor:name="Filter">
      <info>
        <desc>Contains the group of options that control the behavior of filters.</desc>
        <label>Filter Options</label>
      </info>
      <group oor:name="Import">
        <info>
          <desc>Contains the group of options that control the behavior of the import filters.</desc>
          <label>Import Filter</label>
        </info>
        <group oor:name="VBA">
          <info>
            <desc>Contains the group of options that control the behavior of the VBA filter.</desc>
            <label>VBA Filter</label>
          </info>
          <prop oor:name="Load" oor:type="xs:boolean" oor:nillable="false">
            <!-- OldPath: Filter/MS_Office/Basic/PowerPoint -->
            <!-- OldLocation: soffice.cfg -->
            <!-- UIHints: Tools  Options - Filter Settings  Microsoft Office  [Section] Microsoft PowerPoint 97/2000 -->
            <info>
              <desc>Converts VBA Basic into Office Basic as commands (True).</desc>
              <label>Load Basic Code to edit</label>
            </info>
            <value>true</value>
          </prop>
          <prop oor:name="Save" oor:type="xs:boolean" oor:nillable="false">
            <!-- OldPath: Filter/MS_Office/Basic/PowerPoint -->
            <!-- OldLocation: soffice.cfg -->
            <!-- UIHints: Tools  Options - Filter Settings  Microsoft Office  [Section] Microsoft PowerPoint 97/2000 -->
            <info>
              <desc>Holds original VBA storage for saving in the memory (True).</desc>
              <label>Save Original Basic Code again</label>
            </info>
            <value>true</value>
          </prop>
        </group>
      </group>
      <group oor:name="Export">
        <info>
          <desc>Exports related configuration items.</desc>
        </info>
        <prop oor:name="LastUsed" oor:type="xs:string">
          <!-- OldPath: STARIMPRESS -->
          <!-- OldLocation: soffice.ini -->
          <!-- UIHints: Set after export -->
          <info>
            <desc>Specifies the filter last used to export an Impress document.</desc>
          </info>
          <constraints>
            <enumeration oor:value="HTML">
              <info>
                <desc>HTML</desc>
              </info>
            </enumeration>
            <enumeration oor:value="BMP - MS Windows">
              <info>
                <desc>MS Windows bitmap</desc>
              </info>
            </enumeration>
            <enumeration oor:value="PNG - Portable Network Graphic">
              <info>
                <desc>Portable Network Graphic</desc>
              </info>
            </enumeration>
            <enumeration oor:value="EPS - Encapsulated PostScript">
              <info>
                <desc>Encapsulated PostScript</desc>
              </info>
            </enumeration>
            <enumeration oor:value="GIF - Graphic Interchange">
              <info>
                <desc>Graphic Interchange Format</desc>
              </info>
            </enumeration>
            <enumeration oor:value="JPG - JPEG">
              <info>
                <desc>JPEG</desc>
              </info>
            </enumeration>
            <enumeration oor:value="MET - OS/2 Metafile">
              <info>
                <desc>OS/2 Metafile</desc>
              </info>
            </enumeration>
            <enumeration oor:value="PCT - Mac Pict">
              <info>
                <desc>Mac Pict</desc>
              </info>
            </enumeration>
            <enumeration oor:value="PBM - Portable Bitmap">
              <info>
                <desc>Portable Bitmap</desc>
              </info>
            </enumeration>
            <enumeration oor:value="PGM - Portable Graymap">
              <info>
                <desc>Portable Graymap</desc>
              </info>
            </enumeration>
            <enumeration oor:value="PPM - Portable Pixelmap">
              <info>
                <desc>Portable Pixelmap</desc>
              </info>
            </enumeration>
            <enumeration oor:value="RAS - Sun Rasterfile">
              <info>
                <desc>Sun Rasterfile</desc>
              </info>
            </enumeration>
            <enumeration oor:value="SVM - StarView Metafile">
              <info>
                <desc>StarView Metafile</desc>
              </info>
            </enumeration>
            <enumeration oor:value="WMF - MS Windows Metafile">
              <info>
                <desc>MS Windows Metafile</desc>
              </info>
            </enumeration>
            <enumeration oor:value="XPM">
              <info>
                <desc>XPM</desc>
              </info>
            </enumeration>
          </constraints>
        </prop>
      </group>
    </group>
    <group oor:name="MultiPaneGUI">
      <info>
        <desc>Options that control the content and appearance of the multi pane GUI.</desc>
        <label>Multi Pane GUI Options</label>
      </info>
      <group oor:name="ToolPanel">
        <info>
          <desc>Options that control the tool panel.</desc>
          <label>Tool Panel Options</label>
        </info>
        <group oor:name="Visible">
          <info>
            <desc>Options that control the visibility of the ToolPanel.</desc>
            <label>ToolPanel Visibility</label>
          </info>
          <prop oor:name="ImpressView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the ToolPanel in the Impress view.</desc>
              <label>ToolPanel Visibility ImpressView</label>
            </info>
          </prop>
          <prop oor:name="OutlineView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the ToolPanel in the Outline view.</desc>
              <label>ToolPanel Visibility OutlineView</label>
            </info>
          </prop>
          <prop oor:name="NotesView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the ToolPanel in the Notes view.</desc>
              <label>ToolPanel Visibility NotesView</label>
            </info>
          </prop>
          <prop oor:name="HandoutView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the ToolPanel in the HandOut view.</desc>
              <label>ToolPanel Visibility HandOutView</label>
            </info>
          </prop>
          <prop oor:name="SlideSorterView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the ToolPanel in the SlideSorter view.</desc>
              <label>ToolPanel Visibility SlideSorterView</label>
            </info>
          </prop>
        </group>
        <set oor:name="RecentlyUsedMasterPages" oor:node-type="MasterPageDescriptor">
          <info>
            <desc>List of the URLs of the most recently used master pages.</desc>
            <label>Recently Used Master Pages</label>
          </info>
        </set>
      </group>
      <group oor:name="Framework">
        <info>
          <desc>Options that control the multi pane framework.</desc>
          <label>Multi Pane Framework Options</label>
        </info>
        <set oor:name="ResourceFactories" oor:node-type="ResourceFactory">
          <info>
            <desc>Set of factories and the resources created by them.</desc>
            <label>Multi Pane Framework Resource Factories</label>
          </info>
        </set>
        <set oor:name="StartupServices" oor:node-type="StartupService">
          <info>
            <desc>
              Set of services that are instantiated every time the
              framework of a Draw or Impress document is initialized.
            </desc>
            <label>Multi Pane Framework Startup Services</label>
          </info>
        </set>
      </group>
      <group oor:name="SlideSorterBar">
        <info>
          <desc>Values related to the slide sorter.</desc>
          <label>Slide Sorter Options</label>
        </info>
        <group oor:name="Visible">
          <info>
            <desc>Options that control the visibility of the slide sorter.</desc>
            <label>Slide Sorter Visibility</label>
          </info>
          <prop oor:name="ImpressView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the Slide Sorter in the Impress view.</desc>
              <label>Slide Sorter Visibility ImpressView</label>
            </info>
          </prop>
          <prop oor:name="OutlineView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the Slide Sorter in the Outline view.</desc>
              <label>Slide Sorter Visibility OutlineView</label>
            </info>
          </prop>
          <prop oor:name="NotesView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the Slide Sorter in the Notes view.</desc>
              <label>Slide Sorter Visibility NotesView</label>
            </info>
          </prop>
          <prop oor:name="HandoutView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the Slide Sorter in the HandOut view.</desc>
              <label>Slide Sorter Visibility HandOutView</label>
            </info>
          </prop>
          <prop oor:name="SlideSorterView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the Slide Sorter in the SlideSorter view.</desc>
              <label>Slide Sorter Visibility SlideSorterView</label>
            </info>
          </prop>
          <prop oor:name="DrawView" oor:type="xs:boolean">
            <info>
              <desc>Visibility of the Slide Sorter in the Draw view.</desc>
              <label>Slide Sorter Visibility DrawView</label>
            </info>
          </prop>
        </group>
        <group oor:name="PreviewCache">
          <info>
            <desc>Values for tuning the preview cache of the slide sorter.</desc>
            <label>Preview Cache Options</label>
          </info>
          <prop oor:name="CacheSize" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>
                Maximal size of the cache that stores slide
                preview bitmaps.  This size does only cover
                previews of slides that are not currently
                visible.  Depending on the compression policy
                this upper bound may be violated.
              </desc>
              <label>Preview Cache Size</label>
            </info>
            <value>4194304</value>
          </prop>
          <prop oor:name="CompactionPolicy" oor:type="xs:string" oor:nillable="false">
            <info>
              <desc>Technique of how to reduce the memory used by the cache.</desc>
              <label>Compaction Policy</label>
            </info>
            <constraints>
              <enumeration oor:value="None">
                <info>
                  <desc>Ignore the maximal cache size.</desc>
                </info>
              </enumeration>
              <enumeration oor:value="Compress">
                <info>
                  <desc>
                    Use the compression policy to compress preview bitmaps
                    that are not visible.
                  </desc>
                </info>
              </enumeration>
            </constraints>
            <value>Compress</value>
          </prop>
          <prop oor:name="CompressionPolicy" oor:type="xs:string" oor:nillable="false">
            <info>
              <desc>
                Technique of how to compress preview bitmaps for
                slides that are moved out of the visible area in
                order to save cache space.
              </desc>
              <label>Compression Policy</label>
            </info>
            <constraints>
              <enumeration oor:value="None">
                <info>
                  <desc>
                    Keep bitmaps unmodified in cache.  This effectively
                    ignores the maximal cache size.
                  </desc>
                </info>
              </enumeration>
              <enumeration oor:value="Erase">
                <info>
                  <desc>Remove preview from cache</desc>
                </info>
              </enumeration>
              <enumeration oor:value="ResolutionReduction">
                <info>
                  <desc>
                    Reduce the resolution to a width
                    of 100 Pixels
                  </desc>
                </info>
              </enumeration>
              <enumeration oor:value="PNGCompression">
                <info>
                  <desc>Store preview as compressed PNG bitmap</desc>
                </info>
              </enumeration>
            </constraints>
            <value>ResolutionReduction</value>
          </prop>
          <prop oor:name="TimeBetweenHighPriorityRequests" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>
                Time in milli seconds to wait between processing
                preview creation requests with high priority.
              </desc>
              <label>Time Between High Priority Requests</label>
            </info>
            <value>10</value>
          </prop>
          <prop oor:name="TimeBetweenLowPriorityRequests" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>
                Time in milli seconds to wait between processing
                preview creation requests with low priority.
              </desc>
              <label>Time Between Low Priority Requests</label>
            </info>
            <value>100</value>
          </prop>
          <prop oor:name="TimeBetweenRequestsDuringShow" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>
                Time in milli seconds to wait between processing
                preview creation requestsest when show is running.
              </desc>
              <label>Time Between Requests During Show</label>
            </info>
            <value>1000</value>
          </prop>
        </group>
      </group>
    </group>
    <group oor:name="Pictures">
      <info>
        <desc>Contains configuration items form Impress Photo Album function.</desc>
      </info>
      <prop oor:name="Path" oor:type="xs:string" oor:nillable="false">
        <info>
          <desc>
            Access path, where images were loaded last time.
            The default is work directory.
          </desc>
        </info>
        <value>$(work)</value>
      </prop>
    </group>
  </component>
</oor:component-schema>