-
Notifications
You must be signed in to change notification settings - Fork 0
/
infoOPasesorias.java
139 lines (124 loc) · 4.18 KB
/
infoOPasesorias.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
import javax.swing.*;
import javax.swing.border.LineBorder;
import java.awt.event.*;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.awt.*;
@SuppressWarnings("serial")
public class infoOPasesorias extends JFrame implements ActionListener, KeyListener
{
JLabel panel;
JButton guardar;
JTextField noControl, noPre;
JComboBox<String> cubiculo;
ImageIcon imgFondo = new ImageIcon(getClass().getResource("/imagenes/1280720_infoOPasesorias.png"));
public infoOPasesorias()
{
setLayout(null);
//fondo panel----------------------------------------------------------------------------------------
panel = new JLabel();
panel.setIcon(new ImageIcon(imgFondo.getImage().getScaledInstance(1040, 585, Image.SCALE_SMOOTH)));
panel.setBounds(0, 0, 1040, 585);
add(panel);
//botones desde clase todo---------------------------------------------------------------------------
todo.claseBclub();
todo.Bclub.addActionListener(this);
panel.add(todo.Bclub);
todo.claseBatras();
todo.Batras.addActionListener(this);
panel.add(todo.Batras);
//boton--------------------------------------------------------------------------------------------
guardar = new JButton("");
guardar.setBounds(850, 507, 55, 55);
guardar.setContentAreaFilled(false);
guardar.setVisible(true);
guardar.setBorder(null);
guardar.addActionListener(this);
panel.add(guardar);
//textfield--------------------------------------------------------------------------------------------
todo.infoAsesorias();
todo.alumno.addActionListener(this);
panel.add(todo.alumno);
noControl = new JTextField();
noControl.setBounds(145, 290, 280, 28);
noControl.setVisible(true);
noControl.setBorder(null);
noControl.setBackground(Color.white);
noControl.setForeground(Color.gray);
noControl.setFont(todo.estilo_recibos);
noControl.addKeyListener(this);
panel.add(noControl);
todo.AgradoGrupo.addActionListener(this);
panel.add(todo.AgradoGrupo);
todo.docente.addActionListener(this);
todo.docente.setText(OPasesorias.docente);
panel.add(todo.docente);
todo.fecha.addActionListener(this);
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
String fechaActual = sdf.format(new Date());
todo.fecha.setText(fechaActual);
panel.add(todo.fecha);
cubiculo = new JComboBox<String>();
cubiculo.setBounds(600, 445, 311, 39);
cubiculo.setVisible(true);
cubiculo.setBorder(new LineBorder(todo.color2, 3));
cubiculo.setBackground(Color.white);
cubiculo.setForeground(Color.gray);
cubiculo.setFont(todo.estilo_recibos);
panel.add(cubiculo);
cubiculo.addItem("SELECCIONAR");
cubiculo.addItem("CUBÍCULO 1");
cubiculo.addItem("CUBÍCULO 2");
cubiculo.addItem("CUBÍCULO 3");
cubiculo.addItem("CUBÍCULO 4");
}
public void keyPressed(KeyEvent e)
{
if(e.getKeyCode() == KeyEvent.VK_ENTER)
{
String no = noControl.getText();
JOptionPane.showMessageDialog(null, "Nombre: " + no);
}
}
public void keyTyped(KeyEvent e)
{
}
public void keyReleased(KeyEvent e)
{
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource() == guardar)
{
//todo.enviarCorreoAsesorias();
String selectedCubicle = (String) cubiculo.getSelectedItem();
if(selectedCubicle.equals("SELECCIONAR"))
{
JOptionPane.showMessageDialog(null, "SELECCIONE EL CUBÍCULO... ", "ERROR",JOptionPane.ERROR_MESSAGE);
}
}
if(e.getSource() == todo.Batras)
{
OPasesorias clase = new OPasesorias();
clase.setBounds(0,0,1040, 585);
clase.setUndecorated(true);
clase.setVisible(true);
clase.setResizable(false);
clase.setLocationRelativeTo(null);
dispose();
}
if(e.getSource() == todo.Bclub)
{
todo.conclusion();
}
}
public static void main(String[] args)
{
infoOPasesorias clase = new infoOPasesorias();
clase.setBounds(0,0,1040, 585);
clase.setUndecorated(true);
clase.setVisible(true);
clase.setResizable(false);
clase.setLocationRelativeTo(null);
}
}