Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

12. Twelfth Assignment JavaFX GUI Controls Memory Calculator This program is meant to use a GUI to actually control our memory calculator. To do this,

12. Twelfth Assignment JavaFX GUI Controls Memory Calculator

This program is meant to use a GUI to actually control our memory calculator. To do this, you will need to create an instance of MemoryCalc in the CalcGUI and write event Handlers to pass information back and forth between the calculator and the GUI. There are many possible ways to achieve this, but the easiest is probably to develop four different event Handlers: DigitHandler - This event Handler is added to the 0-9 and . (dot) keys. If the equals button was just pressed, this event Handler will overwrite the total shown in the text field with the value of the key (its label) that was just pressed. If the equals button was not just pressed, this event Handler will append the current key's label onto the end of the string shown in the text field.

OperatorHandler This event Handler is added to the +, -, *, and / keys. It sets the value of a class field to the operator that the user has chosen.

ClearHandler This event Handler is added to the C key. It calls the calculator's clear method and sets the value of the text field back to 0.0.

EqualsHandler This event Handler is added to the = key. It reads the current value from the text field, converts it to a double, and calls the appropriate calculator method based on the current operator, passing in the double value. The calculator will compute the answer, and then this event Handler will update the value in the text field to the calculator's current total.

That is all that required for the homework assignment, however I also encourage you to play around with the different types of calculators we have written in this course, perhaps after this course ends. For instance, you could add functionality for geometric operations like sine and cosine. Or you could create a Super Calculator that has different views for scalar, vector, and matrix calculations. Whatever you come up with, I suggest you clean it up and document it. Potential employers always look favorably on being able to review code you have written and ask you questions about it.

Hints: You can use the Action Event's getSource() method to get a reference to the button that was pressed, and you can use Button's getText() method to find out the label of that button.

When the EqualsHandler is converting the text shown in the text field into a double value in order to pass it to the calculator, be careful to handle the case where the text field contains an invalid value, such as 6..72. In this case you should catch the exception, display an error message to the user, and abort the call to the calculator (just restore the current total to the text field).

The user should only be able to enter numbers between when an operator has been selected and when the equals button has been pushed. The DigitHandler should ignore any button presses when the GUI is not in this state. You will be graded according to the following rubric: ?Something happens when the user clicks on any of the keys of the calculator JavaFX GUI ?The user cannot enter a value without first choosing an operator. ?The user is able to enter numbers correctly (i.e. the previous total is overwritten when the user starts a new number, and new digits are appended to the new number). ?When the equals button is pressed, the appropriate calculator method is called based on the operator the user has selected. ?When the equals button is pressed, the appropriate operand passed to the calculator method as an argument. ?When the equals button is pressed, the value in the text fieldis updated to the new total: ?The clear button calls the calculator's clear method and updates the text field to 0.0.

- Links -

JavaFX Calculator GUI code: https://paste.ofcode.org/AdRrrdDptwppqqGezGQpLN

Memory Calculator: https://paste.ofcode.org/m7LuNHZ9BsQSXjfKbsC88V

Thank you so much =)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning C# 2005 Databases

Authors: Karli Watson

1st Edition

0470044063, 978-0470044063

More Books

Students also viewed these Databases questions