summaryrefslogtreecommitdiff
path: root/ui
AgeCommit message (Collapse)Author
2025-11-05Add overload for pixmapForBWMaskIcon with QColorGlenn Smith
2025-11-04Add support for Transforms to pass along metadata for display and storage.Brian Potchik
2025-11-04Update FilterEdit and FilterTarget to preserve existing selectionsMark Rowe
The down and enter keys now preserve an existing selection in the associated list or table views, rather than unconditionally selecting or activating the first item.
2025-11-03Add additional helpers for right-click menu cleanupPeter LaFosse
2025-11-03Provide better isValid handler to 'Type//*Peter LaFosse
2025-11-02Prioritize Container Browser for file open actions and enable direct opening ↵Brian Potchik
through the Container Browser dialog.
2025-10-24Fix TableViewBase breaking UI ABIMason Reed
2025-10-24Add functions for saving StringsView column stateAlexander Khosrowshahi
2025-10-24Add TableViewBase.h and base class QTableView uses in stringsview, memory ↵Alexander Khosrowshahi
map, searches, and tag types
2025-10-23remove context menu for show/hide password dialogJordan Wiens
2025-10-22masked settings icon changeJordan Wiens
2025-10-22Add interactive mode support to the container browser.Brian Potchik
2025-10-21Refactor strings view to support derived stringsRusty Wagner
2025-10-21Add derived strings and string recognizer APIRusty Wagner
2025-10-18Fix sticky header visibility.Alexander Taylor
2025-10-18Fix sticky header reanalyze button.Alexander Taylor
2025-10-18Fix sticky header not updating on theme change.Alexander Taylor
2025-10-17Header changes for nav in containerized views.Alexander Taylor
2025-10-10Add password prompting for encrypted containers in Container Browser.Brian Potchik
2025-10-07copy supporrt for variable and stack sidebarsJordan Wiens
2025-10-02Support loading BNDBs from container files.Brian Potchik
2025-10-01Ensure that all members of LinearView and HexEditor are initializedMark Rowe
Most members were initialized within the constructor, but a couple were only initialized later and could in some cases be accessed before being initialized. Members of types without default constructors are now initialized via default member initializers unless they're initialized in the class's member initializer list.
2025-09-30Initial support for opening container formats.Brian Potchik
2025-09-11add support for toggling views with tab in graph view tooJordan Wiens
2025-09-04Further improve feature map behavior when feature map pane is hiddenMark Rowe
2025-09-03Add disassembly setting for block labelsMason Reed
2025-08-29Add theme color for panes with keyboard focusRusty Wagner
2025-08-29Added additional theming for sidebar iconsRusty Wagner
2025-08-29Add a modal dialog option for cross referencesRusty Wagner
2025-08-29Highlight sidebar icon when the sidebar has focusRusty Wagner
2025-08-29Add a Pinned Cross References tab to hold pinned referencesRusty Wagner
2025-08-18Add ability to rebase the current view through the UIContext.Brian Potchik
2025-08-01Add log message dialog for showing stack tracesRusty Wagner
2025-08-01Add LogForException APIs to pass stack trace information separate from the ↵Rusty Wagner
message
2025-07-31improve focusing in type browserJordan Wiens
2025-07-31add focusandselectfilter for filtereditJordan Wiens
2025-07-31correct fix for s and i hotkeys in type browserJordan Wiens
2025-07-31fix initial focus in type browserJordan Wiens
2025-07-31fixing find hotkey in the typebrowserJordan Wiens
2025-07-25Fix workflow monitor toolbar button states during async workflow requests.Brian Potchik
2025-07-24Add ability to reset the Feature Map.Brian Potchik
2025-07-24Add tooltip to feature map for data type.Brian Potchik
2025-07-22Add OnActionExecutedImmutable to ui notifications and python apiAlexander Khosrowshahi
2025-07-16Miscellaneous leak fixes in UI codeMark Rowe
2025-07-15If type references exceed the xref item limit, other references may be less ↵Rusty Wagner
than the item limit but still not a complete list. Add the + indicator on the other categories if this condition is detected.
2025-07-12Add support for Assemble/Compile behavior for new Mapped views.Brian Potchik
2025-07-12Fix potential crash in FeatureMap during memory map changes.Brian Potchik
2025-07-12enhances expandable group to support expandable content and notJordan Wiens
2025-07-12Enhance MemoryRegionDialog with comprehensive region type support.Brian Potchik
2025-07-11Fix UpdateInfoFetcher lifetime issuesMark Rowe
`UpdateInfoFetcher` performs fetches asynchronously and needs to ensure it remains alive for the duration of the fetch. The fetch may not complete before its creator is destroyed, so `UpdateInfoFetcher` needs to control its own lifetime via `std::enable_shared_from_this`.