MarineB210 / calculator-cucumber-2024

This repository is used for teaching purposes at the University of Mons. It contains Java code for computing arithmetic expressions. The code uses design patterns and is accompanied with JavaDoc, unit tests and BDD scenarios. We have also paid particular attention to code quality.
2 stars 1 forks source link

[FEATURE] Java-based GUI for calculator #7

Closed MarineB210 closed 6 months ago

MarineB210 commented 7 months ago

Describe the new functionality you would like to see In the current implementation, arithmetic expressions need to be build manually, from scratch. A real calculator has a graphical user interface (GUI) through which you can enter expressions by pressing the buttons of your calculator, and getting the result of evaluating your expression that will be shown on the calculator's display screen.

Additional context To create the GUI, select and motivate the most appropriate framework for doing so. Many Java GUI frameworks are available: Oracle JavaFX (successor of Swing), Oracle Swing (successor and extension of AWT), Apache Pivot (open source framework), Eclipse SWT (also open source), ...