A FreeCAD Mod which adds a search bar to the user inferface. The results include tools, document objects and (still to do) preferences.
.gitignore | ||
BuiltInSearchResults.py | ||
GetItemGroups.py | ||
IndentedItemDelegate.py | ||
Init.py | ||
InitGui.py | ||
LICENSE | ||
README.md | ||
RefreshTools.py | ||
ResultsDocument.py | ||
ResultsPreferences.py | ||
ResultsRefreshTools.py | ||
ResultsToolbar.py | ||
SafeViewer.py | ||
screenshot.png | ||
SearchBox.py | ||
SearchBoxLight.py | ||
SearchResults.py | ||
Serialize.py | ||
Tango-Tools-spanner-hammer.svg | ||
Tango-Tools-spanner-hammer.svg.url |
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.
Development
InitGui.py
adds an instance ofSearchBoxLight
to the GUI.SearchBoxLight
is a hollowed-out implementation of a search box, it loads everything lazily.