| Author |
addActionListener in HTML
|
Kevin P Smith
Ranch Hand
Joined: Feb 18, 2005
Posts: 362
|
|
This is a long shot, but is it possible to call a Swing actionPerformed/actionListner from a HREF within a Swing app in the same way as say from a JButton?
I am using a StringBuffer to create a HTML label to display some text to my Swing app page, but I need links to another panel within this page.
So I was thinking (hoping) there might be some way to create a type funtion within the page.
Anyone have any ideas (presuming my explanation actually makes sense)
KS
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
You can't, no. But you can add a MouseListener to the label, and respond to its mouseClicked event. That leaves you the problem of finding out where in the string you clicked, but maybe you can figure that out yourself.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Kevin P Smith
Ranch Hand
Joined: Feb 18, 2005
Posts: 362
|
|
|
Cheers for that, it gives me something to start with anyway.
|
 |
Stanislav Lapitsky
Ranch Hand
Joined: Dec 01, 2009
Posts: 53
|
|
Actually you can. Just add a muse listener to the JEditorPane/JTextPane. When it's clicked you can get position in the document using viewToModel() method passing the click point. Then get the HTMLDocument and call getCharacterElement() to get leaf Element. Then check the Element's attributes. If the attributes contain link attrs get do a desired action for the specific attrs.
That's source code snippet from HTMLEditorKit.
Hope this helps.
Regards,
Stas
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4164
|
|
|
Use a HyperlinkListener.
|
luck, db
There are no new questions, but there may be new answers.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
But those use JEditorPane. Keith was talking about labels.
|
 |
 |
|
|
subject: addActionListener in HTML
|
|
|