summaryrefslogtreecommitdiff
path: root/officecfg/registry/schema/org/openoffice/Office/Draw.xcs
blob: 257e4f7b50fa4fbcd242af5a37a9740894f1bb13 (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
<?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="Draw" oor:package="org.openoffice.Office" xml:lang="en-US">
  <info>
    <desc>Defines the properties of the Draw application.</desc>
  </info>
  <import oor:component="org.openoffice.Office.Common"/>
  <component>
    <group oor:name="Layout">
      <info>
        <desc>Defines the general properties of the graphical object representation.</desc>
      </info>
      <group oor:name="Display">
        <info>
          <desc>Defines the general properties of the graphical object representation of screen displays.</desc>
        </info>
        <prop oor:name="Ruler" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing - 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>true</value>
        </prop>
        <prop oor:name="Helpline" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing - 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: Draw/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing - 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: Draw/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing - 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: Draw/Layout/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing - Layout - [Section] Display -->
          <info>
            <desc>Indicates whether to show the outline of all moved objects when moving more then one object at a time.</desc>
            <label>Contour of each individual object</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Other">
        <info>
          <desc>Defines other properties regarding device independent graphical object representation.</desc>
        </info>
        <group oor:name="TabStop">
          <!-- OldPath: Draw/Layout -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing - Layout - [Section] Tab stops -->
          <!-- Notice: Default-Nonmetric Value: 1270 1/100 mm-->
          <info>
            <desc>Specifies the distance between adjacent tab stops.</desc>
            <label>Tab stops</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1250</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1270</value>
          </prop>
        </group>
        <group oor:name="MeasureUnit">
          <!-- OldPath: Draw/Layout -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing - Layout - [Section] Meas. units -->
          <info>
            <desc>Contains the specification of distances and sizes.</desc>
            <label>Measurement unit</label>
          </info>
          <prop oor:name="Metric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>Specifies the unit used for specification of distances and sizes in a metric environment.</desc>
            </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 unit used for specification of distances and sizes in a non metric environment.</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 the specification of how to display the content of Draw documents.</desc>
      </info>
      <group oor:name="Display">
        <info>
          <desc>Contains the specification of how to display the content of Draw documents on screen.</desc>
        </info>
        <prop oor:name="PicturePlaceholder" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to show only outlines of graphical objects.</desc>
            <label>Picture placeholders</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="ContourMode" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to show only outlines of draw objects.</desc>
            <label>Contour mode</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="TextPlaceholder" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to use placeholders for text in draw objects.</desc>
            <label>Text placeholders</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="LineContour" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Contents/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing - Contents - [Section] Alternative display -->
          <info>
            <desc>Indicates whether to show only hairlines instead of an object's linestyle.</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 Draw application that do not fit into another category.</desc>
      </info>
      <prop oor:name="BackgroundCache" oor:type="xs:boolean" oor:nillable="false">
        <!-- OldPath: Draw/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Drawing  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: Draw/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Drawing  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: Draw/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Drawing  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: Draw/Other -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Drawing  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: Draw/Other -->
        <!-- OldLocation: soffice.cfg -->
        <!-- UIHints: Option Bar -->
        <info>
          <desc>Indicates whether a double-click on a text object changes 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: Draw/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>false</value>
      </prop>
      <prop oor:name="Preview" oor:type="xs:double" oor:nillable="false">
        <!-- OldPath: Draw/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: Draw/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>
      <group oor:name="TextObject">
        <info>
          <desc>Defines text editing related configuration items.</desc>
        </info>
        <prop oor:name="QuickEditing" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Other/Text_Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Other/Text_Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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="CrossFading">
        <info>
          <desc>Contains a specification of how to morph between objects (e.g. how many steps and whether to regard the object's attributes).</desc>
        </info>
        <prop oor:name="Steps" oor:type="xs:short" oor:nillable="false">
          <!-- OldPath: Draw/Cross_fading -->
          <!-- OldLocation: drawing.cfg -->
          <!-- UIHints: Select two objects =&gt; Edit  Cross-fade -->
          <info>
            <desc>Specifies the number of intermediate morphing steps between two objects.</desc>
            <label>Steps</label>
          </info>
          <constraints>
            <minInclusive oor:value="1">
              <info>
                <desc>Specifies that there has to be at least one morphing step.</desc>
              </info>
            </minInclusive>
            <maxInclusive oor:value="256">
              <info>
                <desc>Specifies that there may be at least this many morphing steps.</desc>
              </info>
            </maxInclusive>
          </constraints>
          <value>16</value>
        </prop>
        <prop oor:name="Orientation" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Cross_fading -->
          <!-- OldLocation: drawing.cfg -->
          <!-- UIHints: Select two objects =&gt; Edit  Cross-fade -->
          <info>
            <desc>Indicates whether two objects to be morphed shall have the same orientation.</desc>
            <label>Orientation</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Attributes" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Cross_fading -->
          <!-- OldLocation: drawing.cfg -->
          <!-- UIHints: Select two objects =&gt; Edit  Cross-fade -->
          <info>
            <desc>Indicates whether to consider objects' attributes (e.g. colors) when morphing one object into another.</desc>
            <label>Attributes</label>
          </info>
          <value>true</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>Specifies the default width of new objects. [UNIT=1/100 mm]</desc>
            <label/>
          </info>
          <value>8000</value>
        </prop>
        <prop oor:name="Height" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>Specifies the default height of new objects. [UNIT=1/100 mm]</desc>
            <label/>
          </info>
          <value>5000</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="PrinterIndependentLayout" oor:type="xs:short" oor:nillable="false">
          <!-- UIHints: Tools - Options - Draw - 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>
    <group oor:name="Snap">
      <info>
        <desc>Contains the specification of 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>Contains the specification of 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: Draw/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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>false</value>
        </prop>
        <prop oor:name="SnapLine" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Indicates whether to snap at snap lines.</desc>
            <label>Snap lines</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="PageMargin" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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>false</value>
        </prop>
        <prop oor:name="ObjectPoint" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Snap/Objects -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  Snap to Grid - [Section] Snap to -->
          <info>
            <desc>Specifies the maximal range in pixel 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 maximum 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: Draw/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  Snap to Grid - [Section] Snap position -->
          <info>
            <desc>Specifies the rotation angle as a multiple of this input value 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: Draw/Snap/Position -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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="Zoom">
      <info>
        <desc>Contains configuration items related to zooming.</desc>
      </info>
      <prop oor:name="ScaleX" oor:type="xs:int" oor:nillable="false">
        <!-- OldPath: Draw/Zoom -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Drawing  Zoom - [Section] Scale -->
        <info>
          <desc>Specifies zoom factor along the horizontal axis.</desc>
          <label>Scale</label>
        </info>
        <value>1</value>
      </prop>
      <prop oor:name="ScaleY" oor:type="xs:int" oor:nillable="false">
        <!-- OldPath: Draw/Zoom -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Options - Drawing  Zoom - [Section] Scale -->
        <info>
          <desc>Specifies zoom factor along the vertical axis.</desc>
          <label>Scale</label>
        </info>
        <value>1</value>
      </prop>
    </group>
    <group oor:name="Grid">
      <info>
        <desc>Defines handling and display of the (snap) grid.</desc>
      </info>
      <group oor:name="Option">
        <info>
          <desc>Switches regarding use and display of the (snap) grid.</desc>
        </info>
        <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Grid/Options -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Grid/Options -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Grid/Options -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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 the grid resolution.</desc>
        </info>
        <group oor:name="XAxis">
          <!-- OldPath: Draw/Grid/Resolution -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1000</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1270</value>
          </prop>
        </group>
        <group oor:name="YAxis">
          <!-- OldPath: Draw/Grid/Resolution -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  Grid - [Section] Grid -->
          <!-- Notice: Default- nonmerical 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>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1000</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1270</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: Draw/Grid/Subdivision -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  Grid - [Section] Grid -->
          <!-- Notice: Default value for English Version only: 254 Points) -->
          <info>
            <desc>Specifies the number of points between two 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: Draw/Grid/Subdivision -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  Grid - [Section] Grid -->
          <!-- Notice: Default value for English Version only: 254 Points) -->
          <info>
            <desc>Specifies the number of points between two grid points on the Y axis.</desc>
            <label>Y Axis Subdivision</label>
          </info>
          <value>9</value>
        </prop>
      </group>
      <group oor:name="SnapGrid">
        <info>
          <desc>Specifies the snap grid.</desc>
        </info>
        <prop oor:name="Size" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Grid/Snap_Grid -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Grid/Snap_Grid -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1000</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1270</value>
          </prop>
        </group>
        <group oor:name="YAxis">
          <!-- OldPath: Draw/Grid/Snap_Grid -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1000</value>
          </prop>
          <prop oor:name="NonMetric" oor:type="xs:int" oor:nillable="false">
            <info>
              <desc>[UNIT=1/100 mm]</desc>
              <label/>
            </info>
            <value>1270</value>
          </prop>
        </group>
      </group>
    </group>
    <group oor:name="Print">
      <info>
        <desc>Defines options regarding the printing of Draw documents.</desc>
      </info>
      <group oor:name="Content">
        <info>
          <desc>Defines options regarding the printing of document content.</desc>
        </info>
        <prop oor:name="Drawing" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  Print - [Section] Contents -->
          <info>
            <desc>Indicates whether the drawing page (in contrast to master page) will be printed.</desc>
            <label>Drawing</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Page">
        <info>
          <desc>Specifies how and what pages will be printed.</desc>
        </info>
        <prop oor:name="PageSize" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing  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: Draw/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing  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: Draw/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing  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: Draw/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing  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: Draw/Print/Page -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options  Drawing  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>Contains specifications of general printing related issues.</desc>
        </info>
        <prop oor:name="PageName" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Draw/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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: Draw/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Drawing  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>
      </group>
    </group>
  </component>
</oor:component-schema>