diff options
Diffstat (limited to 'src/demos/newt/TaskManagerTest1.java')
-rw-r--r-- | src/demos/newt/TaskManagerTest1.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/demos/newt/TaskManagerTest1.java b/src/demos/newt/TaskManagerTest1.java index f704a86..d2b7e98 100644 --- a/src/demos/newt/TaskManagerTest1.java +++ b/src/demos/newt/TaskManagerTest1.java @@ -33,6 +33,12 @@ public class TaskManagerTest1 implements WindowListener, KeyListener, MouseList public void windowMoved(WindowEvent e) { System.err.println("windowMoved "+e); } + public void windowGainedFocus(WindowEvent e) { + System.err.println("windowGainedFocus "+e); + } + public void windowLostFocus(WindowEvent e) { + System.err.println("windowLostFocus "+e); + } public void windowDestroyNotify(WindowEvent e) { System.err.println("windowDestroyNotify "+e); System.err.println("Window Event Listener DestroyNotify send stop request - START"); @@ -70,6 +76,9 @@ public class TaskManagerTest1 implements WindowListener, KeyListener, MouseList public void mouseDragged(MouseEvent e) { System.err.println("mouseDragged "+e); } + public void mouseWheelMoved(MouseEvent e) { + System.err.println("mouseWheelMoved "+e); + } void render(long context) { |