1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-23 11:17:06 -07:00

Add the new UI components required for the plugin loading.

This commit is contained in:
Danila Fedorin 2017-08-02 18:24:20 -07:00
parent c2ae0b4138
commit 56510d97de
2 changed files with 8 additions and 0 deletions

View File

@ -42,6 +42,10 @@ public class AbacusController {
private Button inputButton;
@FXML
private ComboBox<String> numberImplementationBox;
@FXML
private ListView enabledPluginView;
@FXML
private Button reloadButton;
/**
* The list of history entries, created by the users.

View File

@ -46,6 +46,10 @@
<padding><Insets left="10" right="10" top="10" bottom="10"/></padding>
<Label text="Number Implementation" GridPane.columnIndex="0" GridPane.rowIndex="0"/>
<ComboBox fx:id="numberImplementationBox" GridPane.columnIndex="1" GridPane.rowIndex="0"/>
<ListView fx:id="enabledPluginView"
GridPane.rowIndex="1" GridPane.columnIndex="0"
GridPane.columnSpan="2" maxHeight="100"/>
<Button fx:id="reloadButton" text="Reload" GridPane.rowIndex="2" GridPane.columnIndex="0"/>
</GridPane>
</Tab>
</TabPane>