source: tmcsimulator-scriptbuilder/branches/ScriptBuilder4/src/event/editor/TelephonePanel.form @ 6

Revision 6, 6.1 KB checked in by jdalbey, 9 years ago (diff)

Add original prototype to branch

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="jScrollPane1" alignment="0" pref="602" max="32767" attributes="0"/>
23                  <Group type="102" alignment="0" attributes="0">
24                      <Component id="jLabel1" min="-2" max="-2" attributes="0"/>
25                      <EmptySpace max="-2" attributes="0"/>
26                      <Component id="jTextField1" pref="478" max="32767" attributes="0"/>
27                  </Group>
28                  <Group type="102" alignment="0" attributes="0">
29                      <Component id="addInstructorButton" min="-2" max="-2" attributes="0"/>
30                      <EmptySpace type="unrelated" max="-2" attributes="0"/>
31                      <Component id="addStudentButton" min="-2" pref="173" max="-2" attributes="0"/>
32                      <EmptySpace type="unrelated" max="-2" attributes="0"/>
33                      <Component id="deleteSelectedButton" min="-2" pref="178" max="-2" attributes="0"/>
34                      <EmptySpace pref="86" max="32767" attributes="0"/>
35                  </Group>
36                  <Component id="removeButton" alignment="1" min="-2" max="-2" attributes="0"/>
37              </Group>
38              <EmptySpace min="-2" pref="26" max="-2" attributes="0"/>
39          </Group>
40      </Group>
41    </DimensionLayout>
42    <DimensionLayout dim="1">
43      <Group type="103" groupAlignment="0" attributes="0">
44          <Group type="102" alignment="0" attributes="0">
45              <EmptySpace max="-2" attributes="0"/>
46              <Component id="removeButton" min="-2" max="-2" attributes="0"/>
47              <EmptySpace max="-2" attributes="0"/>
48              <Group type="103" groupAlignment="3" attributes="0">
49                  <Component id="jTextField1" alignment="3" min="-2" max="-2" attributes="0"/>
50                  <Component id="jLabel1" alignment="3" min="-2" max="-2" attributes="0"/>
51              </Group>
52              <EmptySpace type="separate" max="-2" attributes="0"/>
53              <Group type="103" groupAlignment="3" attributes="0">
54                  <Component id="addInstructorButton" alignment="3" min="-2" max="-2" attributes="0"/>
55                  <Component id="addStudentButton" alignment="3" min="-2" max="-2" attributes="0"/>
56                  <Component id="deleteSelectedButton" alignment="3" min="-2" max="-2" attributes="0"/>
57              </Group>
58              <EmptySpace type="unrelated" max="-2" attributes="0"/>
59              <Component id="jScrollPane1" pref="310" max="32767" attributes="0"/>
60              <EmptySpace max="-2" attributes="0"/>
61          </Group>
62      </Group>
63    </DimensionLayout>
64  </Layout>
65  <SubComponents>
66    <Component class="javax.swing.JButton" name="addStudentButton">
67      <Properties>
68        <Property name="text" type="java.lang.String" value="Add Student Line"/>
69        <Property name="toolTipText" type="java.lang.String" value="Adds a row for student dialog in the table"/>
70      </Properties>
71    </Component>
72    <Container class="javax.swing.JScrollPane" name="jScrollPane1">
73      <Properties>
74        <Property name="horizontalScrollBar" type="javax.swing.JScrollBar" editor="org.netbeans.modules.form.ComponentChooserEditor">
75          <ComponentRef name="null"/>
76        </Property>
77      </Properties>
78
79      <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
80    </Container>
81    <Component class="javax.swing.JButton" name="deleteSelectedButton">
82      <Properties>
83        <Property name="text" type="java.lang.String" value="Delete Selected Line"/>
84        <Property name="toolTipText" type="java.lang.String" value="Deletes the selected row in the table"/>
85      </Properties>
86    </Component>
87    <Component class="javax.swing.JButton" name="addInstructorButton">
88      <Properties>
89        <Property name="text" type="java.lang.String" value="Add Instructor Line"/>
90        <Property name="toolTipText" type="java.lang.String" value="Adds a row for instructor dialog in the table"/>
91      </Properties>
92    </Component>
93    <Component class="javax.swing.JTextField" name="jTextField1">
94      <Properties>
95        <Property name="toolTipText" type="java.lang.String" value="Specifies the role the instructor plays"/>
96      </Properties>
97    </Component>
98    <Component class="javax.swing.JLabel" name="jLabel1">
99      <Properties>
100        <Property name="text" type="java.lang.String" value="Role of instructor:"/>
101      </Properties>
102    </Component>
103    <Component class="javax.swing.JButton" name="removeButton">
104      <Properties>
105        <Property name="text" type="java.lang.String" value="Remove"/>
106        <Property name="toolTipText" type="java.lang.String" value="Removes this property"/>
107      </Properties>
108      <Events>
109        <EventHandler event="mouseClicked" listener="java.awt.event.MouseListener" parameters="java.awt.event.MouseEvent" handler="removeThisProperty"/>
110      </Events>
111    </Component>
112  </SubComponents>
113</Form>
Note: See TracBrowser for help on using the repository browser.