-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNuevoAgregarObra.java
332 lines (263 loc) · 11.1 KB
/
NuevoAgregarObra.java
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
import java.awt.*;
import javax.swing.*;
import java.awt.Image;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JSpinner;
import javax.swing.JTextField;
import javax.swing.border.Border;
import com.toedter.calendar.JCalendar;
public class NuevoAgregarObra extends JFrame {
NuevoAgregarObra(){
setSize(1366,768);
setTitle("Agregar obras");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
JPanel DatosObras= new JPanel();
DatosObras.setLayout(null);
DatosObras.setSize(1366,768);
DatosObras.setBackground(Color.black);
JLabel nombreResponsable= new JLabel("Datos del responsable de la obra:");
nombreResponsable.setForeground(Color.decode("#049cff"));
Font fuenteResponsable=new Font("Arial Black",Font.BOLD,20);
nombreResponsable.setFont(fuenteResponsable);
nombreResponsable.setBounds(500,0,500,40);
DatosObras.add(nombreResponsable);
JLabel nombresResponsable= new JLabel("Nombre(s):");
nombresResponsable.setForeground(Color.white);
Font fuenteResponsables=new Font("Arial",Font.BOLD,20);
nombresResponsable.setFont(fuenteResponsables);
nombresResponsable.setBounds(0,40,300,20);
DatosObras.add(nombresResponsable);
JTextField NombreResponsabletxt = new JTextField("");
NombreResponsabletxt.setForeground(Color.black);
NombreResponsabletxt.setBounds(105,40,200,30);
NombreResponsabletxt.setBorder(null);
DatosObras.add(NombreResponsabletxt);
JLabel ApellidoResponsablePaterno= new JLabel("Apellido paterno:");
ApellidoResponsablePaterno.setForeground(Color.white);
Font fuenteResponsablesP=new Font("Arial",Font.BOLD,20);
ApellidoResponsablePaterno.setFont(fuenteResponsablesP);
ApellidoResponsablePaterno.setBounds(315,40,300,20);
DatosObras.add(ApellidoResponsablePaterno);
JTextField ApellidoResponsablePaternotxt = new JTextField("");
ApellidoResponsablePaternotxt.setForeground(Color.black);
ApellidoResponsablePaternotxt.setBounds(480,40,200,30);
ApellidoResponsablePaternotxt.setBorder(null);
DatosObras.add(ApellidoResponsablePaternotxt);
JLabel ApellidoResponsableMaterno= new JLabel("Apellido materno:");
ApellidoResponsableMaterno.setForeground(Color.white);
Font fuenteResponsablesMaterno=new Font("Arial",Font.BOLD,20);
ApellidoResponsableMaterno.setFont(fuenteResponsables);
ApellidoResponsableMaterno.setBounds(690,40,300,20);
DatosObras.add(ApellidoResponsableMaterno);
JTextField ApellidoResponsableMaternotxt = new JTextField("");
ApellidoResponsableMaternotxt.setForeground(Color.black);
ApellidoResponsableMaternotxt.setBounds(860,40,200,30);
ApellidoResponsableMaternotxt.setBorder(null);
DatosObras.add(ApellidoResponsableMaternotxt);
JLabel Monto = new JLabel("Monto de la obra: $");
Monto.setForeground(Color.white);
Font fuenteMonto=new Font("Arial",Font.BOLD,20);
Monto.setFont(fuenteMonto);
Monto.setBounds(1065,40,300, 20);
DatosObras.add( Monto);
JTextField Montotxt = new JTextField();
Montotxt.setForeground(Color.black);
Montotxt.setBounds(1250,40,70,30);
Montotxt.setBorder(null);
DatosObras.add(Montotxt);
JLabel Telefono = new JLabel("Télefono:");
Telefono.setForeground(Color.white);
Font fuenteTelefono=new Font("Arial",Font.BOLD,20);
Telefono.setFont(fuenteTelefono);
Telefono.setBounds(0,80,300, 20);
DatosObras.add(Telefono);
JTextField Telefonotxt = new JTextField();
Telefonotxt.setForeground(Color.black);
Telefonotxt.setBounds(107,80,200,30);
Telefonotxt.setBorder(null);
DatosObras.add(Telefonotxt);
JLabel Correo = new JLabel("E-mail:");
Correo.setForeground(Color.white);
Font fuenteCorreo=new Font("Arial",Font.BOLD,20);
Correo.setFont(fuenteCorreo);
Correo.setBounds(410,80,300, 20);
DatosObras.add(Correo);
JTextField Correotxt = new JTextField("");
Correotxt.setForeground(Color.black);
Correotxt.setBounds(480,80,200,30);
Correotxt.setBorder(null);
DatosObras.add(Correotxt);
JLabel empresa = new JLabel("Empresa:");
empresa.setForeground(Color.white);
Font fuenteEmpresa= new Font("Arial",Font.BOLD,20);
empresa.setFont(fuenteEmpresa);
empresa.setBounds(770,80,300,20);
DatosObras.add(empresa);
JTextField empresatxt= new JTextField("");
empresatxt.setForeground(Color.black);
empresatxt.setBorder(null);
empresatxt.setBounds(860,80,200,30);
DatosObras.add(empresatxt);
JLabel DomicilioEditar= new JLabel("Ubicación de la obra:");
DomicilioEditar.setForeground(Color.decode("#049cff"));
Font fuenteDomicilio= new Font("Arial Black",Font.BOLD,20);
DomicilioEditar.setFont(fuenteDomicilio);
DomicilioEditar.setBounds(550,35,600,200);
DatosObras.add(DomicilioEditar);
JLabel Calle = new JLabel("Calle:");
Calle.setForeground(Color.white);
Font fontCalle=new Font("Arial",Font.BOLD,20);
Calle.setFont(fontCalle);
Calle.setBounds(0,150,300,20);
DatosObras.add(Calle);
JTextField Calletxt = new JTextField("");
Calletxt.setForeground(Color.black);
Calletxt.setBounds(105,150,200,30);
Calletxt.setBorder(null);
DatosObras.add(Calletxt);
JLabel Numero= new JLabel("Número:");
Numero.setForeground(Color.white);
Font fontNumero=new Font("Arial",Font.BOLD,20);
Numero.setFont(fontNumero);
Numero.setBounds(417,150,300,20);
DatosObras.add(Numero);
JTextField Numtxt = new JTextField("");
Numtxt.setForeground(Color.black);
Numtxt.setBounds(500,150,40,30);
Numtxt.setBorder(null);
DatosObras.add(Numtxt);
JLabel colonia= new JLabel("Colonia:");
colonia.setForeground(Color.white);
Font fontColonia = new Font("Arial",Font.BOLD,20);
colonia.setFont(fontColonia);
colonia.setBounds(780,150,300,20);
DatosObras.add(colonia);
JTextField Coltxt= new JTextField();
Coltxt.setForeground(Color.black);
Coltxt.setBounds(858,150,200,30);
Coltxt.setBorder(null);
DatosObras.add(Coltxt);
JLabel Municipio = new JLabel("Municipio:");
Municipio.setForeground(Color.white);
Font fontMunicipio=new Font("Arial",Font.BOLD,20);
Municipio.setFont(fontMunicipio);
Municipio.setBounds(1080,150,300,20);
DatosObras.add(Municipio);
//JComboBox Municipiotxt = new JComboBox();
JTextField Municipiotxt= new JTextField();
Municipiotxt.setForeground(Color.black);
Municipiotxt.setBounds(1180,150,170,30);
Municipiotxt.setBorder(null);
DatosObras.add(Municipiotxt);
JLabel Estado= new JLabel("Estado:");
Estado.setForeground(Color.white);
Font fontEstado= new Font("Arial",Font.BOLD,20);
Estado.setFont(fontEstado);
Estado.setBounds(0,190,300,20);
DatosObras.add(Estado);
JTextField Estadotxt= new JTextField();
Estadotxt.setForeground(Color.black);
Estadotxt.setBounds(105,190,200,30);
Estadotxt.setBorder(null);
DatosObras.add(Estadotxt);
///Agregado
JLabel NombreObra= new JLabel("Nombre de la obra:");
NombreObra.setForeground(Color.white);
Font fontNObra = new Font("Arial",Font.BOLD,20);
NombreObra.setFont(fontNObra);
NombreObra.setBounds(315,190,300,20);
DatosObras.add( NombreObra);
JTextField NombreObratxt= new JTextField();
NombreObratxt.setForeground(Color.black);
NombreObratxt.setBounds(500,190,200,30);
NombreObratxt.setBorder(null);
DatosObras.add(NombreObratxt);
JLabel anuncioMaquinaria = new JLabel("Tipos y cantidades de máquinaria para la obra:");
anuncioMaquinaria.setForeground(Color.decode("#049cff"));
Font fuenteMaquinaria=new Font("Arial Black", Font.BOLD, 20);
anuncioMaquinaria.setFont(fuenteMaquinaria);
anuncioMaquinaria.setBounds(400,100,700,300);
DatosObras.add(anuncioMaquinaria);
JLabel TipoMaquinaria= new JLabel("Tipo de maquinaria:");
TipoMaquinaria.setForeground(Color.white);
Font fuenteMaquina= new Font("Arial",Font.BOLD,20);
TipoMaquinaria.setFont(fuenteMaquina);
TipoMaquinaria.setBounds(0,220,300,150);
DatosObras.add(TipoMaquinaria);
////El cliente dijo que hasta el momento tiene 5 tractores,2 volteos,6 retroexcabadoras, 1 montacargas
JComboBox TipoMC= new JComboBox();
TipoMC.setForeground(Color.black);
TipoMC.setBorder(null);
TipoMC.setBounds(190,280,200,30);
DatosObras.add(TipoMC);
JLabel ModeloMaquinaria = new JLabel("Modelo de la maquinaria:");
ModeloMaquinaria.setForeground(Color.white);
Font fuenteModeloM=new Font("Arial",Font.BOLD,20);
ModeloMaquinaria.setFont(fuenteModeloM);
ModeloMaquinaria.setBounds(455,220,300, 150);
DatosObras.add(ModeloMaquinaria);
JComboBox MaquinariaC = new JComboBox();
MaquinariaC.setForeground(Color.black);
MaquinariaC.setBounds(692,280,200,30);
MaquinariaC.setBorder(null);
DatosObras.add(MaquinariaC );
JLabel CantidadMaquinas = new JLabel("Cantidad de máquinas para obra:");
CantidadMaquinas.setForeground(Color.white);
Font fuenteCantidadMaquinas=new Font("Arial",Font.BOLD,20);
CantidadMaquinas.setFont(fuenteCantidadMaquinas);
CantidadMaquinas.setBounds(980,220,500, 150);
DatosObras.add(CantidadMaquinas);
JSpinner CantidadSpiner = new JSpinner();
CantidadSpiner.setForeground(Color.black);
CantidadSpiner.setBounds(1299,280,50,30);
CantidadSpiner.setBorder(null);
DatosObras.add(CantidadSpiner);
JPanel imagen = new JPanel();
imagen.setBackground(Color.decode("#049cff"));
imagen.setBounds(950,400,400,200);
DatosObras.add(imagen);
JLabel FechaInicio = new JLabel("Fecha de inicio de la obra:");
FechaInicio.setForeground(Color.white);
Font fuenteFechaI=new Font("Arial",Font.BOLD,20);
FechaInicio.setFont(fuenteFechaI);
FechaInicio.setBounds(0,230,300,300);
DatosObras.add(FechaInicio);
JCalendar FechaI= new JCalendar();
FechaI.setForeground(Color.black);
FechaI.setBorder(null);
FechaI.setBounds(0,400,390,200);
DatosObras.add(FechaI);
JLabel FechaFinal = new JLabel("Fecha final de la obra:");
FechaFinal.setForeground(Color.white);
Font fuenteFechaF= new Font("Arial",Font.BOLD,20);
FechaFinal.setFont(fuenteFechaF);
FechaFinal.setBounds(478,230,300,300);
DatosObras.add(FechaFinal);
JCalendar FechaF= new JCalendar();
FechaF.setForeground(Color.black);
FechaF.setBorder(null);
FechaF.setBounds(480,400,390,200);
DatosObras.add(FechaF);
JButton AgregarInformaciónEditar= new JButton("Guardar información");
AgregarInformaciónEditar.setBackground(Color.black);
AgregarInformaciónEditar.setBounds(550,640,300,50);
Font fontBoton= new Font("Arial",Font.BOLD,20);
AgregarInformaciónEditar.setFont(fontBoton);
AgregarInformaciónEditar.setBorder(new ComponenteBotonRedondo(50));
AgregarInformaciónEditar.setForeground(Color.decode("#049cff"));
DatosObras.add(AgregarInformaciónEditar);
JLabel background = new JLabel();
background.add(DatosObras);
add(background );
setVisible(true);
}
public static void main(String[]args){
new NuevoAgregarObra();
}
}