forked from adan-sanchez-luis/ejemplo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAgregarMaquinaria.java
223 lines (188 loc) · 8.38 KB
/
AgregarMaquinaria.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
import java.awt.*;
import javax.swing.*;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import javax.swing.border.Border;
public class AgregarMaquinaria extends JFrame {
AgregarMaquinaria() {
setSize(860, 500);
setTitle("Agregar maquinarias");
setResizable(false);
//setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
JPanel DatosMaquinaria = new JPanel();
DatosMaquinaria.setLayout(null);
DatosMaquinaria.setSize(900, 700);
DatosMaquinaria.setBounds(0, 0, 1800, 900);
DatosMaquinaria.setBackground(Color.decode("#049cff"));
///En este panel se deben poner la imagenes
JPanel Imagen = new JPanel();
Imagen.setLayout(null);
Imagen.setBounds(590, 93, 250, 230);
Imagen.setBackground(Color.black);
DatosMaquinaria.add(Imagen);
JLabel Encabezado = new JLabel("Agregar datos de la maquinaría:");
Encabezado.setForeground(Color.white);
Font fuente = new Font("Arial", Font.BOLD, 16);
Encabezado.setFont(fuente);
Encabezado.setBounds(349, 0, 300, 70);
DatosMaquinaria.add(Encabezado);
JLabel NombreMaquina = new JLabel("Nombre de la máquina:");
NombreMaquina.setForeground(Color.white);
Font fuenteMaquina = new Font("Arial", Font.BOLD, 14);
NombreMaquina.setFont(fuenteMaquina);
NombreMaquina.setBounds(0, 30, 300, 150);
DatosMaquinaria.add(NombreMaquina);
JTextField NombreMaquinatxt = new JTextField("");
NombreMaquinatxt.setForeground(Color.black);
NombreMaquinatxt.setBorder(null);
NombreMaquinatxt.setBounds(163, 92, 200, 30);
DatosMaquinaria.add(NombreMaquinatxt);
JLabel Modelo = new JLabel("Modelo de la máquina:");
Modelo.setForeground(Color.white);
Font fuenteModelo = new Font("Arial", Font.BOLD, 14);
Modelo.setFont(fuenteModelo);
Modelo.setBounds(0, 75, 300, 150);
DatosMaquinaria.add(Modelo);
JTextField Modelotxt = new JTextField("");
Modelotxt.setForeground(Color.black);
Modelotxt.setBorder(null);
Modelotxt.setBounds(164, 140, 200, 30);
DatosMaquinaria.add(Modelotxt);
Modelotxt.addKeyListener(new KeyListener() {
@Override
public void keyTyped(KeyEvent ke) {
char letra = ke.getKeyChar();
if (!Character.isDigit(letra) && letra != '.') {
ke.consume();
}
if (letra == '.' || Modelotxt.getText().contains(".")) {
ke.consume();
}
}
@Override
public void keyPressed(KeyEvent ke) {
}
@Override
public void keyReleased(KeyEvent ke) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
});
JLabel Tipo = new JLabel("Tipo de máquina:");
Tipo.setForeground(Color.white);
Font fuenteTipo = new Font("Arial", Font.BOLD, 14);
Tipo.setFont(fuenteTipo);
Tipo.setBounds(0, 125, 300, 150);
DatosMaquinaria.add(Tipo);
JComboBox TipoCombo = new JComboBox();
TipoCombo.setForeground(Color.black);
TipoCombo.setBorder(null);
TipoCombo.setBounds(161, 190, 200, 30);
DatosMaquinaria.add(TipoCombo);
JLabel Costo = new JLabel("Costo:");
Costo.setForeground(Color.white);
Font fuenteCosto = new Font("Arial", Font.BOLD, 14);
Costo.setFont(fuenteCosto);
Costo.setBounds(0, 170, 300, 150);
DatosMaquinaria.add(Costo);
JTextField CostoTxt = new JTextField();
CostoTxt.setForeground(Color.black);
CostoTxt.setBorder(null);
CostoTxt.setBounds(161, 238, 200, 30);
DatosMaquinaria.add(CostoTxt);
CostoTxt.addKeyListener(new KeyListener() {
@Override
public void keyTyped(KeyEvent ke) {
char letra = ke.getKeyChar();
if (!Character.isDigit(letra) && letra != '.') {
ke.consume();
}
if (letra == '.' && CostoTxt.getText().contains(".")) {
ke.consume();
}
}
@Override
public void keyPressed(KeyEvent ke) {
}
@Override
public void keyReleased(KeyEvent ke) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
});
JLabel Matricula = new JLabel("Matricula:");
Matricula.setForeground(Color.white);
Font fuenteMatricula = new Font("Arial", Font.BOLD, 14);
Matricula.setFont(fuenteMatricula);
Matricula.setBounds(0, 220, 300, 150);
DatosMaquinaria.add(Matricula);
JTextField MatriculaTxt = new JTextField();
MatriculaTxt.setForeground(Color.black);
MatriculaTxt.setBorder(null);
MatriculaTxt.setBounds(161, 290, 200, 30);
DatosMaquinaria.add(MatriculaTxt);
JLabel Marca = new JLabel("Marca:");
Marca.setForeground(Color.white);
Font fuenteMarca = new Font("Arial", Font.BOLD, 14);
Marca.setFont(fuenteMarca);
Marca.setBounds(0, 270, 300, 150);
DatosMaquinaria.add(Marca);
JTextField MarcaTxt = new JTextField();
MarcaTxt.setForeground(Color.black);
MarcaTxt.setBorder(null);
MarcaTxt.setBounds(161, 334, 200, 30);
DatosMaquinaria.add(MarcaTxt);
/////// // En esta parte van los estados, los que deben ser: EN USO, DISPONIBLE y MANTENIMIENTO
JLabel EstadoMaquinaAgregar = new JLabel(" Estado: ");
EstadoMaquinaAgregar.setForeground(Color.WHITE);
Font fuenteMaquinaC = new Font(" Arial ", Font.BOLD, 14);
EstadoMaquinaAgregar.setFont(fuenteMaquinaC);
EstadoMaquinaAgregar.setBounds(375, 30, 300, 150);
DatosMaquinaria.add(EstadoMaquinaAgregar);
String tiposEstados[] = {" EN USO ", " DISPONIBLE ", " MANTENIMIENTO "};
JComboBox EstadoMaquinatxtAgregar = new JComboBox(tiposEstados);
EstadoMaquinatxtAgregar.setForeground(Color.BLACK);
EstadoMaquinatxtAgregar.setBorder(null);
EstadoMaquinatxtAgregar.setBounds(427, 92, 150, 30);
DatosMaquinaria.add(EstadoMaquinatxtAgregar);
///////Botones
JButton AgregarMaquina = new JButton("Agregar maquinaría");
AgregarMaquina.setBackground(Color.decode("#049cff"));
AgregarMaquina.setBounds(350, 400, 210, 50);
AgregarMaquina.setBorder(new ComponenteBotonRedondo(40));
AgregarMaquina.setForeground(Color.black);
DatosMaquinaria.add(AgregarMaquina);
AgregarMaquina.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
String nombre = NombreMaquinatxt.getText();
int modelo =Integer.parseInt(Modelotxt.getText());
String tipo = (String) TipoCombo.getSelectedItem();
double costo = Integer.parseInt(CostoTxt.getText());
String matricula = MatriculaTxt.getText();
String marca = MarcaTxt.getText();
}
});
JButton AgregarFoto = new JButton("Agregar foto");
AgregarFoto.setBackground(Color.decode("#049cff"));
AgregarFoto.setBounds(610, 330, 210, 50);
AgregarFoto.setBorder(new ComponenteBotonRedondo(40));
AgregarFoto.setForeground(Color.black);
DatosMaquinaria.add(AgregarFoto);
JLabel background = new JLabel();
background.add(DatosMaquinaria);
add(background);
setVisible(true);
}
public static void main(String[] args) {
new AgregarMaquinaria();
}
}