-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathConfigUIController.fxml
More file actions
39 lines (37 loc) · 2.39 KB
/
ConfigUIController.fxml
File metadata and controls
39 lines (37 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.ColorPicker?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.control.Spinner?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.VBox?>
<VBox prefHeight="400.0" prefWidth="200.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="RouteMapMaker.ConfigUIController">
<children>
<Pane prefHeight="267.0" prefWidth="200.0">
<children>
<Label layoutX="14.0" layoutY="6.0" text="<路線編集モード>" />
<Label layoutX="5.0" layoutY="26.0" text="グリッドを表示する" />
<CheckBox fx:id="showGrid" layoutX="132.0" layoutY="26.0" mnemonicParsing="false" selected="true" />
<Label layoutX="5.0" layoutY="52.0" text="グリッド間隔" />
<Spinner fx:id="GridInterval" editable="true" layoutX="91.0" layoutY="47.0" prefHeight="27.0" prefWidth="94.0" />
<Label layoutX="6.0" layoutY="81.0" text="座標をグリッドに合わせる" />
<CheckBox fx:id="BindX" layoutX="32.0" layoutY="98.0" mnemonicParsing="false" selected="true" text="X" />
<CheckBox fx:id="BindY" layoutX="106.0" layoutY="98.0" mnemonicParsing="false" selected="true" text="Y" />
<Label layoutX="11.0" layoutY="170.0" text="座標固定駅の点の色" />
<ColorPicker fx:id="fixedColor" layoutX="20.0" layoutY="187.0" />
<Label layoutX="11.0" layoutY="220.0" text="座標非固定駅の点の色" />
<ColorPicker fx:id="nonFixedColor" layoutX="20.0" layoutY="237.0" />
<Label layoutX="6.0" layoutY="124.0" text="グリッドの形状" />
<RadioButton fx:id="gridTriangle" layoutX="32.0" layoutY="142.0" mnemonicParsing="false" text="三角形" />
<RadioButton fx:id="gridSquare" layoutX="106.0" layoutY="142.0" mnemonicParsing="false" text="四角形" />
</children>
</Pane>
<Pane prefHeight="139.0" prefWidth="200.0">
<children>
<Label layoutX="25.0" layoutY="11.0" text="<一般>" />
<CheckBox fx:id="menubarMode" layoutX="14.0" layoutY="28.0" mnemonicParsing="false" selected="true" text="OSのメニューバーを使用" />
</children>
</Pane>
</children>
</VBox>