Blame view

src/main/resources/gui/vesselListPanel.fxml 1.06 KB
b350f9dfe   lsagona   import vessels an...
1
  <?xml version="1.0" encoding="UTF-8"?>
f39d90e60   lsagona   Select/deselect MMSI
2
  <?import javafx.geometry.*?>
b350f9dfe   lsagona   import vessels an...
3
4
  <?import javafx.scene.control.*?>
  <?import javafx.scene.layout.*?>
f39d90e60   lsagona   Select/deselect MMSI
5
  <?import javafx.scene.text.*?>
b350f9dfe   lsagona   import vessels an...
6

f39d90e60   lsagona   Select/deselect MMSI
7
  <BorderPane prefHeight="200.0" prefWidth="200.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.controller.VesselListPanelController">
b350f9dfe   lsagona   import vessels an...
8
      <center>
f39d90e60   lsagona   Select/deselect MMSI
9
          <ListView fx:id="shipListView" prefHeight="50.0" prefWidth="200.0" />
b350f9dfe   lsagona   import vessels an...
10
      </center>
f39d90e60   lsagona   Select/deselect MMSI
11
12
13
14
15
16
17
18
19
20
21
22
23
     <top>
        <TextFlow prefHeight="28.0" prefWidth="200.0" style="-fx-font-weight: bold;" textAlignment="CENTER" BorderPane.alignment="CENTER">
           <children>
              <Text scaleX="1.5" scaleY="1.5" strokeType="OUTSIDE" strokeWidth="0.0" text="MMSI" textAlignment="CENTER" />
           </children>
           <BorderPane.margin>
              <Insets />
           </BorderPane.margin>
           <padding>
              <Insets top="5.0" />
           </padding>
        </TextFlow>
     </top>
b350f9dfe   lsagona   import vessels an...
24
  </BorderPane>