Updated README with warning, place search bar in a standalone toolbar instead of the File toolbar.
This commit is contained in:
parent
6de4f8cc4b
commit
aced20dca3
17
InitGui.py
17
InitGui.py
|
@ -7,12 +7,7 @@ def addToolSearchBox():
|
||||||
import SearchBoxLight
|
import SearchBoxLight
|
||||||
global wax, sea
|
global wax, sea
|
||||||
mw = FreeCADGui.getMainWindow()
|
mw = FreeCADGui.getMainWindow()
|
||||||
mbr = mw.findChildren(QtGui.QToolBar, 'File')
|
if mw:
|
||||||
# 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
|
|
||||||
sea = SearchBoxLight.SearchBoxLight(getItemGroups = lambda: __import__('GetItemGroups').getItemGroups(),
|
sea = SearchBoxLight.SearchBoxLight(getItemGroups = lambda: __import__('GetItemGroups').getItemGroups(),
|
||||||
getToolTip = lambda groupId, setParent: __import__('GetItemGroups').getToolTip(groupId, setParent),
|
getToolTip = lambda groupId, setParent: __import__('GetItemGroups').getToolTip(groupId, setParent),
|
||||||
getItemDelegate = lambda: __import__('IndentedItemDelegate').IndentedItemDelegate())
|
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')
|
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()
|
||||||
|
# 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()
|
addToolSearchBox()
|
||||||
import FreeCADGui
|
import FreeCADGui
|
||||||
|
|
18
README.md
18
README.md
|
@ -3,10 +3,28 @@ SearchBar
|
||||||
|
|
||||||
This FreeCAD mod adds a search bar for tools, document objects and preferences.
|
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.
|
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.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
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
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user