source: tmcsimulator/trunk/src/tmcsim/client/ATMSBatchViewer.form @ 168

Revision 168, 8.9 KB checked in by jdalbey, 9 years ago (diff)

Station.java Fix "OP" typo. ATMSBatchViewer Change panel width.

Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2
3<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
4  <Properties>
5    <Property name="defaultCloseOperation" type="int" value="3"/>
6    <Property name="title" type="java.lang.String" value="ATMS Batch Driver"/>
7  </Properties>
8  <SyntheticProperties>
9    <SyntheticProperty name="formSizePolicy" type="int" value="1"/>
10    <SyntheticProperty name="generateCenter" type="boolean" value="false"/>
11  </SyntheticProperties>
12  <AuxValues>
13    <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
14    <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
15    <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
16    <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
17    <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
18    <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
19    <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
20    <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
21    <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
22  </AuxValues>
23
24  <Layout>
25    <DimensionLayout dim="0">
26      <Group type="103" groupAlignment="0" attributes="0">
27          <Group type="102" alignment="0" attributes="0">
28              <Group type="103" groupAlignment="1" max="-2" attributes="0">
29                  <Group type="102" alignment="0" attributes="0">
30                      <EmptySpace max="-2" attributes="0"/>
31                      <Component id="jScrollPane1" min="-2" pref="211" max="-2" attributes="0"/>
32                      <EmptySpace max="-2" attributes="0"/>
33                      <Component id="pnlIncidents" max="32767" attributes="0"/>
34                  </Group>
35                  <Component id="pnlEvents" min="-2" max="-2" attributes="0"/>
36              </Group>
37              <EmptySpace min="0" pref="27" max="32767" attributes="0"/>
38          </Group>
39      </Group>
40    </DimensionLayout>
41    <DimensionLayout dim="1">
42      <Group type="103" groupAlignment="0" attributes="0">
43          <Group type="102" alignment="0" attributes="0">
44              <Component id="pnlEvents" min="-2" max="-2" attributes="0"/>
45              <EmptySpace max="-2" attributes="0"/>
46              <Group type="103" groupAlignment="0" attributes="0">
47                  <Component id="pnlIncidents" max="32767" attributes="0"/>
48                  <Group type="102" attributes="0">
49                      <Component id="jScrollPane1" min="-2" pref="179" max="-2" attributes="0"/>
50                      <EmptySpace min="0" pref="0" max="32767" attributes="0"/>
51                  </Group>
52              </Group>
53              <EmptySpace max="-2" attributes="0"/>
54          </Group>
55      </Group>
56    </DimensionLayout>
57  </Layout>
58  <SubComponents>
59    <Container class="javax.swing.JPanel" name="pnlEvents">
60
61      <Layout>
62        <DimensionLayout dim="0">
63          <Group type="103" groupAlignment="0" attributes="0">
64              <Group type="102" attributes="0">
65                  <Group type="103" groupAlignment="0" attributes="0">
66                      <Group type="102" attributes="0">
67                          <EmptySpace min="-2" pref="112" max="-2" attributes="0"/>
68                          <Component id="txtClockTime" min="-2" pref="225" max="-2" attributes="0"/>
69                      </Group>
70                      <Group type="102" alignment="0" attributes="0">
71                          <EmptySpace max="-2" attributes="0"/>
72                          <Component id="scrollEvents" min="-2" pref="430" max="-2" attributes="0"/>
73                      </Group>
74                  </Group>
75                  <EmptySpace pref="20" max="32767" attributes="0"/>
76              </Group>
77          </Group>
78        </DimensionLayout>
79        <DimensionLayout dim="1">
80          <Group type="103" groupAlignment="0" attributes="0">
81              <Group type="102" alignment="1" attributes="0">
82                  <Component id="txtClockTime" min="-2" pref="28" max="-2" attributes="0"/>
83                  <EmptySpace max="-2" attributes="0"/>
84                  <Component id="scrollEvents" pref="172" max="32767" attributes="0"/>
85                  <EmptySpace max="-2" attributes="0"/>
86              </Group>
87          </Group>
88        </DimensionLayout>
89      </Layout>
90      <SubComponents>
91        <Container class="javax.swing.JScrollPane" name="scrollEvents">
92          <AuxValues>
93            <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/>
94          </AuxValues>
95
96          <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
97          <SubComponents>
98            <Component class="javax.swing.JList" name="lstEvents">
99              <Properties>
100                <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
101                  <Font name="Noto Mono" size="12" style="0"/>
102                </Property>
103                <Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.editors2.ListModelEditor">
104                  <StringArray count="2">
105                    <StringItem index="0" value="item 1"/>
106                    <StringItem index="1" value="item 2"/>
107                  </StringArray>
108                </Property>
109              </Properties>
110              <AuxValues>
111                <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="&lt;String&gt;"/>
112              </AuxValues>
113            </Component>
114          </SubComponents>
115        </Container>
116        <Component class="javax.swing.JLabel" name="txtClockTime">
117          <Properties>
118            <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
119              <Font name="Noto Sans" size="14" style="1"/>
120            </Property>
121            <Property name="text" type="java.lang.String" value="0:00:00"/>
122          </Properties>
123        </Component>
124      </SubComponents>
125    </Container>
126    <Container class="javax.swing.JPanel" name="pnlIncidents">
127
128      <Layout>
129        <DimensionLayout dim="0">
130          <Group type="103" groupAlignment="0" attributes="0">
131              <Group type="102" attributes="0">
132                  <Component id="btnClear" min="-2" max="-2" attributes="0"/>
133                  <EmptySpace min="0" pref="0" max="32767" attributes="0"/>
134              </Group>
135          </Group>
136        </DimensionLayout>
137        <DimensionLayout dim="1">
138          <Group type="103" groupAlignment="0" attributes="0">
139              <Group type="102" alignment="1" attributes="0">
140                  <EmptySpace min="-2" pref="185" max="-2" attributes="0"/>
141                  <Component id="btnClear" min="-2" max="-2" attributes="0"/>
142                  <EmptySpace max="32767" attributes="0"/>
143              </Group>
144          </Group>
145        </DimensionLayout>
146      </Layout>
147      <SubComponents>
148        <Component class="javax.swing.JButton" name="btnClear">
149          <Properties>
150            <Property name="text" type="java.lang.String" value="Clear Incident"/>
151          </Properties>
152          <Events>
153            <EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnClearActionPerformed"/>
154          </Events>
155        </Component>
156      </SubComponents>
157    </Container>
158    <Container class="javax.swing.JScrollPane" name="jScrollPane1">
159      <AuxValues>
160        <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/>
161      </AuxValues>
162
163      <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
164      <SubComponents>
165        <Component class="javax.swing.JList" name="lstIncidents">
166          <Properties>
167            <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
168              <Font name="Noto Mono" size="15" style="0"/>
169            </Property>
170            <Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.editors2.ListModelEditor">
171              <StringArray count="5">
172                <StringItem index="0" value="Item 1"/>
173                <StringItem index="1" value="Item 2"/>
174                <StringItem index="2" value="Item 3"/>
175                <StringItem index="3" value="Item 4"/>
176                <StringItem index="4" value="Item 5"/>
177              </StringArray>
178            </Property>
179            <Property name="selectionMode" type="int" value="0"/>
180          </Properties>
181          <AuxValues>
182            <AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="&lt;String&gt;"/>
183          </AuxValues>
184        </Component>
185      </SubComponents>
186    </Container>
187  </SubComponents>
188</Form>
Note: See TracBrowser for help on using the repository browser.