This commit is contained in:
Suzanne Soy 2022-03-12 19:30:31 +00:00
parent 40739754c6
commit 61037da9ac

View File

@ -1,27 +1,34 @@
# Avoid garbage collection by storing the action in a global variable # Avoid garbage collection by storing the action in a global variable
wax = None wax = None
sea = None
tbr = None
def addToolSearchBox(): def addToolSearchBox():
import FreeCADGui import FreeCADGui
from PySide import QtGui from PySide import QtGui
import SearchBoxLight import SearchBoxLight
global wax, sea global wax, sea, tbr
mw = FreeCADGui.getMainWindow() mw = FreeCADGui.getMainWindow()
if mw: if mw:
sea = SearchBoxLight.SearchBoxLight(getItemGroups = lambda: __import__('GetItemGroups').getItemGroups(), if sea is None:
getToolTip = lambda groupId, setParent: __import__('GetItemGroups').getToolTip(groupId, setParent), sea = SearchBoxLight.SearchBoxLight(getItemGroups = lambda: __import__('GetItemGroups').getItemGroups(),
getItemDelegate = lambda: __import__('IndentedItemDelegate').IndentedItemDelegate()) getToolTip = lambda groupId, setParent: __import__('GetItemGroups').getToolTip(groupId, setParent),
sea.resultSelected.connect(lambda index, groupId: __import__('GetItemGroups').onResultSelected(index, groupId)) getItemDelegate = lambda: __import__('IndentedItemDelegate').IndentedItemDelegate())
wax = QtGui.QWidgetAction(None) sea.resultSelected.connect(lambda index, groupId: __import__('GetItemGroups').onResultSelected(index, groupId))
wax.setWhatsThis('Use this search bar to find tools, document objects, preferences and more')
if wax is None:
wax = QtGui.QWidgetAction(None)
wax.setWhatsThis('Use this search bar to find tools, document objects, preferences and more')
sea.setWhatsThis('Use this search bar to find tools, document objects, preferences and more') sea.setWhatsThis('Use this search bar to find tools, document objects, preferences and more')
wax.setDefaultWidget(sea) wax.setDefaultWidget(sea)
##mbr.addWidget(sea) ##mbr.addWidget(sea)
#mbr.addAction(wax) #mbr.addAction(wax)
tbr = QtGui.QToolBar("SearchBar") #QtGui.QDockWidget() if tbr is None:
# Include FreeCAD in the name so that one can find windows labeled with FreeCAD easily in window managers which allow search through the list of open windows. tbr = QtGui.QToolBar("SearchBar") #QtGui.QDockWidget()
tbr.setObjectName("SearchBar") # Include FreeCAD in the name so that one can find windows labeled with FreeCAD easily in window managers which allow search through the list of open windows.
tbr.addAction(wax) tbr.setObjectName("SearchBar")
tbr.addAction(wax)
mw.addToolBar(tbr) mw.addToolBar(tbr)
tbr.show() tbr.show()