-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeAllController.fxml
More file actions
143 lines (141 loc) · 11.6 KB
/
ChangeAllController.fxml
File metadata and controls
143 lines (141 loc) · 11.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ColorPicker?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.Spinner?>
<?import javafx.scene.control.Tab?>
<?import javafx.scene.control.TabPane?>
<?import javafx.scene.control.ToggleButton?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<VBox prefHeight="400.0" prefWidth="640.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="RouteMapMaker.ChangeAllController">
<children>
<TabPane prefHeight="416.0" prefWidth="640.0" tabClosingPolicy="UNAVAILABLE">
<tabs>
<Tab text="路線">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<ListView fx:id="A_list" layoutX="14.0" layoutY="30.0" prefHeight="329.0" prefWidth="180.0" />
<Label layoutX="14.0" layoutY="14.0" text="※複数選択可" />
<Label layoutX="206.0" layoutY="46.0" text="路線駅名表示" />
<ComboBox fx:id="A_Location" layoutX="292.0" layoutY="41.0" prefWidth="150.0" />
<Label layoutX="206.0" layoutY="83.0" text="駅名色" />
<ColorPicker fx:id="A_Color" layoutX="257.0" layoutY="78.0" />
<Label layoutX="206.0" layoutY="123.0" text="駅名大きさ" />
<Spinner fx:id="A_Size" layoutX="284.0" layoutY="118.0" prefHeight="27.0" prefWidth="93.0" />
<Label layoutX="207.0" layoutY="162.0" text="駅名スタイル" />
<ComboBox fx:id="A_Style" layoutX="293.0" layoutY="157.0" prefWidth="150.0" />
<Button fx:id="A_Location_AP" layoutX="463.0" layoutY="41.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="A_Color_AP" layoutX="441.0" layoutY="78.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="A_Size_AP" layoutX="397.0" layoutY="118.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="A_Style_AP" layoutX="463.0" layoutY="157.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Label layoutX="207.0" layoutY="195.0" text="駅名位置補正(路線ごと)" />
<Label layoutX="232.0" layoutY="221.0" text="X:" />
<Spinner fx:id="A_X" layoutX="249.0" layoutY="216.0" prefHeight="27.0" prefWidth="71.0" />
<Label layoutX="333.0" layoutY="221.0" text="Y:" />
<Spinner fx:id="A_Y" layoutX="350.0" layoutY="216.0" prefHeight="27.0" prefWidth="71.0" />
<Button fx:id="A_Zure_AP" layoutX="443.0" layoutY="216.0" mnemonicParsing="false" text="適用" textFill="RED" />
</children></AnchorPane>
</content>
</Tab>
<Tab text="運転経路">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<ListView fx:id="B_LineList" layoutX="14.0" layoutY="30.0" prefHeight="330.0" prefWidth="150.0" />
<Label layoutX="14.0" layoutY="14.0" text="路線" />
<ListView fx:id="B_TrainList" layoutX="170.0" layoutY="30.0" prefHeight="330.0" prefWidth="116.0" />
<Label layoutX="170.0" layoutY="14.0" text="運転経路" />
<ColorPicker fx:id="B_lineColor" layoutX="396.0" layoutY="31.0" prefHeight="27.0" prefWidth="93.0" />
<Label layoutX="303.0" layoutY="36.0" text="ラインカラー" />
<Label layoutX="303.0" layoutY="104.0" text="ライン太さ" />
<Label layoutX="303.0" layoutY="72.0" text="ライン位置" />
<Spinner fx:id="B_lineZure" layoutX="396.0" layoutY="67.0" prefHeight="27.0" prefWidth="83.0" />
<Spinner fx:id="B_lineWidth" layoutX="396.0" layoutY="99.0" prefHeight="27.0" prefWidth="83.0" />
<ComboBox fx:id="B_linePattern" layoutX="395.0" layoutY="135.0" prefHeight="27.0" prefWidth="95.0" />
<Label layoutX="303.0" layoutY="140.0" text="線パターン" />
<Label layoutX="299.0" layoutY="175.0" text="ライン端補正A" />
<Label layoutX="299.0" layoutY="209.0" text="ライン端補正B" />
<Spinner fx:id="B_lineA" layoutX="396.0" layoutY="170.0" prefHeight="27.0" prefWidth="83.0" />
<Spinner fx:id="B_lineB" layoutX="396.0" layoutY="204.0" prefHeight="27.0" prefWidth="83.0" />
<ColorPicker fx:id="B_markColor" layoutX="396.0" layoutY="240.0" prefHeight="27.0" prefWidth="93.0" />
<Label layoutX="303.0" layoutY="245.0" text="マークカラー" />
<Label layoutX="303.0" layoutY="280.0" text="マーク大きさ" />
<Spinner fx:id="B_markSize" layoutX="396.0" layoutY="275.0" prefHeight="27.0" prefWidth="83.0" />
<ComboBox fx:id="B_markType" layoutX="395.0" layoutY="311.0" prefHeight="27.0" prefWidth="95.0" />
<Label layoutX="303.0" layoutY="316.0" text="マークタイプ" />
<Button fx:id="B_lineColor_AP" layoutX="511.0" layoutY="31.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_lineZure_AP" layoutX="511.0" layoutY="67.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_lineWidth_AP" layoutX="511.0" layoutY="99.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_linePattern_AP" layoutX="511.0" layoutY="135.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_lineA_AP" layoutX="511.0" layoutY="170.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_lineB_AP" layoutX="511.0" layoutY="204.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_markColor_AP" layoutX="511.0" layoutY="240.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_markSize_AP" layoutX="511.0" layoutY="275.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="B_markType_AP" layoutX="511.0" layoutY="311.0" mnemonicParsing="false" text="適用" textFill="RED" />
</children></AnchorPane>
</content>
</Tab>
<Tab text="停車駅">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<ListView fx:id="C_LineList" layoutX="14.0" layoutY="31.0" prefHeight="252.0" prefWidth="200.0" />
<ListView fx:id="C_TrainList" layoutX="220.0" layoutY="31.0" prefHeight="252.0" prefWidth="200.0" />
<ListView fx:id="C_StopList" layoutX="426.0" layoutY="31.0" prefHeight="252.0" prefWidth="200.0" />
<Label layoutX="14.0" layoutY="14.0" text="路線" />
<Label layoutX="220.0" layoutY="14.0" text="運転経路" />
<Label layoutX="426.0" layoutY="14.0" text="停車駅" />
<Label layoutX="14.0" layoutY="291.0" text="ライン位置補正(個別)" />
<Label layoutX="27.0" layoutY="319.0" text="X:" />
<Spinner fx:id="C_X" layoutX="40.0" layoutY="314.0" prefHeight="27.0" prefWidth="71.0" />
<Label layoutX="115.0" layoutY="319.0" text="Y:" />
<Spinner fx:id="C_Y" layoutX="128.0" layoutY="314.0" prefHeight="27.0" prefWidth="71.0" />
<Label layoutX="374.0" layoutY="294.0" text="マークタイプ">
<font>
<Font size="12.0" />
</font>
</Label>
<ComboBox fx:id="C_Mark" layoutX="392.0" layoutY="314.0" prefHeight="27.0" prefWidth="109.0" />
<Button fx:id="C_loc_AP" layoutX="224.0" layoutY="314.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="C_Mark_AP" layoutX="526.0" layoutY="314.0" mnemonicParsing="false" text="適用" textFill="RED" />
</children></AnchorPane>
</content>
</Tab>
<Tab text="駅">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<ListView fx:id="D_LineList" layoutX="14.0" layoutY="27.0" prefHeight="330.0" prefWidth="150.0" />
<Label layoutX="14.0" layoutY="14.0" text="路線" />
<ListView fx:id="D_StaList" layoutX="172.0" layoutY="26.0" prefHeight="330.0" prefWidth="116.0" />
<Label layoutX="172.0" layoutY="13.0" text="駅名" />
<ToggleButton fx:id="D_TBstaOn" layoutX="300.0" layoutY="31.0" mnemonicParsing="false" text="駅名位置個別補正ON" />
<Label layoutX="300.0" layoutY="62.0" text="駅名位置補正(駅別)" />
<Label layoutX="300.0" layoutY="85.0" text="X:" />
<Spinner fx:id="D_staX" layoutX="313.0" layoutY="80.0" prefHeight="27.0" prefWidth="80.0" />
<Label layoutX="416.0" layoutY="85.0" text="Y:" />
<Spinner fx:id="D_staY" layoutX="429.0" layoutY="80.0" prefHeight="27.0" prefWidth="80.0" />
<Label layoutX="300.0" layoutY="120.0" text="駅名表示" />
<Label layoutX="300.0" layoutY="155.0" text="駅名大きさ" />
<Spinner fx:id="D_staSize" layoutX="365.0" layoutY="150.0" prefHeight="27.0" prefWidth="86.0" />
<Label layoutX="300.0" layoutY="180.0" text="0:路線準拠 -1:非表示" textFill="#00a6ff" />
<Label layoutX="300.0" layoutY="200.0" text="駅名スタイル" />
<Button fx:id="D_TBstaOn_AP" layoutX="451.0" layoutY="31.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="D_sta_AP" layoutX="523.0" layoutY="80.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="D_staMuki_AP" layoutX="523.0" layoutY="115.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="D_staSize_AP" layoutX="461.0" layoutY="150.0" mnemonicParsing="false" text="適用" textFill="RED" />
<Button fx:id="D_staStyle_AP" layoutX="545.0" layoutY="200.0" mnemonicParsing="false" text="適用" textFill="RED" />
<ComboBox fx:id="D_staMuki" layoutX="355.0" layoutY="115.0" prefWidth="150.0" />
<ComboBox fx:id="D_staStyle" layoutX="386.0" layoutY="200.0" prefWidth="150.0" />
</children></AnchorPane>
</content>
</Tab>
</tabs>
</TabPane>
</children>
</VBox>