Parent: [a7a9ff] (diff)

Download this file

NewProjectView.java    188 lines (140 with data), 4.8 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
* Copyright 2013-2014 TECO - Karlsruhe Institute of Technology.
*
* This file is part of TACET.
*
* TACET is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* TACET is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with TACET. If not, see <http://www.gnu.org/licenses/>.
*/
package squirrel.view;
import java.awt.Dimension;
import java.awt.Label;
import java.awt.event.ActionListener;
import javax.swing.*;
import net.miginfocom.swing.MigLayout;
public class NewProjectView extends JFrame {
/**
* The instance of NewProjectView
*/
private static NewProjectView instance;
/**
* The layoutmanager for the gui
*/
private MigLayout layout = new MigLayout();
/**
* List of sensors
*/
private JList sensorList;
/**
* TextField to give the new Project a name
*/
JTextField projectName = new JTextField();
/**
* Path to the File of the annotations
*/
JTextField annotationFile = new JTextField();
/**
* Button to select an Annotation File
*/
private JButton selectAnnotationFile = new JButton("Browse");
/**
* Button to add the selected sensor to the sensorlist
*/
private JButton addSensor = new JButton("Add Sensor");
/**
* Button to delete the selected sensor of the sensorlsit
*/
private JButton deleteSensor = new JButton("Delete Sensor");
/**
* Button to create the new Project
*/
private JButton createProject = new JButton("Create Project");
/**
* Button to cancel and go back to main window
*/
private JButton cancel = new JButton("Cancel");
/**
* private constructor of NewProjectView
*/
private NewProjectView() {
this.setTitle("New Project");
this.setLayout(layout);
this.setSize(600, 500);
this.initComponents();
}
/**
* inits the components of the gui
*/
private void initComponents() {
this.add(new Label("Project Name:"), "split 2");
// projectName.setPreferredSize(new Dimension(this.getWidth()-100, 20));
this.add(projectName, "span 4, pushx ,growx, wrap 50");
//Annotation File
this.add(new JLabel("Annotation File"), "wrap 15");
this.add(annotationFile, "span 2, growx, pushx, height pref!");
this.add(selectAnnotationFile, "wrap 50");
//Sensor List
this.add(new JLabel("Sensorlist"), "wrap 15");
sensorList = new JList();
// sensorList.setPreferredSize(new Dimension(this.getWidth()-50, 100));
sensorList.setToolTipText("sensorlist");
this.add(sensorList, "span 2 2, grow");
this.add(addSensor, " span, grow, wrap");
this.add(deleteSensor, "span, grow, wrap 100");
// this.add(new JPanel(), "wrap 20");
// this.add(new JPanel(), "span 2");
//Create and Cancel Button
this.add(createProject, "align right");
this.add(cancel, "span, grow");
}
/**
* Register Methods for ActionListener
**/
public void registerListenerToBrowseButton(ActionListener listener){
this.selectAnnotationFile.addActionListener(listener);
}
public void registerListenerToAddSensorButton(ActionListener listener){
this.cancel.addActionListener(listener);
}
public void registerListenerToDeleteSensorButton(ActionListener listener){
this.cancel.addActionListener(listener);
}
public void registerListenerToCreateProjectButton(ActionListener listener){
this.cancel.addActionListener(listener);
}
public void registerListenerToCancelButton(ActionListener listener){
this.cancel.addActionListener(listener);
}
/**
* resets all fields in UI
*/
public void resetFields() {
// TODO Auto-generated method stub
this.projectName.setText("");
this.annotationFile.setText("");
this.sensorList.removeAll();
}
/**
* Retruns the one and only instance of NewProjectView
* @return instance
*/
public static NewProjectView getInstance(){
if(instance == null){
instance = new NewProjectView();
}
return instance;
}
public void setAnnotationPath(String name) {
this.annotationFile.setText(name);
}
}