feat(gui): A a tree structure usage search information#2498
Merged
skylot merged 3 commits intoskylot:masterfrom May 20, 2025
Merged
feat(gui): A a tree structure usage search information#2498skylot merged 3 commits intoskylot:masterfrom
skylot merged 3 commits intoskylot:masterfrom
Conversation
skylot
approved these changes
May 20, 2025
Owner
skylot
left a comment
There was a problem hiding this comment.
@17307 looks good. Thank you 👍
Although, I think, we can use an actual tree (JTree with lazy loading) to represent usage on deeper levels, instead of opening a new list. This should reduce UI clutter and simplify navigation, but, as always, this is a suggestion for future improvement 🙂
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When I use jadx, I really like its usage search feature. However, I encountered an issue while using this feature: it can only display the usage information of one function at a time.
In order to obtain usage information layer by layer, I have to open many usage dialogs, which is very confusing. To solve this, I have added a dialog that displays usage information in a tree structure.
Right click a node supports jumping to the specified location and copying the call path from the initial node to the current node. When left clicking a node, the code at the current node will be rendered.