There is currently no way to directly make use of
hyperlinking. Was this reference in the API documentation
or in user documentation, so I can clarify the current
state of the code? I would like to add hyperlink
functionality at some point but haven't gotten around to it.
I'll do a little investigation on the single click expand
collapse and see how feasible it is.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I looked into the single click expand/collapse. It's pretty
easy to do but the UI gets a bit awkward with some of the
new shift-doubleclick functionality I've added post 1.8.8.
However, If you want to make this change to your own
release the code changes to IconKeyListener.java are very
minor. Here they are :
1) Comment out the following two lines in the
processDoubleClick method at about line 183:
I added a "Single click expands/collapses nodes" preference
to the "Editor" preferences panel. This will be available
in the 1.8.9 release.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=102030
There is currently no way to directly make use of
hyperlinking. Was this reference in the API documentation
or in user documentation, so I can clarify the current
state of the code? I would like to add hyperlink
functionality at some point but haven't gotten around to it.
I'll do a little investigation on the single click expand
collapse and see how feasible it is.
Logged In: YES
user_id=102030
I looked into the single click expand/collapse. It's pretty
easy to do but the UI gets a bit awkward with some of the
new shift-doubleclick functionality I've added post 1.8.8.
However, If you want to make this change to your own
release the code changes to IconKeyListener.java are very
minor. Here they are :
1) Comment out the following two lines in the
processDoubleClick method at about line 183:
//textArea.node.getTree().setSelectedNodesParent
(textArea.node.getParent());
//textArea.node.getTree().addNodeToSelection(textArea.node);
2) Add a processDoubleClick(e) at about line 106:
if ((e.getClickCount() % 2) == 1) {
processSingleClick(e);
processDoubleClick(e);
} else if ((e.getClickCount() % 2) == 0){
processDoubleClick(e);
}
Logged In: YES
user_id=102030
I added a "Single click expands/collapses nodes" preference
to the "Editor" preferences panel. This will be available
in the 1.8.9 release.