Prefuse 库:如何添加到使用 prefuse 库构建的节点?
我是 Prefuse 库和 Java 的新手。 我确实安装了 eclipse,用于 eclipse 的 flash builder 插件并编译了代码。我想对现有示例进行一些修改。 TreeView.java
在此示例中,我们仅添加文本作为节点。我可以添加一个网页链接,以便当用户单击节点时,将定向到网页。
请告诉我,如果你能帮助我吗?
问候,
维斯马兰。
I am new to Prefuse library and Java.
I did install eclipse,flash builder plugin for eclipse and compiled the code. I want to make some modifications to the existing sample. TreeView.java
In this sample we add only TEXT as a NODE. Can I add a link to web page so that when users click on a node, will direct to a web page.
Kindly let me know, If you can help me on this ?
Regards,
vismaran.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前从未这样做过,但我认为可以通过控制和操作来完成。
三个步骤:
定义打开外部网页的操作/活动;我假设这个类会扩展 prefuse Activity 类
将您的新活动添加到操作列表,并为其分配一个名称
添加向您的可视化添加一个新的 FocusControl 对象,并使用附加的活动创建它,以便当 vis 元素处于焦点时,会触发此活动。
我希望这有帮助。
I've never done this before, but I think it can be done via controls and actions.
Three steps:
Define an action/activity for opening external webpages; I would assume this class would extend the prefuse Activity class
Add your new activity to an action list, and assign it a name
Add a new FocusControl object to your visualization, and create it with the activity attached, so that when a vis element is in focus, this activity is trigger.
I hope this helps.