summaryrefslogtreecommitdiff
path: root/officecfg/registry/schema/org/openoffice/Office/WriterWeb.xcs
blob: ad1615d65651f54df543e6fc7925433719bba26b (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
<?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="WriterWeb" oor:package="org.openoffice.Office" xml:lang="en-US">
  <info>
    <desc>Contains settings for the HTML editor.</desc>
  </info>
  <import oor:component="org.openoffice.Office.Common"/>
  <component>
    <group oor:name="Content">
      <info>
        <desc>Contains settings for various content elements.</desc>
      </info>
      <group oor:name="Display">
        <info>
          <desc>Contains settings for the visibility of various elements.</desc>
        </info>
        <prop oor:name="GraphicObject" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents - [Section] Display -->
          <info>
            <desc>Specifies whether images and objects are displayed.</desc>
            <label>Images and Objects</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Table" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents - [Section] Display -->
          <info>
            <desc>Specifies whether tables are displayed.</desc>
            <label>Tables</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="DrawingControl" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents - [Section] Display -->
          <info>
            <desc>Specifies whether drawings and controls are displayed.</desc>
            <label>Drawings and controls</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="FieldCode" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents - [Section] Display -->
          <info>
            <desc>Specifies whether field codes are displayed.</desc>
            <label>Field codes</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Note" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Display -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents - [Section] Display -->
          <info>
            <desc>Specifies whether comments are displayed.</desc>
            <label>Comments</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="PreventTips" oor:type="xs:boolean" oor:nillable="false">
          <!-- UIHints: Not accessible via user interface -->
          <info>
            <desc>Enables the writer to prevent the display of help tips programmatically.</desc>
            <label>Prevent help tips</label>
          </info>
          <value>false</value>
        </prop>
      </group>
      <group oor:name="NonprintingCharacter">
        <info>
          <desc>Contains settings for the visibility of various non-printing characters.</desc>
        </info>
        <prop oor:name="MetaCharacters" oor:type="xs:boolean" oor:nillable="false">
          <!-- UIHints: View - Non-printing Characters -->
          <info>
            <desc>Determines whether certain settings are applied or not (display of tab stops, spaces, breaks).</desc>
            <label>Meta characters</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="ParagraphEnd" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents  [Section] Non-printing Characters -->
          <info>
            <desc>Specifies whether paragraph ends are shown on the screen.</desc>
            <label>Paragraph end</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="OptionalHyphen" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents  [Section] Non-printing Characters -->
          <info>
            <desc>Specifies whether optional hyphens are shown on the screen.</desc>
            <label>Optional hyphens</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Space" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents  [Section] Non-printing Characters -->
          <info>
            <desc>Specifies whether spaces are shown on the screen.</desc>
            <label>Spaces</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="ProtectedSpace" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents  [Section] Non-printing Characters -->
          <info>
            <desc>Specifies whether protected spaces are shown on the screen.</desc>
            <label>Protected Spaces</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Break" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Nonprinting_characters -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents  [Section] Non-printing Characters -->
          <info>
            <desc>Specifies whether breaks are shown on the screen.</desc>
            <label>Breaks</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Highlighting">
        <info>
          <desc>Contains settings for highlighting contents.</desc>
        </info>
        <prop oor:name="Field" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Content/Highlighting -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Contents - [Section] Highlighting -->
          <info>
            <desc>Specifies whether fields are highlighted.</desc>
            <label>Fields</label>
          </info>
          <value>true</value>
        </prop>
      </group>
    </group>
    <group oor:name="Layout">
      <info>
        <desc>Contains layout-specific settings.</desc>
      </info>
      <group oor:name="Line">
        <info>
          <desc>Contains settings for guiding lines or points (for example when selecting/moving an object or frame).</desc>
        </info>
        <prop oor:name="Guide" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Layout/Lines -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Lines -->
          <info>
            <desc>Displays helplines around the frames when frames are moved.</desc>
            <label>Helplines</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="SimpleControlPoint" oor:type="xs:boolean">
          <!-- OldPath: HTML_Editor/Layout/Lines -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Lines -->
          <info>
            <desc>Specifies whether control points are displayed simple or enhanced.</desc>
            <label>Simple control points</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="LargeControlPoint" oor:type="xs:boolean">
          <!-- OldPath: HTML_Editor/Layout/Lines -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Lines -->
          <info>
            <desc>Specifies whether control points are displayed as larger than the default size.</desc>
            <label>Large control points</label>
          </info>
          <value>true</value>
        </prop>
      </group>
      <group oor:name="Window">
        <info>
          <desc>Contains various settings for the window, such as scrollbars, rules, etc.</desc>
        </info>
        <prop oor:name="HorizontalScroll" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Layout/Window -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
          <info>
            <desc>Specifies whether the horizontal scroll bar is displayed.</desc>
            <label>Horizontal scroll</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="VerticalScroll" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Layout/Window -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
          <info>
            <desc>Specifies whether the vertical scroll bar is displayed.</desc>
            <label>Vertical Scroll</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="ShowRulers" oor:type="xs:boolean" oor:nillable="false">
          <!-- UIHints: Tools - Options - Text document - View - [Section] View -->
          <info>
            <desc>Specifies whether rulers are displayed. It filters the values of HorizontalRuler and VerticalRuler</desc>
            <label>Show rulers</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="HorizontalRuler" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Layout/Window -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
          <info>
            <desc>Specifies whether the horizontal ruler is displayed.</desc>
            <label>Horizontal ruler</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="HorizontalRulerUnit" oor:type="xs:int">
          <!-- OldPath: Writer/Layout -->
          <!-- UIHints: Tools - Options - Text document - View - [Section] View -->
          <info>
            <desc>Specifies the measurement unit for the horizontal ruler.</desc>
            <label>Horizontal ruler measure 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="3">
              <info>
                <desc>Meter</desc>
              </info>
            </enumeration>
            <enumeration oor:value="4">
              <info>
                <desc>Kilometer</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>
            <enumeration oor:value="9">
              <info>
                <desc>Foot</desc>
              </info>
            </enumeration>
            <enumeration oor:value="10">
              <info>
                <desc>Miles</desc>
              </info>
            </enumeration>
          </constraints>
        </prop>
        <prop oor:name="VerticalRuler" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Layout/Window -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
          <info>
            <desc>Specifies whether the vertical ruler is displayed.</desc>
            <label>Vertical Ruler</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="VerticalRulerUnit" oor:type="xs:int">
          <!-- OldPath: Writer/Layout -->
          <!-- UIHints: Tools - Options - Text document - View - [Section] View -->
          <info>
            <desc>Specifies the measurement unit for the vertical ruler.</desc>
            <label>Vertical ruler measure 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="3">
              <info>
                <desc>Meter</desc>
              </info>
            </enumeration>
            <enumeration oor:value="4">
              <info>
                <desc>Kilometer</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>
            <enumeration oor:value="9">
              <info>
                <desc>Foot</desc>
              </info>
            </enumeration>
            <enumeration oor:value="10">
              <info>
                <desc>Miles</desc>
              </info>
            </enumeration>
          </constraints>
        </prop>
        <prop oor:name="SmoothScroll" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Layout/Window -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Window -->
          <info>
            <desc>Activates the smooth page scrolling function.</desc>
            <label>Smooth scroll</label>
          </info>
          <value>false</value>
        </prop>
      </group>
      <group oor:name="Other">
        <info>
          <desc>Contains miscellaneous settings.</desc>
        </info>
        <prop oor:name="IsAlignMathObjectsToBaseline" oor:type="xs:boolean" oor:nillable="false">
          <!-- UIHints: none yet -->
          <info>
            <desc>Automatically align the baseline of Math objects with the baseline of the surrounding text.</desc>
            <label>Align Math objects</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="MeasureUnit" oor:type="xs:int">
          <!-- OldPath: HTML_Editor/Layout/Window -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Layout - [Section] Meas. Unit -->
          <info>
            <desc>Specifies the measurement units.</desc>
            <label>Measure 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="3">
              <info>
                <desc>Meter</desc>
              </info>
            </enumeration>
            <enumeration oor:value="4">
              <info>
                <desc>Kilometer</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>
            <enumeration oor:value="9">
              <info>
                <desc>Foot</desc>
              </info>
            </enumeration>
            <enumeration oor:value="10">
              <info>
                <desc>Miles</desc>
              </info>
            </enumeration>
          </constraints>
        </prop>
      </group>
      <group oor:name="Zoom">
        <info>
          <desc>Contains zoom specific settings.</desc>
        </info>
        <prop oor:name="Type" oor:type="xs:int" oor:nillable="false">
          <!-- UIHints: (Status Bar) -->
          <info>
            <desc>Specifies the zoom type.</desc>
            <label>Zoom Type</label>
          </info>
          <constraints>
            <enumeration oor:value="0">
              <info>
                <desc>Percent</desc>
              </info>
            </enumeration>
            <enumeration oor:value="2">
              <info>
                <desc>Whole Page</desc>
              </info>
            </enumeration>
            <enumeration oor:value="3">
              <info>
                <desc>Page Width</desc>
              </info>
            </enumeration>
          </constraints>
          <value>0</value>
        </prop>
        <prop oor:name="Value" oor:type="xs:int" oor:nillable="false">
          <!-- UIHints: (Status Bar) -->
          <info>
            <desc>Specifies the zoom value.</desc>
            <label>Zoom Value</label>
          </info>
          <value>100</value>
        </prop>
      </group>
    </group>
    <group oor:name="Grid">
      <info>
        <desc>Contains various items for the grid that are not listed in other sections.</desc>
      </info>
      <group oor:name="Option">
        <info>
          <desc>Contains options for the grid.</desc>
        </info>
        <prop oor:name="SnapToGrid" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Grid/Option -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Grid - [Section] Option -->
          <info>
            <desc>Moves frames, drawing elements, and form functions only between the grid points.</desc>
            <label>Snap to grid</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="VisibleGrid" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Grid/Option -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Grid - [Section] Option -->
          <info>
            <desc>Displays the grid.</desc>
            <label>Visible grid</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Synchronize" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Grid/Option -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Grid - [Section] Option -->
          <info>
            <desc>Changes the current grid settings symmetrically. The resolution and subdivision for the X- and Y-axis remains the same.</desc>
            <label>Synchronize axes</label>
          </info>
          <value>false</value>
        </prop>
      </group>
      <group oor:name="Resolution">
        <info>
          <desc>Contains settings for specifying the grid resolution.</desc>
        </info>
        <prop oor:name="XAxis" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Grid/Resolution -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
          <info>
            <desc>Defines the distance between the grid points on the X-axis [UNIT=1/100 mm].</desc>
            <label>X Axis Resolution</label>
          </info>
          <value>1000</value>
        </prop>
        <prop oor:name="YAxis" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Grid/Resolution -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
          <info>
            <desc>Defines the distance between the grid points on the Y-axis [UNIT=1/100 mm].</desc>
            <label>Y Axis Resolution</label>
          </info>
          <value>1000</value>
        </prop>
      </group>
      <group oor:name="Subdivision">
        <info>
          <desc>Contains settings for subdividing of the grid.</desc>
        </info>
        <prop oor:name="XAxis" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Grid/Subdivision -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
          <info>
            <desc>Specifies the number of intervals between two grid points on the X-axis.</desc>
            <label>X Axis Subdivision</label>
          </info>
          <value>3</value>
        </prop>
        <prop oor:name="YAxis" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Grid/Subdivision -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Grid - [Section] Grid -->
          <info>
            <desc>Defines the distance between the grid points on the Y-axis.</desc>
            <label>Y Axis Subdivision</label>
          </info>
          <value>3</value>
        </prop>
      </group>
    </group>
    <group oor:name="Print">
      <info>
        <desc>Contains settings for printing.</desc>
      </info>
      <group oor:name="Content">
        <info>
          <desc>Contains settings for specifying which content types are printed.</desc>
        </info>
        <prop oor:name="Graphic" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
          <info>
            <desc>Specifies whether images are printed.</desc>
            <label>Images</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Table" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
          <info>
            <desc>Specifies whether tables are printed.</desc>
            <label>Tables</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Control" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
          <info>
            <desc>Specifies whether controls are printed.</desc>
            <label>Controls</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Background" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
          <info>
            <desc>Specifies whether background objects are printed.</desc>
            <label>Background</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="PrintBlack" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Contents -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Contents -->
          <info>
            <desc>Specifies whether text is always printed in black.</desc>
            <label>Print black</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Note" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Print - [Section] Notes -->
          <info>
            <desc>Specifies whether comments are printed and how they are printed.</desc>
          </info>
          <constraints>
            <enumeration oor:value="0">
              <info>
                <desc>None</desc>
              </info>
            </enumeration>
            <enumeration oor:value="1">
              <info>
                <desc>Comments only</desc>
              </info>
            </enumeration>
            <enumeration oor:value="2">
              <info>
                <desc>End of document</desc>
              </info>
            </enumeration>
            <enumeration oor:value="3">
              <info>
                <desc>End of page</desc>
              </info>
            </enumeration>
          </constraints>
          <value>0</value>
        </prop>
      </group>
      <group oor:name="Page">
        <info>
          <desc>Specifies which pages are printed and how they are printed.</desc>
        </info>
        <prop oor:name="Reversed" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Pages -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Print - [Section] Pages -->
          <info>
            <desc>Reverses the printing order.</desc>
            <label>Reversed</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Brochure" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Pages -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Print - [Section] Pages -->
          <info>
            <desc>Prints in brochure format.</desc>
            <label>Brochure</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="BrochureRightToLeft" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: Writer/Print/Pages -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Options - Text document - Print - [Section] Pages -->
          <info>
            <desc>Prints in brochure format, with right-to-left direction.</desc>
            <label>Right-to-left</label>
          </info>
          <value>false</value>
        </prop>
      </group>
      <group oor:name="Output">
        <info>
          <desc>Contains output-specific settings.</desc>
        </info>
        <prop oor:name="SinglePrintJob" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print/Output -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Output -->
          <info>
            <desc>Controls the print output.</desc>
            <label>Create single print jobs</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Fax" oor:type="xs:string" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Print -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Print - [Section] Fax -->
          <info>
            <desc>Specifies which fax machine is used when faxing directly from the document</desc>
            <label>Fax</label>
          </info>
          <value/>
          <!-- JB: Empty default inserted into empty property node. Remove if NIL was intended -->
        </prop>
      </group>
      <group oor:name="Papertray">
        <info>
          <desc>Contains settings for printers with multiple paper trays.</desc>
        </info>
        <prop oor:name="FromPrinterSetup" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Papertray -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Print - [Section] Paper tray -->
          <info>
            <desc>Specifies that the defined paper source in the printer setup is used for printers with multiple trays.</desc>
            <label>From printer setup</label>
          </info>
          <value>false</value>
        </prop>
      </group>
    </group>
    <group oor:name="Table">
      <info>
        <desc>Contains settings for tables.</desc>
      </info>
      <group oor:name="Shift">
        <info>
          <desc>Contains settings used when shifting table rows/columns.</desc>
        </info>
        <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Table/Shift -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Table - [Section] Shift -->
          <!--Notice: NonMetric default: 635 1/100 mm-->
          <info>
            <desc>Specifies the default value for moving a table row [UNIT=1/100 mm].</desc>
            <label>Row</label>
          </info>
          <value>500</value>
        </prop>
        <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Table/Shift -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Table - [Section] Shift -->
          <!-- Notice: NonMetric default: 635 1/100 mm-->
          <info>
            <desc>Specifies the default value for shifting a table column [UNIT=1/100 mm].</desc>
            <label>Column</label>
          </info>
          <value>500</value>
        </prop>
      </group>
      <group oor:name="Insert">
        <info>
          <desc>Contains settings used when inserting table rows/columns.</desc>
        </info>
        <prop oor:name="Row" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Table/Insert -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Table - [Section] Insert -->
          <!-- Notice: NonMetric default: 635 1/100 mm -->
          <info>
            <desc>Specifies the default value for inserting rows [UNIT=1/100 mm].</desc>
            <label>Row</label>
          </info>
          <value>500</value>
        </prop>
        <prop oor:name="Column" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Table/Insert -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Table - [Section] Insert -->
          <!-- Notice: The NonMetric Default 2540 1/100 mm-->
          <info>
            <desc>Specifies the default value for inserting columns [UNIT=1/100 mm].</desc>
            <label>Column</label>
          </info>
          <value>2500</value>
        </prop>
      </group>
      <group oor:name="Change">
        <info>
          <desc>Contains settings specifying the effect that modifying rows/columns has on a table.</desc>
        </info>
        <prop oor:name="Effect" oor:type="xs:int" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Table -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document - Table  [Section] Effect -->
          <info>
            <desc>Determines the relative effect of rows and columns to adjacent rows or columns, as well as to the entire table.</desc>
          </info>
          <constraints>
            <enumeration oor:value="0">
              <info>
                <desc>Fixed</desc>
              </info>
            </enumeration>
            <enumeration oor:value="1">
              <info>
                <desc>FixedProportional</desc>
              </info>
            </enumeration>
            <enumeration oor:value="2">
              <info>
                <desc>Variable</desc>
              </info>
            </enumeration>
          </constraints>
          <value>2</value>
        </prop>
      </group>
      <group oor:name="Input">
        <info>
          <desc>Contains settings used when inputting text or data in tables.</desc>
        </info>
        <prop oor:name="NumberRecognition" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Insert/IntoTables -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Insert - [Section] Insert into tables -->
          <info>
            <desc>Specifies whether numbers in a table are recognized or if they are saved in a text format.</desc>
            <label>Number recognition</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="NumberFormatRecognition" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Insert/IntoTables -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Insert - [Section] Insert into tables -->
          <info>
            <desc>Specifies that only entries with the defined format are accepted. This option is only available if number format recognition is active (NumberRecognition=True).</desc>
            <label>Number format recognition</label>
          </info>
          <value>true</value>
        </prop>
        <prop oor:name="Alignment" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Insert/IntoTables -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Insert - [Section] Insert into tables -->
          <info>
            <desc>Specifies whether all of the numbers are aligned below right of the cell and not above left (as in text). This option is only available if number format recognition is active (NumberRecognition=True).</desc>
            <label>Alignment</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="SplitVerticalByDefault" oor:type="xs:boolean" oor:nillable="false">
          <info>
            <desc>Specifies whether cells should be split vertically by default.</desc>
            <label>Split vertically by default</label>
          </info>
          <value>false</value>
        </prop>
      </group>
    </group>
    <group oor:name="Insert">
      <info>
        <desc>Specifies the settings for inserting various object types.</desc>
      </info>
      <group oor:name="Table">
        <info>
          <desc>Specifies the default settings for inserting tables.</desc>
        </info>
        <prop oor:name="Header" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Insert/Tables -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Insert - [Section] Tables -->
          <info>
            <desc>Specifies whether the table has a header</desc>
            <label>Header</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="RepeatHeader" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Insert/Tables -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Insert - [Section] Tables -->
          <info>
            <desc>Specifies whether the header in the new page is adopted when inserting a page break. This option is only available if Header=True.</desc>
            <label>Repeat header</label>
          </info>
          <value>false</value>
        </prop>
        <prop oor:name="Border" oor:type="xs:boolean" oor:nillable="false">
          <!-- OldPath: HTML_Editor/Insert/Tables -->
          <!-- OldLocation: Soffice.cfg -->
          <!-- UIHints: Tools - Option - HTML-Document  Insert - [Section] Tables -->
          <info>
            <desc>Specifies whether table cells have a border by default.</desc>
            <label>Border</label>
          </info>
          <value>true</value>
        </prop>
      </group>
    </group>
    <group oor:name="ObjectBar">
      <info>
        <desc>Specifies the settings for the object bar.</desc>
      </info>
      <group oor:name="Selection">
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Right mouse click to the toolbar with object selection-->
        <info>
          <desc>Specifies the type of object bar that is visible.</desc>
        </info>
        <prop oor:name="Graphic" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>Specifies whether the Image Object Bar or the Text Object Bar/Web is the visible toolbar when an image is selected.</desc>
          </info>
          <value>-1</value>
        </prop>
        <prop oor:name="Table" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>Specifies whether the Table Object Bar or the Text Object Bar/Web is visible toolbar when a table is selected.</desc>
          </info>
          <value>-1</value>
        </prop>
        <prop oor:name="NumberedList" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>Specifies whether the Numbering Object Bar or the Text Object Bar/Web is visible toolbar when text formatted with numbering/list is selected.</desc>
          </info>
          <value>-1</value>
        </prop>
        <prop oor:name="NumberedList_InTable" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>Specifies whether the Numbering Object Bar, the Table Object Bar or the Text Object Bar/Web is visible toolbar when text formatted with numbering/list is selected in a table.</desc>
          </info>
          <value>-1</value>
        </prop>
        <prop oor:name="BezierObject" oor:type="xs:int" oor:nillable="false">
          <info>
            <desc>Specifies whether the Bezier Object Bar or the Draw Object Bar is the visible toolbar with a Bezier object in edit mode.</desc>
          </info>
          <value>-1</value>
        </prop>
      </group>
    </group>
    <group oor:name="Background">
      <info>
        <desc>Contains settings for the background of a document.</desc>
      </info>
      <prop oor:name="Color" oor:type="xs:int">
        <!-- OldPath: HTML_Editor/Background -->
        <!-- OldLocation: Soffice.cfg -->
        <!-- UIHints: Tools - Option - HTML-Document  Background - [Section] Background color -->
        <info>
          <desc>Determines the background color.</desc>
          <label>Background color</label>
        </info>
      </prop>
    </group>
    <group oor:name="Gallery">
      <info>
        <desc>Contains settings for gallery items that can be added to the document.</desc>
      </info>
      <prop oor:name="AddGraphic" oor:type="xs:boolean" oor:nillable="false">
        <!--OldLocation: Soffice.cfg -->
        <!--UIHints: HTML document in readonly mode - context menu of an Image - Add Image - As Link / Copy-->
        <info>
          <desc>Specifies whether an image is embedded or added as link when it is inserted into the Gallery.</desc>
        </info>
        <value>true</value>
      </prop>
    </group>
  </component>
</oor:component-schema>