I'm learning JavaFx now and MVC and I'm trying to connect my button to the model through the Controller. I tried many ways to use button.setOnActive(EventHandler e);
but it doesn't work outside the view class
so what is the proper way to do it?
this is my View class
public class View extends Application{
private TextField num1;
private Label addLabel;
private TextField num2;;
public Button calcB;
private TextField sol;
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Calculator");
num1 = new TextField();
addLabel = new Label("+");
num2 = new TextField();
calcB = new Button("Calculate");
**// I'm trying to use this in the Controller
calcB.setOnAction(event -> System.exit(0));**
sol = new TextField();
FlowPane flowPane = new FlowPane();
flowPane.getChildren().addAll(num1, addLabel, num2, calcB, sol);
Scene scene = new Scene(flowPane, 600, 200);
primaryStage.setScene(scene);
primaryStage.show();
}
public int getNum1(){
return Integer.parseInt(num1.getText());
}
public int getNum2(){
return Integer.parseInt(num2.getText());
}
public void setSol(int sol){
this.sol.setText(Integer.toString(sol));
}
and this is my Controller Class
public class Controller{
private View theView;
private Model theModel;
public Controller(Button b, EventHandler<ActionEvent> e) {
this.theView = theView;
this.theModel = theModel;
**//SetOnActive() method should be somewhere in this Class**
}
I know that I should connect the button to a method in the model but right now I just want to know how I can make it work.
My model
public class Model {
private int calculationValue;
public void addTwoNumbers(int firstNumber, int secondNumber){
calculationValue = firstNumber + secondNumber;
}
public int getCalculationValue() {
return calculationValue;
}
}
this is my main too
public class Main {
public static void main(String[] args){
View view = new View();
Model model = new Model();
Controller controller = new Controller(view, model);
Application.launch(View.class, args);
}
Create a blank project with a ControllerA, ControllerB, Driver, ViewA, and ViewB classes using the code below, then run the code from the main method within the Driver class.
This should hopefully show you how events can be handled by a controller.
Driver:
ControllerA:
ViewA:
ControllerB:
View B: