gpt4 book ai didi

Java Swing——了解 JViewport

转载 作者:搜寻专家 更新时间:2023-11-01 03:12:58 24 4
gpt4 key购买 nike

我有一个带有 JScrollPane 的 JTable。 scrollPane 视口(viewport)有些东西我不明白...我现在在表中选择第 1000 行,它上面的许多行在屏幕上不可见。现在,当我检查第 0 行在当前视口(viewport)中是否可见时,它显示"is"。这是我的代码:

    JViewport viewport = scrollPane1.getViewport();
Rectangle rect = table1.getCellRect( 0, 1, true );

// Check if view completely contains the row 0 :
if( viewport.contains( rect.getLocation() ) )
System.out.println( "The current view contains row 0" );

此代码始终返回 true,并打印文本,无论我站在哪一行。我在这里遗漏了什么吗?

最佳答案

你要找的方法是

 getVisibleRect()

它在 JComponent 中定义,在您的上下文中使用它

 table1.getVisibleRect().contains(rect)

编辑:刚刚意识到您可能还在摸不着头脑——尽管所有已经给出的答案在技术上都是正确的:-)

基本上,这都是关于坐标系的,即相对于给定原点的位置。使用与位置相关的方法时,您必须了解该特定方法的坐标系,并且您不能混合使用不同的系统(至少不能不转换一个或另一个)。

但是你做了混合:

      // cellRect is in table coordinates
Rectangle cellRect = table.getCellRect(...)
// WRONG!!! use table coordinates in parent sytem
table.getParent().contains(cellRect.getLocation());

解决方案是找到一个坐标系,让上面找到的单元格位置有意义(或者手动将单元格位置转换到父系统,但这里不需要),有一些方法可以进行转换:

      // returns the visible part of any component in its own coordinates
// available for all components
Rectangle visible = table.getVisibleRect();
// special service method in JViewport, returning the visible portion
// of its single child in the coordinates of the child
Rectangle viewRect = ((Viewport) (table.getParent()).getViewRect();
// both are the same
visible.equals(viewRect)

查询表本身(而不是查询其父表)更可取,因为它不需要任何关于其父表的知识。

关于Java Swing——了解 JViewport,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5617223/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com