desktop/source/lib/init.cxx | 19 ++++++++++++++++++- sfx2/source/control/unoctitm.cxx | 19 ++++++++++++++++++- 2 files changed, 36 insertions(+), 2 deletions(-)
New commits: commit 5c7ab8259c7016441df45e04fd3be242e6205c1d Author: Pranav Kant <[email protected]> Date: Mon May 23 13:32:47 2016 +0530 lok: Subcribe to more uno commands for state change Change-Id: Id2870b176de4163fbe01e4ac380b4981d3187d90 diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 09f6883..2ea994d 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -763,7 +763,24 @@ static void doc_iniUnoCommands () OUString(".uno:Redo"), OUString(".uno:InsertPage"), OUString(".uno:DeletePage"), - OUString(".uno:DuplicatePage") + OUString(".uno:DuplicatePage"), + OUString(".uno:Cut"), + OUString(".uno:Copy"), + OUString(".uno:Paste"), + OUString(".uno:SelectAll"), + OUString(".uno:InsertAnnotation"), + OUString(".uno:InsertRowsBefore"), + OUString(".uno:InsertRowsAfter"), + OUString(".uno:InsertColumnsBefore"), + OUString(".uno:InsertColumnsAfter"), + OUString(".uno:DeleteRows"), + OUString(".uno:DeleteColumns"), + OUString(".uno:DeleteTable"), + OUString(".uno:SelectTable"), + OUString(".uno:EntireRow"), + OUString(".uno:EntireColumn"), + OUString(".uno:EntireCell"), + OUString(".uno:MergeCells") }; util::URL aCommandURL; diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index 899fcd8..a2eaff9 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -986,7 +986,24 @@ void SfxDispatchController_Impl::InterceptLOKStateChangeEvent(const SfxObjectShe aBuffer.append(nColor); } else if (aEvent.FeatureURL.Path == "Undo" || - aEvent.FeatureURL.Path == "Redo") + aEvent.FeatureURL.Path == "Redo" || + aEvent.FeatureURL.Path == "Cut" || + aEvent.FeatureURL.Path == "Copy" || + aEvent.FeatureURL.Path == "Paste" || + aEvent.FeatureURL.Path == "SelectAll" || + aEvent.FeatureURL.Path == "InsertAnnotation" || + aEvent.FeatureURL.Path == "InsertRowsBefore" || + aEvent.FeatureURL.Path == "InsertRowsAfter" || + aEvent.FeatureURL.Path == "InsertColumnsBefore" || + aEvent.FeatureURL.Path == "InsertColumnsAfter" || + aEvent.FeatureURL.Path == "DeleteRows" || + aEvent.FeatureURL.Path == "DeleteColumns" || + aEvent.FeatureURL.Path == "DeleteTable" || + aEvent.FeatureURL.Path == "SelectTable" || + aEvent.FeatureURL.Path == "EntireRow" || + aEvent.FeatureURL.Path == "EntireColumn" || + aEvent.FeatureURL.Path == "EntireCell" || + aEvent.FeatureURL.Path == "MergeCells") { aBuffer.append(aEvent.IsEnabled ? OUString("enabled") : OUString("disabled")); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
