Updated README with warning, place search bar in a standalone toolbar instead of the File toolbar.

This commit is contained in:
Suzanne Soy 2022-01-27 01:38:10 +00:00
parent 6de4f8cc4b
commit aced20dca3
2 changed files with 27 additions and 8 deletions

View File

@ -7,12 +7,7 @@ def addToolSearchBox():
import SearchBoxLight
global wax, sea
mw = FreeCADGui.getMainWindow()
mbr = mw.findChildren(QtGui.QToolBar, 'File')
# The toolbar will be unavailable if this file is loaded during startup, because no workbench is active and no toolbars are visible.
if len(mbr) > 0:
# Get the first toolbar named 'File', and add
mbr = mbr[0]
# Create search box widget
if mw:
sea = SearchBoxLight.SearchBoxLight(getItemGroups = lambda: __import__('GetItemGroups').getItemGroups(),
getToolTip = lambda groupId, setParent: __import__('GetItemGroups').getToolTip(groupId, setParent),
getItemDelegate = lambda: __import__('IndentedItemDelegate').IndentedItemDelegate())
@ -21,8 +16,14 @@ def addToolSearchBox():
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')
wax.setDefaultWidget(sea)
#mbr.addWidget(sea)
mbr.addAction(wax)
##mbr.addWidget(sea)
#mbr.addAction(wax)
tbr = QtGui.QToolBar("SearchBar") #QtGui.QDockWidget()
# 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.setObjectName("SearchBar")
tbr.addAction(wax)
mw.addToolBar(tbr)
tbr.show()
addToolSearchBox()
import FreeCADGui

View File

@ -3,10 +3,28 @@ SearchBar
This FreeCAD mod adds a search bar for tools, document objects and preferences.
⚠️ Several issues related to the C++ memory management interacting badly with Python's have caused lots of segfaults during development. ⚠️
⚠️️ Most of these should now be solved, but save your work often and proceed with caution while testing this extension. ⚠️
Extensibility
-------------
It can be extended by other mods, by adding a new result provider.
Usage
-----
The search bar appars next to the What's this? tool, in FreeCAD's default File toolbar.
![Screenshot of the search bar, with results in its drop-down menu and extra info about the result in a separate pane](screenshot.png)
Development
-----------
* `InitGui.py` adds an instance of `SearchBoxLight` to the GUI.
* `SearchBoxLight` is a hollowed-out implementation of a search box, it loads everything lazily.
License
-------