Optimized frame repainting. Fixed mouse click processing.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / GuiComponent.java
index 75dbbf4..62e8eaf 100644 (file)
@@ -95,7 +95,7 @@ public class GuiComponent extends AbstractCompositeShape implements
     @Override
     public boolean keyPressed(final KeyEvent event, final ViewPanel viewPanel) {
         if (event.getKeyChar() == KeyboardHelper.ESC)
-            viewPanel.getKeyboardFocusTracker().popFocusOwner();
+            viewPanel.getKeyboardFocusStack().popFocusOwner();
         return true;
     }
 
@@ -105,16 +105,18 @@ public class GuiComponent extends AbstractCompositeShape implements
     }
 
     @Override
-    public void mouseClicked() {
-        viewPanel.getKeyboardFocusTracker().setFocusOwner(this);
+    public boolean mouseClicked() {
+        return viewPanel.getKeyboardFocusStack().pushFocusOwner(this);
     }
 
     @Override
-    public void mouseEntered() {
+    public boolean mouseEntered() {
+        return false;
     }
 
     @Override
-    public void mouseExited() {
+    public boolean mouseExited() {
+        return false;
     }
 
     private void setDimensions(final Point3D size) {