source: tmcsimulator-scriptbuilder/src/event/editor/GenericEvaluationPanel.form @ 1

Revision 1, 5.2 KB checked in by bmcguffin, 9 years ago (diff)

2017/07/18: Uploaded entire prototype to SVN repo.

Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2
3<Form version="1.3" maxVersion="1.7" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
4  <AuxValues>
5    <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
6    <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
7    <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
8    <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
9    <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
10    <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="2"/>
11    <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
12    <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
13    <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
14  </AuxValues>
15
16  <Layout>
17    <DimensionLayout dim="0">
18      <Group type="103" groupAlignment="0" attributes="0">
19          <Group type="102" alignment="1" attributes="0">
20              <EmptySpace max="-2" attributes="0"/>
21              <Group type="103" groupAlignment="1" attributes="0">
22                  <Component id="scrollPane" alignment="0" pref="598" max="32767" attributes="0"/>
23                  <Group type="102" alignment="1" attributes="0">
24                      <Group type="103" groupAlignment="0" attributes="0">
25                          <Component id="jLabel1" min="-2" pref="200" max="-2" attributes="0"/>
26                          <Component id="CriteriaDropdown" pref="293" max="32767" attributes="0"/>
27                      </Group>
28                      <EmptySpace type="unrelated" max="-2" attributes="0"/>
29                      <Component id="addButton" min="-2" max="-2" attributes="0"/>
30                      <EmptySpace type="unrelated" max="-2" attributes="0"/>
31                      <Component id="deleteButton" min="-2" pref="178" max="-2" attributes="0"/>
32                  </Group>
33              </Group>
34              <EmptySpace min="-2" pref="23" max="-2" attributes="0"/>
35          </Group>
36      </Group>
37    </DimensionLayout>
38    <DimensionLayout dim="1">
39      <Group type="103" groupAlignment="0" attributes="0">
40          <Group type="102" alignment="0" attributes="0">
41              <EmptySpace max="-2" attributes="0"/>
42              <Component id="jLabel1" min="-2" max="-2" attributes="0"/>
43              <EmptySpace max="-2" attributes="0"/>
44              <Group type="103" groupAlignment="3" attributes="0">
45                  <Component id="CriteriaDropdown" alignment="3" min="-2" max="-2" attributes="0"/>
46                  <Component id="deleteButton" alignment="3" min="-2" max="-2" attributes="0"/>
47                  <Component id="addButton" alignment="3" min="-2" max="-2" attributes="0"/>
48              </Group>
49              <EmptySpace max="-2" attributes="0"/>
50              <Component id="scrollPane" pref="220" max="32767" attributes="0"/>
51              <EmptySpace max="-2" attributes="0"/>
52          </Group>
53      </Group>
54    </DimensionLayout>
55  </Layout>
56  <SubComponents>
57    <Component class="javax.swing.JButton" name="addButton">
58      <Properties>
59        <Property name="text" type="java.lang.String" value="Add Criteria"/>
60        <Property name="toolTipText" type="java.lang.String" value="Adds a new row in the table below"/>
61      </Properties>
62    </Component>
63    <Component class="javax.swing.JButton" name="deleteButton">
64      <Properties>
65        <Property name="text" type="java.lang.String" value="Delete Selected Criteria"/>
66        <Property name="toolTipText" type="java.lang.String" value="Deletes the selected row in the table below"/>
67      </Properties>
68    </Component>
69    <Container class="javax.swing.JScrollPane" name="scrollPane">
70      <Properties>
71        <Property name="toolTipText" type="java.lang.String" value=""/>
72      </Properties>
73
74      <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
75      <SubComponents>
76        <Component class="javax.swing.JTextArea" name="txtNotes">
77          <Properties>
78            <Property name="columns" type="int" value="20"/>
79            <Property name="rows" type="int" value="5"/>
80          </Properties>
81        </Component>
82      </SubComponents>
83    </Container>
84    <Component class="javax.swing.JComboBox" name="CriteriaDropdown">
85      <Properties>
86        <Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor">
87          <StringArray count="4">
88            <StringItem index="0" value="Yes/No"/>
89            <StringItem index="1" value="1-5"/>
90            <StringItem index="2" value="1-10"/>
91            <StringItem index="3" value="Written"/>
92          </StringArray>
93        </Property>
94        <Property name="toolTipText" type="java.lang.String" value="The type of criteria evaluation scale to be used"/>
95      </Properties>
96    </Component>
97    <Component class="javax.swing.JLabel" name="jLabel1">
98      <Properties>
99        <Property name="text" type="java.lang.String" value="Criteria Evaluation Scale:"/>
100      </Properties>
101    </Component>
102  </SubComponents>
103</Form>
Note: See TracBrowser for help on using the repository browser.