├── out └── production │ └── JavaFxCalculator │ ├── appInitilizer.class │ ├── MainFormContrller.class │ └── mainForm.fxml ├── .idea ├── vcs.xml ├── .gitignore ├── misc.xml ├── modules.xml └── uiDesigner.xml ├── JavaFxCalculator.iml └── src ├── appInitilizer.java ├── MainFormContrller.java └── mainForm.fxml /out/production/JavaFxCalculator/appInitilizer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/JavaFxCalculator/HEAD/out/production/JavaFxCalculator/appInitilizer.class -------------------------------------------------------------------------------- /out/production/JavaFxCalculator/MainFormContrller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasunthamsh/JavaFxCalculator/HEAD/out/production/JavaFxCalculator/MainFormContrller.class -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /JavaFxCalculator.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /out/production/JavaFxCalculator/mainForm.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/appInitilizer.java: -------------------------------------------------------------------------------- 1 | import javafx.application.Application; 2 | import javafx.fxml.FXMLLoader; 3 | import javafx.scene.Scene; 4 | import javafx.stage.Stage; 5 | 6 | import java.io.IOException; 7 | 8 | public class appInitilizer extends Application { 9 | 10 | public static void main(String[] args) { 11 | launch(args); 12 | } 13 | 14 | @Override 15 | public void start(Stage primaryStage) throws IOException { 16 | primaryStage.setScene(new Scene(FXMLLoader.load(getClass().getResource("mainForm.fxml")))); 17 | primaryStage.show(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/MainFormContrller.java: -------------------------------------------------------------------------------- 1 | import javafx.scene.control.Button; 2 | 3 | public class MainFormContrller { 4 | public Button btn2; 5 | public Button btn3; 6 | public Button btn1; 7 | public Button btn4; 8 | public Button btn5; 9 | public Button btn6; 10 | public Button btn7 ; 11 | public Button btn8; 12 | public Button btn9; 13 | public Button btn0; 14 | public Button btnP; 15 | public Button btnC; 16 | public Button btnDevtion; 17 | public Button btnX; 18 | public Button btnReduce; 19 | public Button btnPlus; 20 | public Button btnEq; 21 | public Button btnDot; 22 | } 23 | -------------------------------------------------------------------------------- /src/mainForm.fxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 18 | 22 | 26 | 30 | 34 | 41 | 45 | 49 | 53 | 57 | 61 | 65 | 69 | 73 | 77 | 82 | 87 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | --------------------------------------------------------------------------------