diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/uitest/findBar/tdf115665.py | 55 | ||||
-rw-r--r-- | sw/source/uibase/uiview/viewsrch.cxx | 9 |
2 files changed, 64 insertions, 0 deletions
diff --git a/sw/qa/uitest/findBar/tdf115665.py b/sw/qa/uitest/findBar/tdf115665.py new file mode 100644 index 000000000000..94409589e427 --- /dev/null +++ b/sw/qa/uitest/findBar/tdf115665.py @@ -0,0 +1,55 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- +# +# 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/. +# + +from uitest.framework import UITestCase +from libreoffice.uno.propertyvalue import mkPropertyValues +from uitest.uihelper.common import select_pos +from uitest.uihelper.common import select_by_text +from uitest.uihelper.common import get_state_as_dict + +class tdf115665(UITestCase): + + def test_tdf115665(self): + + with self.ui_test.create_doc_in_start_center("writer"): + xWriterDoc = self.xUITest.getTopFocusWindow() + xWriterEdit = xWriterDoc.getChild("writer_edit") + + # Type a line to use for search + xWriterEdit.executeAction("TYPE", mkPropertyValues({"TEXT": "This is happiness."})) + + # Open the F&R dialog and set to find search term with attribute format UPPERCASE + with self.ui_test.execute_modeless_dialog_through_command(".uno:SearchDialog", close_button="close") as xDialog: + format = xDialog.getChild("format") + with self.ui_test.execute_blocking_action(format.executeAction, args=('CLICK', ())) as dialog: + xTabs = dialog.getChild("tabcontrol") + select_pos(xTabs, "1") + xEffectsLb = dialog.getChild("effectslb") + select_by_text(xEffectsLb, "UPPERCASE") + + # Open the find bar + xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "CTRL+f"})) + + # Type "happiness" in the find bar search edit box + xfind = xWriterDoc.getChild("find") + xfind.executeAction("TYPE", mkPropertyValues({"TEXT": "happiness"})) + + xfind_bar = xWriterDoc.getChild("FindBar") + + # Press on Find All in the find bar + xfind_bar.executeAction("CLICK", mkPropertyValues({"POS": "4"})) # 4 is Find All + + # Without the fix in place the test would fail with + # AssertionError: '' != 'happiness' + self.assertEqual(get_state_as_dict(xWriterEdit)["SelectedText"], "happiness") + + # Close the find bar + xfind_bar.executeAction("CLICK", mkPropertyValues({"POS": "0"})) # 0 is pos for close + +# vim: set shiftwidth=4 softtabstop=4 expandtab: diff --git a/sw/source/uibase/uiview/viewsrch.cxx b/sw/source/uibase/uiview/viewsrch.cxx index 9f7c9cabe130..849122fe0e94 100644 --- a/sw/source/uibase/uiview/viewsrch.cxx +++ b/sw/source/uibase/uiview/viewsrch.cxx @@ -232,6 +232,15 @@ void SwView::ExecSearch(SfxRequest& rReq) s_pSrchItem = pArgs->Get(SID_SEARCH_ITEM).Clone(); } } + + // tdf#115665 Format in the CTRL+H search affects the CTRL+F search + if (const SfxBoolItem* pUseAttrItemListItem + = pArgs->GetItemIfSet(SID_SEARCH_USE_ATTR_ITEM_LIST, false)) + { + if (!pUseAttrItemListItem->GetValue()) + s_xSearchList.reset(); + } + SvxSearchCmd eCommand = s_pSrchItem->GetCommand(); switch (eCommand) { |