desktop/source/lib/init.cxx | 27 ++++++++++++++++++++++++++- sfx2/source/control/unoctitm.cxx | 27 +++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 1 deletion(-)
New commits: commit e20b4a62c9fa7d57f8ef7aa9667584feaecbe7bd Author: Szymon Kłos <[email protected]> AuthorDate: Fri May 8 09:25:13 2020 +0200 Commit: Szymon Kłos <[email protected]> CommitDate: Fri May 8 12:23:57 2020 +0200 notebookbar: send uno items state update Change-Id: I56b9c64f11631bd28520b9294aef7d6db8da5733 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93700 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index fa04e95e2424..a6f87754b411 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -2689,7 +2689,32 @@ static void doc_iniUnoCommands () OUString(".uno:TransformPosX"), OUString(".uno:TransformPosY"), OUString(".uno:TransformWidth"), - OUString(".uno:TransformHeight") + OUString(".uno:TransformHeight"), + OUString(".uno:ObjectBackOne"), + OUString(".uno:SendToBack"), + OUString(".uno:ObjectForwardOne"), + OUString(".uno:BringToFront"), + OUString(".uno:WrapRight"), + OUString(".uno:WrapThrough"), + OUString(".uno:WrapLeft"), + OUString(".uno:WrapIdeal"), + OUString(".uno:WrapOn"), + OUString(".uno:WrapOff"), + OUString(".uno:UpdateCurIndex"), + OUString(".uno:InsertCaptionDialog"), + OUString(".uno:FormatGroup"), + OUString(".uno:SplitTable"), + OUString(".uno:MergeCells"), + OUString(".uno:DeleteNote"), + OUString(".uno:AcceptChanges"), + OUString(".uno:FormatPaintbrush"), + OUString(".uno:SetDefault"), + OUString(".uno:ParaLeftToRight"), + OUString(".uno:ParaRightToLeft"), + OUString(".uno:ParaspaceIncrease"), + OUString(".uno:ParaspaceDecrease"), + OUString(".uno:AcceptTrackedChange"), + OUString(".uno:RejectTrackedChange") }; util::URL aCommandURL; diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index 27daebaf3e9e..7dcbf16e5f2b 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1083,6 +1083,33 @@ static void InterceptLOKStateChangeEvent(sal_uInt16 nSID, SfxViewFrame* pViewFra aEvent.FeatureURL.Path == "SortDescending" || aEvent.FeatureURL.Path == "AcceptAllTrackedChanges" || aEvent.FeatureURL.Path == "RejectAllTrackedChanges" || + aEvent.FeatureURL.Path == "AcceptTrackedChange" || + aEvent.FeatureURL.Path == "RejectTrackedChange" || + aEvent.FeatureURL.Path == "NextTrackedChange" || + aEvent.FeatureURL.Path == "PreviousTrackedChange" || + aEvent.FeatureURL.Path == "FormatGroup" || + aEvent.FeatureURL.Path == "ObjectBackOne" || + aEvent.FeatureURL.Path == "SendToBack" || + aEvent.FeatureURL.Path == "ObjectForwardOne" || + aEvent.FeatureURL.Path == "BringToFront" || + aEvent.FeatureURL.Path == "WrapRight" || + aEvent.FeatureURL.Path == "WrapThrough" || + aEvent.FeatureURL.Path == "WrapLeft" || + aEvent.FeatureURL.Path == "WrapIdeal" || + aEvent.FeatureURL.Path == "WrapOn" || + aEvent.FeatureURL.Path == "WrapOff" || + aEvent.FeatureURL.Path == "UpdateCurIndex" || + aEvent.FeatureURL.Path == "InsertCaptionDialog" || + aEvent.FeatureURL.Path == "MergeCells" || + aEvent.FeatureURL.Path == "SplitTable" || + aEvent.FeatureURL.Path == "DeleteNote" || + aEvent.FeatureURL.Path == "AcceptChanges" || + aEvent.FeatureURL.Path == "FormatPaintbrush" || + aEvent.FeatureURL.Path == "SetDefault" || + aEvent.FeatureURL.Path == "ParaLeftToRight" || + aEvent.FeatureURL.Path == "ParaRightToLeft" || + aEvent.FeatureURL.Path == "ParaspaceIncrease" || + aEvent.FeatureURL.Path == "ParaspaceDecrease" || aEvent.FeatureURL.Path == "TableDialog" || aEvent.FeatureURL.Path == "FormatCellDialog" || aEvent.FeatureURL.Path == "FontDialog" || _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
