Pular para o conteúdo principal

A generic handler for all input events in JavaFX 2

The JavaFX API is really complete and sometimes I find new possibilities with it. This is a small blog post to describe what I recently did with the event handling part of the JavaFX API.

Update: Jonathan Giles pointed that we can add a handler to all kind of events with one single line instead call setOn* multiple times: lbl.addEventHandler(MouseEvent.ANY, eventHandler)

One handler to all Events
I'm creating a sample application for my portuguese blog about JavaFX basics and I was exploring the Event class to find the best way to create an event handler to demonstrate all Node's possible event input handlers.(or the most famous one)
I found that the event object has an attribute of type EventType and all the events implementations contains a String representation of that event. It can be done checking, for example, the MouseEvent class source code.
With this I created only one class to handle all the events on my sample program. I think it might be useful at certain cases so I decided to share the following Java code that declares only one handler to all the possible events generated in one node!
Notice that this might not be needed at all when Java 8 comes out, it's so easy to write a handler using Lambda Expressions...

Anyway, here's the sample code:


package main;

import javafx.application.Application;
import javafx.event.Event;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class Main extends Application { 

 public static void main(String[] args) {
  launch();
 }

 @Override
 public void start(Stage palco) throws Exception { 
  StackPane root = new StackPane(); 
  Label lbl = new Label(); 
  lbl.setText("Just a Test..");
  lbl.setFocusTraversable(true);
  root.getChildren().add(lbl); 
  Scene cena = new Scene(root, 250, 100); 
  palco.setTitle("Generic Handler"); 
  palco.setScene(cena); 
  palco.show(); 
  
  EventHandler eventHandler = new EventHandler() {
   @Override
   public void handle(Event evt) {
    String text = "";
    String eventType = evt.getEventType().toString();
    switch (eventType) {
     case "MOUSE_CLICKED":
      text = "Mouse Clicked";
      break; 
     case "MOUSE_ENTERED":
      text = "Mouse entedered";
      break; 
     case "MOUSE_EXITED":
      text = "Mouse exited";
      break;
     case "MOUSE_DRAGGED":
      text = "Mouse dragged";
      break; 
     case "MOUSE_MOVED":
      text = "Mouse mouved";
      break;
     case "MOUSE_RELEASED":
      text = "Mouse releasead";
      break;
     case "MOUSE_PRESSED":
      text = "Mouse pressed";
      break; 
     case "KEY_PRESSED":
      text = "Key pressed";
      break;   
      // could have others events as well...
     default:
      text = "Evento desconhecido: "+eventType;
      break;
    }
    System.out.println(text);    
   }
  };  
  // setting the handler to the events
  lbl.setOnMouseClicked(eventHandler);  
  lbl.setOnMouseEntered(eventHandler);
  lbl.setOnMouseExited(eventHandler);
  lbl.setOnMouseDragged(eventHandler);
  lbl.setOnMouseMoved(eventHandler);
  lbl.setOnMousePressed(eventHandler);
  lbl.setOnMouseReleased(eventHandler);
  lbl.setOnKeyPressed(eventHandler);  
 }
}

Comentários

Postagens mais visitadas deste blog

Dancing lights with Arduino - The idea

I have been having fun with Arduino these days! In this article I am going to show how did I use an electret mic with Arduino to create a Dancing Lights circuit. Dancing Lights   I used to be an eletronician before starting the IT college. I had my own electronics maintenance office to fix television, radios, etc. In my free time I used to create electronic projects to sell and I made a few "reais" selling a version of Dancing lights, but it was too limited: it simply animated lamps using a relay in the output of a 4017 CMOS IC. The circuit was a decimal counter  controlled by a 555. 4017 decimal counter. Source in the image When I met Arduino a few years ago, I was skeptical because I said: I can do this with IC, why should I use a microcontroller. I thought that Arduino was for kids. But now my pride is gone and I am having a lot of fun with Arduino :-) The implementation of Dancing Lights with Arduino uses an electret mic to capture the sound and light leds...

Simplest JavaFX ComboBox autocomplete

Based on this Brazilian community post , I've created a sample Combobox auto complete. What it basically does is: When user type with the combobox selected, it will work on a temporary string to store the typed text; Each key typed leads to the combobox to be showed and updated If backspace is type, we update the filter Each key typed shows the combo box items, when the combobox is hidden, the filter is cleaned and the tooltip is hidden:   The class code and a sample application is below. I also added the source to my personal github , sent me PR to improve it and there are a lot of things to improve, like space and accents support.

Genetic algorithms with Java

One of the most fascinating topics in computer science world is Artificial Intelligence . A subset of Artificial intelligence are the algorithms that were created inspired in the nature. In this group, we have Genetic Algorithms  (GA). Genetic Algorithms  To find out more about this topic I recommend the following MIT lecture and the Nature of Code book and videos created by Daniel Shiffman. Genetic Algorithms using Java After I remembered the basics about it, I wanted to practice, so I tried my own implementation, but I would have to write a lot of code to do what certainly others already did. So I started looking for Genetic Algorithm libraries and found Jenetics , which is a modern library that uses Java 8 concepts and APIs, and there's also JGAP . I decided to use Jenetics because the User Guide was so clear and it has no other dependency, but Java 8. The only thing I missed for Jenetics are more small examples like the ones I will show i...