You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a swing.Action with peer javax.swing.Action,
but there is no TextAction with peer javax.swing.text.TextAction.
From the API of javax.swing.text.TextAction
*AnAction implementation useful for key bindings that are shared across
* a number of different text components.
A TextAction has no explicit reference to a TextCompont,
but it acts on the last focused TextComponent. So you can have
a MenuItem with a TextAction which can act on each
TextComponent of the swing application.
Attached there is an implementation and an example app with
TextAction changing the fontsize.
Frank
The text was updated successfully, but these errors were encountered:
There is a swing.Action with peer javax.swing.Action,
but there is no TextAction with peer javax.swing.text.TextAction.
From the API of javax.swing.text.TextAction
A TextAction has no explicit reference to a TextCompont,
but it acts on the last focused TextComponent. So you can have
a MenuItem with a TextAction which can act on each
TextComponent of the swing application.
Attached there is an implementation and an example app with
TextAction changing the fontsize.
Frank
The text was updated successfully, but these errors were encountered: