T-640
T-640
> Ok, I think that I have fixed everything. Indeed, but I caught a few more:  1) Hard to notice, but on the left side of header...
> I can't reproduce with the latest changes (see below). My bad, it was just the style of `QFrame`'s frame that I have changed to `QFrame::Box | QFrame::Sunken` > Fixed,...
> I don't know why it happens I will try to have a look, maybe I'll find something. Could you introduce something like `QHexDelegate::drawVerticalSeparators` and `QHexDelegate::drawHorizontalSeparator`? I have found a...
> Added as QHexDelegate::paintSeparator, I've also added... > Fixed, `QFontMetrics::elidedText`... Tested, working well. About that issue with the right side of widget: it has definitely something to do with setting...
It looks like despite `QHexView` with auto-width setting its own size, Qt resizes the widget slightly. Subclass `QHexView`, reimplement the `resizeEvent` and observe: ```c++ #include #include class Test : public...
Could be a viewport issue too. `setAutoWidth` is set to true, font is increased to force the horizontal scrollbar, thus cell size is larger, but the distance from the border...
I guess I found a sort of solution. It involves... adding three pixels to the width. No idea why, and I am not a fan of adding some hardcoded values,...
Probably one last thing I would like to ask for is a widget that complements the search and replace functionality. Otherwise everyone would just have to make their own, reinventing...
Two small bugs: 1) Horizontal scrollbar sometimes does not appear when supposed to. On the screenshot you can see that ASCII character 66 ('f') was selected, yet it is almost...
> I can port pattern based hex-search from REDasm (another project created by me): https://github.com/REDasmOrg/REDasm-Library/blob/master/rdcore/support/utils.cpp#L73 If you already have it working then of course, go for it. Is there any...