Added // TODO and updated READMEs

This commit is contained in:
Hallvard Trætteberg
2021-08-13 13:46:07 +00:00
parent 8075ed5f4b
commit cf0d1f6e87
6 changed files with 126 additions and 79 deletions

View File

@@ -13,6 +13,7 @@
<Label text="" fx:id="operandView"
GridPane.rowIndex="1" GridPane.columnIndex="0" GridPane.columnSpan="4"/>
<!-- multi-line button label with XML entity for newline -->
<Button text="E&#10;n&#10;t&#10;e&#10;r" onAction="#handleEnter"
GridPane.rowIndex="2" GridPane.columnIndex="3" GridPane.rowSpan="4"/>
@@ -47,10 +48,12 @@
GridPane.rowIndex="6" GridPane.columnIndex="1"/>
<Button text="*" onAction="#handleOpMult"
GridPane.rowIndex="6" GridPane.columnIndex="2"/>
<Button text="/" onAction="#handleOpDiv"
<!-- TODO -->
<Button text="/"
GridPane.rowIndex="6" GridPane.columnIndex="3"/>
<Button text="√" onAction="#handleOpSquareRoot"
<Button text="√"
GridPane.rowIndex="7" GridPane.columnIndex="0"/>
<Button text="π" onAction="#handlePi"
<Button text="π"
GridPane.rowIndex="7" GridPane.columnIndex="1"/>
</GridPane>