2017-07-31 16:48:04 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.scene.control.*?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
2017-07-31 17:08:16 -07:00
|
|
|
<?import javafx.geometry.Insets?>
|
2017-07-31 16:48:04 -07:00
|
|
|
|
2017-07-31 16:56:38 -07:00
|
|
|
<BorderPane xmlns="http://javafx.com/javafx"
|
2017-07-31 16:48:04 -07:00
|
|
|
xmlns:fx="http://javafx.com/fxml"
|
2017-07-31 16:56:38 -07:00
|
|
|
fx:controller="org.nwapw.abacus.fx.AbacusController">
|
|
|
|
<center>
|
|
|
|
<TabPane>
|
2017-07-31 17:08:16 -07:00
|
|
|
<Tab text="Calculator" closable="false">
|
|
|
|
<BorderPane>
|
|
|
|
<bottom>
|
|
|
|
<VBox>
|
|
|
|
<ScrollPane prefHeight="50" vbarPolicy="NEVER">
|
|
|
|
<padding><Insets top="10" bottom="10" left="10" right="10"/></padding>
|
|
|
|
</ScrollPane>
|
|
|
|
<TextField text="Input"/>
|
|
|
|
<Button text="Calculate" maxWidth="Infinity"/>
|
|
|
|
</VBox>
|
|
|
|
</bottom>
|
|
|
|
</BorderPane>
|
|
|
|
</Tab>
|
2017-07-31 16:56:38 -07:00
|
|
|
<Tab text="Settings" closable="false"/>
|
|
|
|
</TabPane>
|
|
|
|
</center>
|
2017-07-31 17:08:16 -07:00
|
|
|
|
2017-07-31 16:56:38 -07:00
|
|
|
</BorderPane>
|