-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuiCadastroEmpresa.java
269 lines (191 loc) · 7.46 KB
/
GuiCadastroEmpresa.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
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package markup;
import java.awt.*;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
*
* @author robssoares
*/
public class GuiCadastroEmpresa extends JFrame {
/**
*
*/
private static final long serialVersionUID = 1L;
JLabel jlIdEmpresa, jlNomeEmpresa;
JButton btGravar, btAlterar, btExcluir, btNovo, btLocalizar, btCancelar, btSair;
static JTextField tfIdEmpresa, tfNomeEmpresa;
private EmpresaDAO empresaDAO;
public GuiCadastroEmpresa(){
inicializarComponentes();
definirEventos();
}
public void inicializarComponentes(){
jlIdEmpresa = new JLabel("Codigo: ");
jlNomeEmpresa = new JLabel("Empresa: ");
tfIdEmpresa = new JTextField(10);
tfNomeEmpresa = new JTextField(60);
btGravar = new JButton();
btGravar.setText("Gravar");
btAlterar = new JButton();
btAlterar.setText("Alterar");
btExcluir = new JButton();
btExcluir.setText("Excluir");
btNovo = new JButton();
btNovo.setText("Novo");
btLocalizar = new JButton();
btLocalizar.setText("Localizar");
btCancelar = new JButton();
btCancelar.setText("Cancelar");
btSair = new JButton();
btSair.setText("Sair");
Container pane = getContentPane();
pane.setLayout(new BorderLayout(20,20)); // espaçamento entre as áreas
pane.add(getHeader(), BorderLayout.NORTH);
pane.add(getFields(), BorderLayout.CENTER);
pane.add(getButtonPanel(),BorderLayout.SOUTH ) ;
empresaDAO = new EmpresaDAO();
if (!empresaDAO.bd.getConnection()) {
JOptionPane.showMessageDialog(null,"Falha na conexao, Sistema será fechado !");
System.exit(0);
}
}
private JComponent getFields() {
JPanel inner = new JPanel();
inner.setLayout(new java.awt.GridBagLayout());
GridBagConstraints c = new GridBagConstraints();
//LABEL + TEXTFIELD //+ LABEL + TEXTFIELD // LABEL + TEXTFIELD
// c.fill = GridBagConstraints.BOTH;
c.insets = new Insets(4,4,4,4);
c.fill = GridBagConstraints.HORIZONTAL;
c.anchor = GridBagConstraints.CENTER;
c.gridwidth = 1;
inner.add((jlIdEmpresa),c);
c.weightx = 1;
c.gridwidth = 1;
c.weightx = 0.2;
inner.add((tfIdEmpresa),c);
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlNomeEmpresa),c);
c.weightx = 1;
c.gridwidth = 1;
inner.add((tfNomeEmpresa),c);
return inner;
}
private JComponent getButtonPanel() {
JPanel inner = new JPanel();
inner.setLayout(new GridLayout(1, 7, 5, 0));
inner.add(btNovo);
inner.add(btLocalizar);
inner.add(btGravar);
inner.add(btAlterar);
inner.add(btExcluir);
inner.add(btCancelar);
inner.add(btSair);
return inner;
}
private JComponent getHeader() {
JLabel label = new JLabel("Cadastro de Empresa", JLabel.CENTER);
label.setFont(new Font("Courier", Font.BOLD, 24));
return label;
}
public void setBotoes(boolean bNovo, boolean bLocalizar, boolean bGravar,
boolean bAlterar, boolean bExcluir, boolean bCancelar ) {
btNovo.setEnabled(bNovo);
btLocalizar.setEnabled(bLocalizar);
btGravar.setEnabled(bGravar);
btAlterar.setEnabled(bAlterar);
btExcluir.setEnabled(bExcluir);
btCancelar.setEnabled(bCancelar);
}
public void limpaCampos(){
tfIdEmpresa.setText("");
tfNomeEmpresa.setText("");
tfIdEmpresa.requestFocus();
setBotoes(true, true, false, false, false, false);
}
public void definirEventos(){
btSair.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
empresaDAO.bd.close();
System.exit(0);
}
});
btNovo.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
limpaCampos();
setBotoes(false, false, true, false, false, true);
}
});
btCancelar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
limpaCampos();
}
});
btGravar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
if (tfIdEmpresa.getText().equals("") || tfNomeEmpresa.getText().equals("")) {
JOptionPane.showMessageDialog(null, "Não pode haver campos em branco !");
tfIdEmpresa.requestFocus();
return;
}
empresaDAO.empresa.setIdEmpresa((Integer.parseInt(tfIdEmpresa.getText() )));
empresaDAO.empresa.setNomeEmpresa(tfNomeEmpresa.getText());
JOptionPane.showMessageDialog(null, empresaDAO.atualizar(EmpresaDAO.INCLUSAO));
limpaCampos();
}
});
btAlterar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
empresaDAO.empresa.setIdEmpresa(Integer.parseInt(tfIdEmpresa.getText() ));
empresaDAO.empresa.setNomeEmpresa(tfNomeEmpresa.getText());
JOptionPane.showMessageDialog(null, empresaDAO.atualizar(EmpresaDAO.ALTERACAO));
limpaCampos();
}
});
btExcluir.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
empresaDAO.empresa.setIdEmpresa((Integer.parseInt(tfIdEmpresa.getText() )));
empresaDAO.localizar();
int n = JOptionPane.showConfirmDialog(null, empresaDAO.empresa.getNomeEmpresa(),
"Excluir a Empresa ? ", JOptionPane.YES_NO_OPTION);
if (n== JOptionPane.YES_NO_OPTION) {
JOptionPane.showMessageDialog(null, empresaDAO.atualizar(EmpresaDAO.EXCLUSAO));
limpaCampos();
}
}
});
btLocalizar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
atualizaCampos();
setBotoes(true, true, true, true, true, true);
}
});
}
public void atualizaCampos(){
empresaDAO.empresa.setIdEmpresa(Integer.parseInt(tfIdEmpresa.getText()));
if (empresaDAO.localizar()) {
tfIdEmpresa.setText(String.valueOf(empresaDAO.empresa.getIdEmpresa()));
tfNomeEmpresa.setText(empresaDAO.empresa.getNomeEmpresa());
setBotoes(true, true, false, false, false, false);
}
else {
JOptionPane.showMessageDialog(null,"Empresa não encontrada !");
limpaCampos();
}
}
public static void main(String[] args) {
// TODO code application logic here
GuiCadastroEmpresa janela = new GuiCadastroEmpresa();
janela.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
janela.setVisible(true);
janela.setSize(800, 600);
janela.setLocation(75, 75);
}
}