Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Added horizontal scroll bar for hex edit #2162

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

Xsakura1314
Copy link

Overview

I have implemented a horizontal scrollbar for the hex editor, which allows displaying columns that are outside the window when there are multiple columns. It also supports address jumping and displays the corresponding column.

Implementation description

I control the content display in the Byte Column by recording the offset value of the horizontal scrollbar.

Screenshots

PixPin_2025-03-09_20-12-02_1741522328880_0

Additional things

As you can see, there is currently a flickering issue in the ASCII column when scrolling to the left. I found that disabling the ImGuiTableFlags_SizingFixedFit flag resolves this issue. However, I noticed that when adding columns, the flickering does not occur, which is quite confusing. I have tried to analyze this but haven't made any progress. If you have any insights or suggestions, please let me know.

@paxcut
Copy link
Contributor

paxcut commented Mar 9, 2025

the top row with the byte column number don't seem to scroll with the bar.

@Xsakura1314
Copy link
Author

@paxcut
Yes,the top row with the byte column number don't change,but the first column address has changed.
Perhaps a toggle could be provided to fix either the row address or the column address.

@paxcut
Copy link
Contributor

paxcut commented Mar 9, 2025

if we call the top row of numbers that indicate the column byte index the x axis and the addresses on the left the y axis then I think that both should always be visible no matter where you scroll.

When you scroll up and down then the y axis should be the only one changing. If you scroll left and right then the x axis should be the only one changing. there isn't a case when you fix one or the other except when there is no scroll bar in that direction, ie, the whole window fits.

Another thing to consider is the fact that you are including the ascii column in the scrolling unit so that it is not possible to see the ascii values for the left most hex values at the same time. It seems that a better choice would be to always show both and have them slide together with the scroll bar.

… allowing the column address value to change.
@Xsakura1314
Copy link
Author

Fixing the ASCII column is an interesting feature, and I am considering implementing it in the future.

Currently, I have changed the way the address bar is displayed. When the scrollbar moves, the row address value remains fixed, while the column address value changes.

However, the most frustrating issue for me right now is the flickering of the ASCII column. If anyone has the expertise, I would greatly appreciate help in resolving this issue.

PixPin_2025-03-10_18-47-39

@WerWolv
Copy link
Owner

WerWolv commented Mar 11, 2025

Hey! Thanks a lot for the PR

The flickering ASCII column I noticed already too. It's there even without your PR.
I believe that it's because the number of columns changes, it needs to reflow the table and recalculate all the column widths. That takes a frame so on the first frame, the width is close to zero so it doesn't render anything.
One fix might be to pre-calculate the new width and setting the column width manually

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants