I'm working on a possibility to zoom into a UI. Therefore I can't access the components directly and have to catch the events on glasspane.
This works fine as long as I don't use auto-updating-components as JTextArea. Since this is an exam I can't use an external library for zooming.
The caret updating is my actual problem, so I'm looking for an option to get all events without having to attach a listener to the component.
There existed a SwingEventMonitor but I can't find it in Java6 anymore. Is the class just renamed? I can add AWTListener via Toolkit.getToolkit().. but since CaretEvent is a SwingEvent it seems like I can't cantch it this way.