Turned this into a standalone FreeCAD Mod

This commit is contained in:
Suzanne Soy 2021-10-02 20:36:53 +01:00
parent 669e557d10
commit 9967b4dab3
3 changed files with 20 additions and 13 deletions

0
Init.py Normal file
View File

1
InitGui.py Normal file
View File

@ -0,0 +1 @@
import SearchTools

View File

@ -15,9 +15,11 @@ OK split the list of tools vs. document objects
OK save to disk the list of tools OK save to disk the list of tools
OK always display including when switching workbenches OK always display including when switching workbenches
* slightly larger popup widget to avoid scrollbar for the extra info for document objects * slightly larger popup widget to avoid scrollbar for the extra info for document objects
* turn this into a standalone mod OK turn this into a standalone mod
OK Optimize so that it's not so slow OK Optimize so that it's not so slow
OK speed up startup to show the box instantly and do the slow loading on first click. OK speed up startup to show the box instantly and do the slow loading on first click.
* One small bug: when the 3D view is initialized, it causes a loss of focus on the drop-down. We restore it, but the currently-selected index is left unchanged, so the down or up arrow has to be pressed twice.
* split into several files, try to keep the absolute minimum of code possible in the main file to speed up startup
""" """
################################"" ################################""
@ -747,15 +749,19 @@ def getItemGroups():
return igs return igs
def addToolSearchBox(): def onResultSelected(index, nfo):
global wax, sea
sea = SearchBox(getItemGroups)
mw = FreeCADGui.getMainWindow()
mbr = mw.findChildren(QtGui.QToolBar, 'File')[0]
# Create search box widget
def onResultSelected(index, nfo):
action = nfo['action'] action = nfo['action']
actionHandlers[action['handler']](action) actionHandlers[action['handler']](action)
def addToolSearchBox():
global wax, sea
mw = FreeCADGui.getMainWindow()
mbr = mw.findChildren(QtGui.QToolBar, 'File')
if len(mbr) > 0:
# Get the first toolbar named 'File', and add
mbr = mbr[0]
# Create search box widget
sea = SearchBox(getItemGroups)
sea.resultSelected.connect(onResultSelected) sea.resultSelected.connect(onResultSelected)
wax = QtGui.QWidgetAction(None) wax = QtGui.QWidgetAction(None)
wax.setDefaultWidget(sea) wax.setDefaultWidget(sea)