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

Make specified row visible in table #3692

Closed
MonJamp opened this issue Jan 3, 2021 · 3 comments
Closed

Make specified row visible in table #3692

MonJamp opened this issue Jan 3, 2021 · 3 comments
Milestone

Comments

@MonJamp
Copy link

MonJamp commented Jan 3, 2021

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 and EnsureVisible. 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:

struct FocusListClipper : public ImGuiListClipper
{
	void Focus(int row_index)
	{
		ImGuiContext& g = *ImGui::GetCurrentContext();
		ImGuiWindow* window = g.CurrentWindow;
		// Item height is hard coded here
		int item_height = 17;
		window->Scroll.y = IM_FLOOR(item_height * row_index);
	}
};
FocusListClipper clipper;
clipper.Begin(disasmData.size());

if (focus_address)
{
	clipper.Focus(address_index);
	focus_address = false;
}

while (clipper.Step())
{
	for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++)
	{
		...

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.

@ocornut
Copy link
Owner

ocornut commented Jan 3, 2021

Writing some ideas but note this is going in quite many direction:

Altering window->Scroll.y after Begin() is undefined but you can call SetScrollY() and that new scroll value will be applied on the first Begin() of the next frame. Or use SetNextWindowScroll() before Begin().

That value of 17 is likely to be == GetTextLineHeightWithSpacing(). For framed items it will be == GetFrameHeightWithSpacing(). Since setting window->Scroll.y is likely to not apply at the end of the frame you may as well just do it after the clipper loop and use clipper.ItemsHeight. You might as well realize that your inherited class doesn't use the clipper at all, so you may just replace your code by:

(after the clipper loop)
if (focus_address)
   ImGui::SetScrollY(clipper.ItemsHeight * address_index);
focus_address = false;

or

(before the child Begin)
if (focus_address)
   ImGui::SetNextWindowScroll(ImVec2(-1.0f, ImGui::GetTextLineHeightWithSpacing() * address_index);
focus_address = false;

Generally speaking, SetScrollHereY() is designed to make a given current position visible, that but enforce centering, while imgui_internal.h's ScrollToBringRectIntoView() doesn't. SetScrollHereY() is also not easy to use with a clipper. And ScrollToBringRectIntoView() currently doesn't handle frozen rows correctly. Notice how Demo>Scrolling> uses SetScrollY() and SetScrollFromPosY(). Ref #2900.

TL;DR; I need we need to:

  • Consolidate SetScrollHereY + ScrollToBringRectIntoView() into a new more flexible function with flags (as "making item centered" vs "scrolling just enough to make visible" are both are desirable in different situations)
  • Fix ScrollToBringRectIntoView() to take account of frozen rows. The reason it is broken is those scroll function are currently relying on title bar height and menu bar height as hard-coded decoration sizes for a the non-scrolling part (the "menu layer") and we need to make that more flexible. But this requires a bit of a refactor as currently decoration sizes are locked during Begin() and we want to allow them to be extended later. When we do that along with fixing that function for frozen rows in tables, we can make it easier to setup custom status bars, and we can even remove the ImGuiWindowFlags_MenuBar flag completely as BeginMenuBar() could request the space dynamically.
  • Make it possible to request of the clipper to make a given region always unclipped to allow items SetScrollHere types of functions.

Sorry this may be all a little bit cryptic, writing is mainly in order to leave a trail.

@MonJamp
Copy link
Author

MonJamp commented Jan 3, 2021

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.

@ocornut ocornut added the clipper label Apr 7, 2021
ocornut added a commit that referenced this issue Sep 29, 2021
ocornut added a commit that referenced this issue Sep 29, 2021
ocornut added a commit that referenced this issue Nov 2, 2021
…ed (fix nav in one axis scrolling back and forth between axises when space is tight by just < ItemSpacing*2) (#3692, #2812, #4242, #2900)

Amend 8f495e5
actondev pushed a commit to actondev/imgui that referenced this issue Nov 26, 2021
…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
@ocornut ocornut added this to the v1.90 milestone Nov 24, 2022
@ocornut ocornut added the nav keyboard/gamepad navigation label Dec 2, 2022
ocornut added a commit that referenced this issue Dec 6, 2022
…. (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.
ocornut added a commit that referenced this issue Dec 6, 2022
@ocornut
Copy link
Owner

ocornut commented Dec 6, 2022

Internal scrolling functions with frozen rows/columns should be fixed in latest (by recent commits, mostly 16cee3d +fd0b373) !

@ocornut ocornut closed this as completed Dec 6, 2022
ocornut added a commit that referenced this issue Dec 6, 2022
…ssed over. (#5143, #3692)

Frozen rows (~header) still moving from menu to main layer based on freezing stat.e
maztheman pushed a commit to maztheman/imgui that referenced this issue Mar 10, 2025
…. (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.
maztheman pushed a commit to maztheman/imgui that referenced this issue Mar 10, 2025
maztheman pushed a commit to maztheman/imgui that referenced this issue Mar 10, 2025
…ssed over. (ocornut#5143, ocornut#3692)

Frozen rows (~header) still moving from menu to main layer based on freezing stat.e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants