当前位置:  技术问答>java相关

请问根据一个坐标点怎么判断对应的JTree的哪一个节点上

    来源: 互联网  发布时间:2017-03-23

    本文导语:  //bow | 我比较懒惰,自己没看,不过这是相关的函数及说明(JavaDoc的API介绍) getPathForLocation public TreePath getPathForLocation(int x,                                    int y)Returns...

//bow

|
我比较懒惰,自己没看,不过这是相关的函数及说明(JavaDoc的API介绍)

getPathForLocation
public TreePath getPathForLocation(int x,
                                   int y)Returns the path for the node at the specified location. 

Parameters:
x - an integer giving the number of pixels horizontally from the left edge of the display area, minus any left margin
y - an integer giving the number of pixels vertically from the top of the display area, minus any top margin 
Returns:
the TreePath for the node at that location

--------------------------------------------------------------------------------

getRowForLocation
public int getRowForLocation(int x,
                             int y)Returns the row for the specified location. 

Parameters:
x - an integer giving the number of pixels horizontally from the left edge of the display area, minus any left margin
y - an integer giving the number of pixels vertically from the top of the display area, minus any top margin 
Returns:
the row corresponding to the location, or -1 if the location is not within the bounds of a displayed cell
See Also:
getClosestRowForLocation(int, int)

--------------------------------------------------------------------------------

getClosestPathForLocation
public TreePath getClosestPathForLocation(int x,
                                          int y)Returns the path to the node that is closest to x,y. If no nodes are currently viewable, or there is no model, returns null, otherwise it always returns a valid path. To test if the node is exactly at x, y, get the node's bounds and test x, y against that. 

Parameters:
x - an integer giving the number of pixels horizontally from the left edge of the display area, minus any left margin
y - an integer giving the number of pixels vertically from the top of the display area, minus any top margin 
Returns:
the TreePath for the node closest to that location, null if nothing is viewable or there is no model
See Also:
getPathForLocation(int, int), getPathBounds(javax.swing.tree.TreePath)

--------------------------------------------------------------------------------

getClosestRowForLocation
public int getClosestRowForLocation(int x,
                                    int y)Returns the row to the node that is closest to x,y. If no nodes are viewable or there is no model, returns -1. Otherwise, it always returns a valid row. To test if the returned object is exactly at x, y, get the bounds for the node at the returned row and test x, y against that. 

Parameters:
x - an integer giving the number of pixels horizontally from the left edge of the display area, minus any left margin
y - an integer giving the number of pixels vertically from the top of the display area, minus any top margin 
Returns:
the row closest to the location, -1 if nothing is viewable or there is no model
See Also:
getRowForLocation(int, int), getRowBounds(int)

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问有谁知:“空格”对应%20, “<“对应%3C,这是几进制或是什么格式的转换?
  • 请问哪里可以下载IP地址段对应城市的信息?高分回报!
  • 请问有没有和DU或DF对应的系统调用?
  • 知道IP地址,请问如何获取这个IP地址对应网卡的mac地址?
  • 请问这些文件操作,对应的FTP命令是什么呀?
  • 请问unix 对应dos findfirst的函数是opendir吗?
  • 请问win32下的__int64,在linux下什么与之对应?
  • 请问图形界面下的logout对应的代码在哪里可以找到?
  • 请问:定义文件里需不需要用#include 将对应的头文件包含进来啊?
  • 请问Access数据库中的日期型字段是对应java中的哪个Date类?
  • 请问各不同的浏览器版本对应支持Java相应的哪个版本编译出来的程序?
  • 请问cf接口设备一般对应什么设备文件呢?
  • 请问linux中的系统调用号是如何跟系统调用表对应起来的
  • 请问SQL中的datetime类型于java中什么类型对应?
  • 请问:在用proc方式往数据库插入数据时,我能不能定义一个结构体,它与表的每一项对应,将结构体赋好值后,再只将这个结构体插入表中,这行不行啊?
  • 请问linux下ftell函数的对应64位函数?
  • 请问如何知道一个数字对应的是什么信号
  • 请问驱动程序里怎么得到用户空间地址对应的物理地址?
  • 请问:我知道路由器的telnet密码,但忘记了enable 密码,请问如何是好?
  • 请问那里有SYBASE的jbdb 2.0下载;jspsmartupload可以直接将文件上传到数据库,请问如何使用
  • 请问最新的reahat9.0是基于什么核心的?2.4?2.6?请问那里能下载?
  • 请问:请问哪里有关于linux基本操作命令讲解的资料下载,最好是幻灯片格式的.
  • 请问,我试图用#admintool&图形工具命令来安装sun workshop5.0,为什么进入的却是用户管理界面?请问具体该如何在solaris下安装应用软件
  • 请问在Redhat 9里,我从登录就是图形介面,请问如何在图形介面内进入命令行方式呢,谢谢
  • 请问玩过SOLARIS的高手门,在不正常关机后,就不能启动到windows公用桌面了,只能在命令提示模式下了,请问怎么解决这个问题啊?急~!~!
  • 请问:我在redhat下装了bochs-2.2.1-1.rpm,.装了后,想设置一下,但找不到bochsrc.fda.bxrc,请问这个文件在哪个曰录下啊。
  • 请问:在配置Qt时,很多文档都说在.profile,.login里加东西,但是我好像没有发现有这两个文件上,请问这些文件在哪个目录下啊
  • 请问:在GCC里的C程序里的变量的声明是不是只能在前面,而且相同类型的变量的声明只能放在一起?如果不是,请问怎么样可以解决这个问题.
  • 请问各位大虾,小弟今天开始学jsp了,这学期我们有java课,所以已经下载了jdk(好象是1.2),请问我的98环境怎么配置jsp环境呀?我的jdk可以运行.java程序,别的我就不知道了....谢谢!
  • 主机是WIN2000,我用的是LUNIX,请问是否可以共享上网? 如果可以请问如何设置? 500分答谢,龟儿食言!
  • 请问linux下GUI开发的问题!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3