-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
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
Make specified row visible in table #3692
Comments
Writing some ideas but note this is going in quite many direction: Altering That value of 17 is likely to be
or
Generally speaking, TL;DR; I need we need to:
Sorry this may be all a little bit cryptic, writing is mainly in order to leave a trail. |
Thank you, that was really helpful. Didn't expect the quick response. I just started using imgui a few days ago and I was trying to study the API to figure out the best way to implement this feature. |
…ed (fix nav in one axis scrolling back and forth between axises when space is tight by just < ItemSpacing*2) (ocornut#3692, ocornut#2812, ocornut#4242, ocornut#2900) Amend 8f495e5
…. (toward #5143, #4868, #3692, #3518) This is not strictly required presently, but will be consistent with adding inner decoration sizes in next commit, as well as generally being sane. Locking TitleBarHeight() / MenuBarHeight() values per-window probably have side-effects in ill-defined situation related to changing font size per window.
Internal scrolling functions with frozen rows/columns should be fixed in latest (by recent commits, mostly 16cee3d +fd0b373) ! |
…. (toward ocornut#5143, ocornut#4868, ocornut#3692, ocornut#3518) This is not strictly required presently, but will be consistent with adding inner decoration sizes in next commit, as well as generally being sane. Locking TitleBarHeight() / MenuBarHeight() values per-window probably have side-effects in ill-defined situation related to changing font size per window.
…with frozen rows and columns. (ocornut#5143, ocornut#4868, ocornut#3692)
…ssed over. (ocornut#5143, ocornut#3692) Frozen rows (~header) still moving from menu to main layer based on freezing stat.e
Version/Branch of Dear ImGui:
Version: 1.80 WIP (17909)
Branch: master
My Issue/Question:
A useful feature for the tables API would be to have a way to ensure that a specific row is visible. An example of the API I'm requesting can be seen in wxWidgets where there is a function called
Focus
andEnsureVisible
. These functions take in the index of the row and check if the row is currently visible. If the row is not currently visible then the table is scrolled until the row is in view.Here is a hacky proof of concept, where I've implemented scrolling to a selected row:
This is the code I'm using to implement a debugger which can step through disassembled code. The
Focus
function ensures that each time I step to the next line of code, the next line of code will still be visible. I'm using it for a rather niche purpose however I'm sure there are many other uses. For example this could be used to search for an item in a table and scrolling that item into view.The text was updated successfully, but these errors were encountered: