diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2022-06-15 22:32:54 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2022-06-16 14:03:33 +0200 |
commit | 0930096c4c5ed14f46a79f03b29f21cc915d7203 (patch) | |
tree | 8b39ad785a45014033ceeaaed503957fa25d838d /sw | |
parent | 48ca2336251d62ac2e90300cd9945fb84b1cddd8 (diff) |
tdf#125040 Recreate Contextual Single for Writer
Change-Id: I791631aedb9efbb7bbdc41234ee39e1d3c834ce1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135959
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/UIConfig_swriter.mk | 11 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-annotation.xml | 34 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-draw.xml | 64 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-drawtext.xml | 52 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-form.xml | 50 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-frame.xml | 49 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-graphic.xml | 52 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-media.xml | 39 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-ole.xml | 47 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-printpreview.xml | 40 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-table.xml | 98 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode-text.xml | 98 | ||||
-rw-r--r-- | sw/uiconfig/swriter/toolbar/singlemode.xml | 76 |
13 files changed, 642 insertions, 68 deletions
diff --git a/sw/UIConfig_swriter.mk b/sw/UIConfig_swriter.mk index 5dafec57ee88..37e0c66f1386 100644 --- a/sw/UIConfig_swriter.mk +++ b/sw/UIConfig_swriter.mk @@ -75,6 +75,17 @@ $(eval $(call gb_UIConfig_add_toolbarfiles,modules/swriter,\ sw/uiconfig/swriter/toolbar/optimizetablebar \ sw/uiconfig/swriter/toolbar/previewobjectbar \ sw/uiconfig/swriter/toolbar/singlemode \ + sw/uiconfig/swriter/toolbar/singlemode-annotation \ + sw/uiconfig/swriter/toolbar/singlemode-draw \ + sw/uiconfig/swriter/toolbar/singlemode-drawtext \ + sw/uiconfig/swriter/toolbar/singlemode-form \ + sw/uiconfig/swriter/toolbar/singlemode-frame \ + sw/uiconfig/swriter/toolbar/singlemode-graphic \ + sw/uiconfig/swriter/toolbar/singlemode-media \ + sw/uiconfig/swriter/toolbar/singlemode-ole \ + sw/uiconfig/swriter/toolbar/singlemode-printpreview \ + sw/uiconfig/swriter/toolbar/singlemode-table \ + sw/uiconfig/swriter/toolbar/singlemode-text \ sw/uiconfig/swriter/toolbar/standardbar \ sw/uiconfig/swriter/toolbar/starshapes \ sw/uiconfig/swriter/toolbar/symbolshapes \ diff --git a/sw/uiconfig/swriter/toolbar/singlemode-annotation.xml b/sw/uiconfig/swriter/toolbar/singlemode-annotation.xml new file mode 100644 index 000000000000..ac91119b09cc --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-annotation.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:SpellingAndGrammarDialog" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:SpellOnline" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ThesaurusDialog" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:WordCountDialog" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:TrackChanges" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:PreviousTrackedChange" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:NextTrackedChange" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:RejectTrackedChange" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:AcceptTrackedChange" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:RejectTrackedChangeToNext"/> + <toolbar:toolbaritem xlink:href=".uno:AcceptTrackedChangeToNext"/> + <toolbar:toolbaritem xlink:href=".uno:AcceptAllTrackedChanges"/> + <toolbar:toolbaritem xlink:href=".uno:AcceptTrackedChanges-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ReplyComment" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:DeleteComment" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:DeleteAllNotes" toolbar:style="image text"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ProtectTraceChangeMode" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:CompareDocuments" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:MergeDocuments" toolbar:style="image text"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-draw.xml b/sw/uiconfig/swriter/toolbar/singlemode-draw.xml new file mode 100644 index 000000000000..1343c75bdbf1 --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-draw.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:InsertCaptionDialog"/> + <toolbar:toolbaritem xlink:href=".uno:NameGroup"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AnchorMenu"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOff"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOn"/> + <toolbar:toolbaritem xlink:href=".uno:WrapIdeal"/> + <toolbar:toolbaritem xlink:href=".uno:WrapLeft"/> + <toolbar:toolbaritem xlink:href=".uno:WrapThrough"/> + <toolbar:toolbaritem xlink:href=".uno:WrapRight"/> + <toolbar:toolbaritem xlink:href=".uno:TextWrap-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlign"/> + <toolbar:toolbaritem xlink:href=".uno:AlignCenter"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlignRight"/> + <toolbar:toolbaritem xlink:href=".uno:AlignUp"/> + <toolbar:toolbaritem xlink:href=".uno:AlignMiddle"/> + <toolbar:toolbaritem xlink:href=".uno:AlignDown"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BringToFront" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectForwardOne"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectBackOne"/> + <toolbar:toolbaritem xlink:href=".uno:SendToBack" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ToggleObjectRotateMode"/> + <toolbar:toolbaritem xlink:href=".uno:ToggleObjectBezierMode"/> + <toolbar:toolbaritem xlink:href=".uno:FlipVertical"/> + <toolbar:toolbaritem xlink:href=".uno:FlipHorizontal"/> + <toolbar:toolbaritem xlink:href=".uno:TransformDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FormatArea-label"/> + <toolbar:toolbaritem xlink:href=".uno:FillStyle"/> + <toolbar:toolbaritem xlink:href=".uno:FormatArea-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FormatLine-label"/> + <toolbar:toolbaritem xlink:href=".uno:XLineColor"/> + <toolbar:toolbaritem xlink:href=".uno:XLineStyle"/> + <toolbar:toolbaritem xlink:href=".uno:LineWidth"/> + <toolbar:toolbaritem xlink:href=".uno:LineEndStyle"/> + <toolbar:toolbaritem xlink:href=".uno:FormatLine-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ExtrusionToggle"/> + <toolbar:toolbaritem xlink:href=".uno:ExtrusionDepthFloater"/> + <toolbar:toolbaritem xlink:href=".uno:ExtrusionDirectionFloater"/> + <toolbar:toolbaritem xlink:href=".uno:Extrusion3DColor"/> + <toolbar:toolbaritem xlink:href=".uno:ExtrusionSurfaceFloater"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FontworkGalleryFloater"/> + <toolbar:toolbaritem xlink:href=".uno:FontworkShapeType"/> + <toolbar:toolbaritem xlink:href=".uno:FontworkSameLetterHeights"/> + <toolbar:toolbaritem xlink:href=".uno:FontworkAlignmentFloater"/> + <toolbar:toolbaritem xlink:href=".uno:FontworkCharacterSpacingFloater"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-drawtext.xml b/sw/uiconfig/swriter/toolbar/singlemode-drawtext.xml new file mode 100644 index 000000000000..405cd069345d --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-drawtext.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:ResetAttributes"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:CharFontName"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FontHeight"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Grow"/> + <toolbar:toolbaritem xlink:href=".uno:Shrink"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Bold"/> + <toolbar:toolbaritem xlink:href=".uno:Italic"/> + <toolbar:toolbaritem xlink:href=".uno:Underline"/> + <toolbar:toolbaritem xlink:href=".uno:Overline" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Strikeout"/> + <toolbar:toolbaritem xlink:href=".uno:Shadowed" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:OutlineFont" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:SubScript" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:SuperScript" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Color"/> + <toolbar:toolbaritem xlink:href=".uno:CharBackColor"/> + <toolbar:toolbaritem xlink:href=".uno:FontDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:LeftPara"/> + <toolbar:toolbaritem xlink:href=".uno:CenterPara"/> + <toolbar:toolbaritem xlink:href=".uno:RightPara"/> + <toolbar:toolbaritem xlink:href=".uno:JustifyPara"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ParaLeftToRight"/> + <toolbar:toolbaritem xlink:href=".uno:ParaRightToLeft"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ParaspaceIncrease" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ParaspaceDecrease" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:LineSpacing"/> + <toolbar:toolbaritem xlink:href=".uno:ParagraphDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:CharmapControl"/> + <toolbar:toolbaritem xlink:href=".uno:HyperlinkDialog"/> + <toolbar:toolbaritem xlink:href=".uno:SpellingAndGrammarDialog" toolbar:visible="false"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-form.xml b/sw/uiconfig/swriter/toolbar/singlemode-form.xml new file mode 100644 index 000000000000..0892a110bf06 --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-form.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:SwitchControlDesignMode"/> + <toolbar:toolbaritem xlink:href=".uno:UseWizards"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AnchorMenu"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOff"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOn"/> + <toolbar:toolbaritem xlink:href=".uno:WrapIdeal"/> + <toolbar:toolbaritem xlink:href=".uno:WrapLeft"/> + <toolbar:toolbaritem xlink:href=".uno:WrapThrough"/> + <toolbar:toolbaritem xlink:href=".uno:WrapRight"/> + <toolbar:toolbaritem xlink:href=".uno:TextWrap-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlign"/> + <toolbar:toolbaritem xlink:href=".uno:AlignCenter"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlignRight"/> + <toolbar:toolbaritem xlink:href=".uno:AlignUp"/> + <toolbar:toolbaritem xlink:href=".uno:AlignMiddle"/> + <toolbar:toolbaritem xlink:href=".uno:AlignDown"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BringToFront" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectForwardOne"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectBackOne"/> + <toolbar:toolbaritem xlink:href=".uno:SendToBack" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Label"/> + <toolbar:toolbaritem xlink:href=".uno:Edit"/> + <toolbar:toolbaritem xlink:href=".uno:CheckBox"/> + <toolbar:toolbaritem xlink:href=".uno:RadioButton"/> + <toolbar:toolbaritem xlink:href=".uno:ListBox"/> + <toolbar:toolbaritem xlink:href=".uno:ComboBox"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ControlProperties" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:FormProperties" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ShowFmExplorer" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:TabDialog" toolbar:style="image text"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:OpenReadOnly"/> + <toolbar:toolbaritem xlink:href=".uno:AutoControlFocus"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-frame.xml b/sw/uiconfig/swriter/toolbar/singlemode-frame.xml new file mode 100644 index 000000000000..f60f54163955 --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-frame.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:InsertCaptionDialog"/> + <toolbar:toolbaritem xlink:href=".uno:NameGroup"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AnchorMenu"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOff"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOn"/> + <toolbar:toolbaritem xlink:href=".uno:WrapIdeal"/> + <toolbar:toolbaritem xlink:href=".uno:WrapLeft"/> + <toolbar:toolbaritem xlink:href=".uno:WrapThrough"/> + <toolbar:toolbaritem xlink:href=".uno:WrapRight"/> + <toolbar:toolbaritem xlink:href=".uno:TextWrap-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlign"/> + <toolbar:toolbaritem xlink:href=".uno:AlignCenter"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlignRight"/> + <toolbar:toolbaritem xlink:href=".uno:AlignUp"/> + <toolbar:toolbaritem xlink:href=".uno:AlignMiddle"/> + <toolbar:toolbaritem xlink:href=".uno:AlignDown"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BringToFront" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectForwardOne"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectBackOne"/> + <toolbar:toolbaritem xlink:href=".uno:SendToBack" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ChainFrames" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:UnhainFrames"/> + <toolbar:toolbaritem xlink:href=".uno:FrameDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FormatArea-label"/> + <toolbar:toolbaritem xlink:href=".uno:FillStyle"/> + <toolbar:toolbaritem xlink:href=".uno:FormatArea-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BorderDialog-label"/> + <toolbar:toolbaritem xlink:href=".uno:FrameLineColor"/> + <toolbar:toolbaritem xlink:href=".uno:LineStyle"/> + <toolbar:toolbaritem xlink:href=".uno:SetBorderStyle"/> + <toolbar:toolbaritem xlink:href=".uno:BorderDialog-more"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-graphic.xml b/sw/uiconfig/swriter/toolbar/singlemode-graphic.xml new file mode 100644 index 000000000000..9ea63aa7d231 --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-graphic.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:InsertCaptionDialog"/> + <toolbar:toolbaritem xlink:href=".uno:NameGroup"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AnchorMenu"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOff"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOn"/> + <toolbar:toolbaritem xlink:href=".uno:WrapIdeal"/> + <toolbar:toolbaritem xlink:href=".uno:WrapLeft"/> + <toolbar:toolbaritem xlink:href=".uno:WrapThrough"/> + <toolbar:toolbaritem xlink:href=".uno:WrapRight"/> + <toolbar:toolbaritem xlink:href=".uno:TextWrap-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlign"/> + <toolbar:toolbaritem xlink:href=".uno:AlignCenter"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlignRight"/> + <toolbar:toolbaritem xlink:href=".uno:AlignUp"/> + <toolbar:toolbaritem xlink:href=".uno:AlignMiddle"/> + <toolbar:toolbaritem xlink:href=".uno:AlignDown"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BringToFront" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectForwardOne"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectBackOne"/> + <toolbar:toolbaritem xlink:href=".uno:SendToBack" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ToggleObjectRotateMode"/> + <toolbar:toolbaritem xlink:href=".uno:RotateRight"/> + <toolbar:toolbaritem xlink:href=".uno:FlipVertical"/> + <toolbar:toolbaritem xlink:href=".uno:FlipHorizontal"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Crop" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ChangePicture"/> + <toolbar:toolbaritem xlink:href=".uno:CompressGraphic"/> + <toolbar:toolbaritem xlink:href=".uno:SaveGraphic"/> + <toolbar:toolbaritem xlink:href=".uno:GraphicDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:GraphicFilterToolbox" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ColorSettings" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:GrafMode"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:GrafTransparence"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-media.xml b/sw/uiconfig/swriter/toolbar/singlemode-media.xml new file mode 100644 index 000000000000..977857b73220 --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-media.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:InsertCaptionDialog"/> + <toolbar:toolbaritem xlink:href=".uno:NameGroup"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AnchorMenu"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOff"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOn"/> + <toolbar:toolbaritem xlink:href=".uno:WrapIdeal"/> + <toolbar:toolbaritem xlink:href=".uno:WrapLeft"/> + <toolbar:toolbaritem xlink:href=".uno:WrapThrough"/> + <toolbar:toolbaritem xlink:href=".uno:WrapRight"/> + <toolbar:toolbaritem xlink:href=".uno:TextWrap-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlign"/> + <toolbar:toolbaritem xlink:href=".uno:AlignCenter"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlignRight"/> + <toolbar:toolbaritem xlink:href=".uno:AlignUp"/> + <toolbar:toolbaritem xlink:href=".uno:AlignMiddle"/> + <toolbar:toolbaritem xlink:href=".uno:AlignDown"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BringToFront" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectForwardOne"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectBackOne"/> + <toolbar:toolbaritem xlink:href=".uno:SendToBack" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AVMediaPlayer"/> + <toolbar:toolbaritem xlink:href=".uno:TransformDialog-more"/> + <toolbar:toolbaritem xlink:href=".uno:AVMediaToolBox"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-ole.xml b/sw/uiconfig/swriter/toolbar/singlemode-ole.xml new file mode 100644 index 000000000000..283d4a2d5531 --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-ole.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:InsertCaptionDialog"/> + <toolbar:toolbaritem xlink:href=".uno:NameGroup"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AnchorMenu"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOff"/> + <toolbar:toolbaritem xlink:href=".uno:WrapOn"/> + <toolbar:toolbaritem xlink:href=".uno:WrapIdeal"/> + <toolbar:toolbaritem xlink:href=".uno:WrapLeft"/> + <toolbar:toolbaritem xlink:href=".uno:WrapThrough"/> + <toolbar:toolbaritem xlink:href=".uno:WrapRight"/> + <toolbar:toolbaritem xlink:href=".uno:TextWrap-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlign"/> + <toolbar:toolbaritem xlink:href=".uno:AlignCenter"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectAlignRight"/> + <toolbar:toolbaritem xlink:href=".uno:AlignUp"/> + <toolbar:toolbaritem xlink:href=".uno:AlignMiddle"/> + <toolbar:toolbaritem xlink:href=".uno:AlignDown"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BringToFront" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectForwardOne"/> + <toolbar:toolbaritem xlink:href=".uno:ObjectBackOne"/> + <toolbar:toolbaritem xlink:href=".uno:SendToBack" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ObjectDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FormatArea-label"/> + <toolbar:toolbaritem xlink:href=".uno:FillStyle"/> + <toolbar:toolbaritem xlink:href=".uno:FormatArea-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:BorderDialog-label"/> + <toolbar:toolbaritem xlink:href=".uno:FrameLineColor"/> + <toolbar:toolbaritem xlink:href=".uno:LineStyle"/> + <toolbar:toolbaritem xlink:href=".uno:SetBorderStyle"/> + <toolbar:toolbaritem xlink:href=".uno:BorderDialog-more"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-printpreview.xml b/sw/uiconfig/swriter/toolbar/singlemode-printpreview.xml new file mode 100644 index 000000000000..66ba4eee7deb --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-printpreview.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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 . +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:ShowSinglePage" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ShowTwoPages" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ShowBookview" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ShowMultiplePages" toolbar:style="image text"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:GoToStartOfDoc"/> + <toolbar:toolbaritem xlink:href=".uno:PageUp"/> + <toolbar:toolbaritem xlink:href=".uno:JumpToSpecificPage"/> + <toolbar:toolbaritem xlink:href=".uno:PageDown"/> + <toolbar:toolbaritem xlink:href=".uno:GoToEndOfDoc"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ZoomMinus"/> + <toolbar:toolbaritem xlink:href=".uno:PreviewZoom"/> + <toolbar:toolbaritem xlink:href=".uno:ZoomPlus"/> + <toolbar:toolbaritem xlink:href=".uno:FullScreen"/> + <toolbar:toolbaritem xlink:href=".uno:Zoom-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Print" toolbar:style="image text"/> + <toolbar:toolbaritem xlink:href=".uno:ClosePreview" toolbar:style="image text"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-table.xml b/sw/uiconfig/swriter/toolbar/singlemode-table.xml new file mode 100644 index 000000000000..354affa94589 --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-table.xml @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:FormatPaintbrush"/> + <toolbar:toolbaritem xlink:href=".uno:ResetAttributes"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:StyleApply"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:CharFontName"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FontHeight"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Grow" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Shrink" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Bold"/> + <toolbar:toolbaritem xlink:href=".uno:Italic"/> + <toolbar:toolbaritem xlink:href=".uno:Underline"/> + <toolbar:toolbaritem xlink:href=".uno:Strikeout"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:SubScript" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:SuperScript" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Color"/> + <toolbar:toolbaritem xlink:href=".uno:BackColor"/> + <toolbar:toolbaritem xlink:href=".uno:FontDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:DefaultBullet"/> + <toolbar:toolbaritem xlink:href=".uno:DefaultNumbering"/> + <toolbar:toolbaritem xlink:href=".uno:SetOutline" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:IncrementIndent"/> + <toolbar:toolbaritem xlink:href=".uno:DecrementIndent"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:LeftPara"/> + <toolbar:toolbaritem xlink:href=".uno:CenterPara"/> + <toolbar:toolbaritem xlink:href=".uno:RightPara"/> + <toolbar:toolbaritem xlink:href=".uno:JustifyPara"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:CommonAlignTop"/> + <toolbar:toolbaritem xlink:href=".uno:CommonAlignVerticalCenter"/> + <toolbar:toolbaritem xlink:href=".uno:CommonAlignBottom"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ParaLeftToRight"/> + <toolbar:toolbaritem xlink:href=".uno:ParaRightToLeft"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ParaspaceIncrease" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ParaspaceDecrease" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:LineSpacing"/> + <toolbar:toolbaritem xlink:href=".uno:TableCellBackgroundColor"/> + <toolbar:toolbaritem xlink:href=".uno:ParagraphDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:AutoFormat"/> + <toolbar:toolbaritem xlink:href=".uno:SetBorderStyle"/> + <toolbar:toolbaritem xlink:href=".uno:LineStyle"/> + <toolbar:toolbaritem xlink:href=".uno:FrameLineColor"/> + <toolbar:toolbaritem xlink:href=".uno:BorderDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:MergeCells"/> + <toolbar:toolbaritem xlink:href=".uno:SplitCell"/> + <toolbar:toolbaritem xlink:href=".uno:SplitTable"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:EntireColumn"/> + <toolbar:toolbaritem xlink:href=".uno:InsertColumnsBefore"/> + <toolbar:toolbaritem xlink:href=".uno:InsertColumnsAfter"/> + <toolbar:toolbaritem xlink:href=".uno:DeleteColumns"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:EntireRow"/> + <toolbar:toolbaritem xlink:href=".uno:InsertRowsBefore"/> + <toolbar:toolbaritem xlink:href=".uno:InsertRowsAfter"/> + <toolbar:toolbaritem xlink:href=".uno:DeleteRows"/> + <toolbar:toolbaritem xlink:href=".uno:TableDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:InsertGraphic"/> + <toolbar:toolbaritem xlink:href=".uno:InsertTable"/> + <toolbar:toolbaritem xlink:href=".uno:CharmapControl"/> + <toolbar:toolbaritem xlink:href=".uno:InsertDraw"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:HyperlinkDialog"/> + <toolbar:toolbaritem xlink:href=".uno:InsertFootnote"/> + <toolbar:toolbaritem xlink:href=".uno:InsertBookmark"/> + <toolbar:toolbaritem xlink:href=".uno:InsertReferenceField"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:SpellingAndGrammarDialog" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:InsertAnnotation"/> + <toolbar:toolbaritem xlink:href=".uno:TrackChanges"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ControlCodes"/> + <toolbar:toolbaritem xlink:href=".uno:Zoom"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode-text.xml b/sw/uiconfig/swriter/toolbar/singlemode-text.xml new file mode 100644 index 000000000000..6d8195c406da --- /dev/null +++ b/sw/uiconfig/swriter/toolbar/singlemode-text.xml @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd"> +<!-- + * 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/. + * +--> +<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> + <toolbar:toolbaritem xlink:href=".uno:FormatPaintbrush"/> + <toolbar:toolbaritem xlink:href=".uno:ResetAttributes"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:DefaultCharStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:EmphasisCharStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:StrongEmphasisCharStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:TitleParaStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:SubtitleParaStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Heading1ParaStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Heading2ParaStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Heading3ParaStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Heading4ParaStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:StyleUpdateByExample" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:EditStyle" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:StyleApply"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:CharFontName"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:FontHeight"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Grow"/> + <toolbar:toolbaritem xlink:href=".uno:Shrink"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Bold"/> + <toolbar:toolbaritem xlink:href=".uno:Italic"/> + <toolbar:toolbaritem xlink:href=".uno:Underline"/> + <toolbar:toolbaritem xlink:href=".uno:UnderlineDouble" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Overline" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Strikeout"/> + <toolbar:toolbaritem xlink:href=".uno:Shadowed" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:OutlineFont" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:SubScript" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:SuperScript" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:Color"/> + <toolbar:toolbaritem xlink:href=".uno:BackColor"/> + <toolbar:toolbaritem xlink:href=".uno:FontDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:DefaultBullet"/> + <toolbar:toolbaritem xlink:href=".uno:DefaultNumbering"/> + <toolbar:toolbaritem xlink:href=".uno:SetOutline" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:IncrementIndent"/> + <toolbar:toolbaritem xlink:href=".uno:DecrementIndent"/> + <toolbar:toolbaritem xlink:href=".uno:IncrementSubLevels" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:DecrementSubLevels" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:LeftPara"/> + <toolbar:toolbaritem xlink:href=".uno:CenterPara"/> + <toolbar:toolbaritem xlink:href=".uno:RightPara"/> + <toolbar:toolbaritem xlink:href=".uno:JustifyPara"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:CommonAlignTop" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:CommonAlignVerticalCenter" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:CommonAlignBottom" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ParaLeftToRight"/> + <toolbar:toolbaritem xlink:href=".uno:ParaRightToLeft"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ParaspaceIncrease" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ParaspaceDecrease" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:LineSpacing"/> + <toolbar:toolbaritem xlink:href=".uno:BackgroundColor"/> + <toolbar:toolbaritem xlink:href=".uno:ParagraphDialog-more"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:InsertGraphic"/> + <toolbar:toolbaritem xlink:href=".uno:InsertTable"/> + <toolbar:toolbaritem xlink:href=".uno:InsertObjectChart" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:InsertObject" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:CharmapControl"/> + <toolbar:toolbaritem xlink:href=".uno:InsertDraw"/> + <toolbar:toolbaritem xlink:href=".uno:DrawText" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:FontworkGalleryFloater" toolbar:visible="false"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:HyperlinkDialog"/> + <toolbar:toolbaritem xlink:href=".uno:InsertFootnote"/> + <toolbar:toolbaritem xlink:href=".uno:InsertBookmark"/> + <toolbar:toolbaritem xlink:href=".uno:InsertReferenceField"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:SpellingAndGrammarDialog" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:InsertAnnotation"/> + <toolbar:toolbaritem xlink:href=".uno:TrackChanges"/> + <toolbar:toolbarseparator/> + <toolbar:toolbaritem xlink:href=".uno:ControlCodes"/> + <toolbar:toolbaritem xlink:href=".uno:Zoom"/> +</toolbar:toolbar> diff --git a/sw/uiconfig/swriter/toolbar/singlemode.xml b/sw/uiconfig/swriter/toolbar/singlemode.xml index 7df078f713c4..4058675970e9 100644 --- a/sw/uiconfig/swriter/toolbar/singlemode.xml +++ b/sw/uiconfig/swriter/toolbar/singlemode.xml @@ -7,78 +7,18 @@ * 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 . --> <toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink"> <toolbar:toolbaritem xlink:href=".uno:AddDirect" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:OpenFromWriter"/> - <toolbar:toolbaritem xlink:href=".uno:Save"/> - <toolbar:toolbaritem xlink:href=".uno:ExportDirectToPDF" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:ExportDirectToEPUB" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:Print"/> + <toolbar:toolbaritem xlink:href=".uno:OpenFromWriter" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Save" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:ExportTo" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Print" toolbar:visible="false"/> <toolbar:toolbaritem xlink:href=".uno:PrintPreview" toolbar:visible="false"/> <toolbar:toolbarseparator/> <toolbar:toolbaritem xlink:href=".uno:Undo"/> - <toolbar:toolbaritem xlink:href=".uno:Redo"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:SearchDialog"/> - <toolbar:toolbaritem xlink:href=".uno:FormatPaintbrush"/> - <toolbar:toolbaritem xlink:href=".uno:SpellingAndGrammarDialog" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:Zoom" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:Bold"/> - <toolbar:toolbaritem xlink:href=".uno:Italic"/> - <toolbar:toolbaritem xlink:href=".uno:Underline"/> - <toolbar:toolbaritem xlink:href=".uno:Strikeout" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:FontColor"/> - <toolbar:toolbaritem xlink:href=".uno:BackColor" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:SuperScript" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:SubScript" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:ResetAttributes" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:StyleApply"/> - <toolbar:toolbaritem xlink:href=".uno:StyleUpdateByExample" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:StyleNewByExample" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:CharFontName"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:FontHeight"/> - <toolbar:toolbaritem xlink:href=".uno:Grow" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:Shrink" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:LeftPara"/> - <toolbar:toolbaritem xlink:href=".uno:CenterPara"/> - <toolbar:toolbaritem xlink:href=".uno:RightPara"/> - <toolbar:toolbaritem xlink:href=".uno:JustifyPara"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:DefaultBullet"/> - <toolbar:toolbaritem xlink:href=".uno:DefaultNumbering"/> - <toolbar:toolbaritem xlink:href=".uno:SetOutline" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:IncrementIndent"/> - <toolbar:toolbaritem xlink:href=".uno:DecrementIndent"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:LineSpacing"/> - <toolbar:toolbaritem xlink:href=".uno:Spacing" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:ParaspaceIncrease" toolbar:visible="false"/> - <toolbar:toolbaritem xlink:href=".uno:ParaspaceDecrease" toolbar:visible="false"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:InsertTable"/> - <toolbar:toolbaritem xlink:href=".uno:InsertGraphic"/> - <toolbar:toolbaritem xlink:href=".uno:HyperlinkDialog"/> - <toolbar:toolbaritem xlink:href=".uno:InsertAnnotation"/> - <toolbar:toolbaritem xlink:href=".uno:TrackChanges"/> - <toolbar:toolbarseparator/> - <toolbar:toolbaritem xlink:href=".uno:ControlCodes"/> - <toolbar:toolbaritem xlink:href=".uno:Zoom" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Redo" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Cut" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Copy" toolbar:visible="false"/> + <toolbar:toolbaritem xlink:href=".uno:Paste"/> </toolbar:toolbar> |