#9756 closed enhancement (fixed)
Debugger: Structure images list by path components of entries
Reported by: | stippi | Owned by: | anevilyak |
---|---|---|---|
Priority: | normal | Milestone: | Unscheduled |
Component: | Applications/Debugger | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
It is often too cumbersome to find code in the images list. The list structure is not optimal. Instead of being structured like this:
src/tools/text/TextCode.cpp src/tools/text/Font.cpp src/tools/text/Paragraph.cpp src/tools/brush/Brush.cpp src/tools/brush/Stroke.cpp
It should be structured like this:
src
tools
text
TextCode.cpp Font.cpp Paragraph.cpp
brush
Brush.cpp Stroke.cpp
I.e. it would be much easier to locate a source file and find a method. And then of course the methods would be the final leaf items just like now. But all other entries should be processed, so that common paths are extracted as the item hierarchy.
Change History (5)
comment:1 by , 12 years ago
Status: | new → in-progress |
---|---|
Version: | R1/alpha4.1 → R1/Development |
comment:2 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | in-progress → closed |
follow-up: 4 comment:3 by , 12 years ago
Very nice! I tried to check out the changes, but the build fails for me:
C++ generated/objects/haiku/x86/release/apps/debugger/ImageListView.o src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp: In member function 'void ImageFunctionsView::FunctionsTableModel::SetImageDebugInfo(ImageDebugInfo*)': src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:137:13: error: 'static int ImageFunctionsView::SourcePathComponentNode::CompareComponents(const ImageFunctionsView::SourcePathComponentNode*, const ImageFunctionsView::SourcePathComponentNode*)' is private src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:235:32: error: within this context src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp: In member function 'bool ImageFunctionsView::FunctionsTableModel::GetFunctionPath(FunctionInstance*, TreeTablePath&)': src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:131:13: error: 'static int ImageFunctionsView::SourcePathComponentNode::CompareByComponentName(const BString*, const ImageFunctionsView::SourcePathComponentNode*)' is private src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:318:33: error: within this context src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp: In member function 'bool ImageFunctionsView::FunctionsTableModel::_AddNextPathComponent(ImageFunctionsView::SourcePathComponentNode*, BString&, FunctionInstance*, LocatableFile*)': src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:131:13: error: 'static int ImageFunctionsView::SourcePathComponentNode::CompareByComponentName(const BString*, const ImageFunctionsView::SourcePathComponentNode*)' is private src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:396:30: error: within this context src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:137:13: error: 'static int ImageFunctionsView::SourcePathComponentNode::CompareComponents(const ImageFunctionsView::SourcePathComponentNode*, const ImageFunctionsView::SourcePathComponentNode*)' is private src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp:411:32: error: within this context
Do you work with GCC2 only?
comment:4 by , 12 years ago
comment:5 by , 11 years ago
Thanks for fixing that. Now that I got a chance to see it in action... it is just sooo much better than before. Huge usability boost! Many thanks for implementing that so fast!
Implemented in hrev45645.