Archived
0

implement edit power of system

This commit is contained in:
iMoHax
2016-03-17 15:30:41 +03:00
parent c071b327a9
commit ef4be21b37
8 changed files with 138 additions and 16 deletions

View File

@@ -8,6 +8,7 @@
<?import ru.trader.view.support.cells.OfferCellValueImpl?>
<?import ru.trader.view.support.cells.DoubleCell?>
<?import ru.trader.view.support.cells.WritablePropertyValueFactory?>
<VBox xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="ru.trader.db.controllers.StationsController">
<TableView fx:id="tblStations" editable="true" VBox.vgrow="ALWAYS" prefWidth="800">
@@ -19,22 +20,22 @@
<cellValueFactory><PropertyValueFactory property="name"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="type" minWidth="100" text="%market.station.type">
<cellValueFactory><PropertyValueFactory property="type"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="type"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="faction" minWidth="100" text="%market.allegiance">
<cellValueFactory><PropertyValueFactory property="faction"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="faction"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="government" minWidth="100" text="%market.government">
<cellValueFactory><PropertyValueFactory property="government"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="government"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="economic" minWidth="100" text="%market.economic">
<cellValueFactory><PropertyValueFactory property="economic"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="economic"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="subEconomic" minWidth="100" text="%market.economic">
<cellValueFactory><PropertyValueFactory property="subEconomic"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="subEconomic"/></cellValueFactory>
</TableColumn>
<TableColumn minWidth="100" text="Дистанция">
<cellValueFactory><PropertyValueFactory property="distance"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="distance"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="services" minWidth="100" text="Сервисы">
<cellValueFactory><PropertyValueFactory property="services"/></cellValueFactory>

View File

@@ -8,6 +8,7 @@
<?import ru.trader.view.support.cells.OfferCellValueImpl?>
<?import ru.trader.view.support.cells.DoubleCell?>
<?import ru.trader.view.support.cells.WritablePropertyValueFactory?>
<VBox xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="ru.trader.db.controllers.SystemsController">
<TableView fx:id="tblSystems" editable="true" VBox.vgrow="ALWAYS" prefWidth="800">
@@ -25,11 +26,18 @@
<cellValueFactory><PropertyValueFactory property="z"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="faction" minWidth="100" text="%market.allegiance">
<cellValueFactory><PropertyValueFactory property="faction"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="faction"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="government" minWidth="100" text="%market.government">
<cellValueFactory><PropertyValueFactory property="government"/></cellValueFactory>
<cellValueFactory><WritablePropertyValueFactory property="government"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="power" minWidth="100" text="Сила">
<cellValueFactory><WritablePropertyValueFactory property="power"/></cellValueFactory>
</TableColumn>
<TableColumn fx:id="powerState" minWidth="100" text="Статус">
<cellValueFactory><WritablePropertyValueFactory property="powerState"/></cellValueFactory>
</TableColumn>
</columns>
<columnResizePolicy>
<TableView fx:constant="UNCONSTRAINED_RESIZE_POLICY"/>