-
Notifications
You must be signed in to change notification settings - Fork 0
/
CaixaDialogo.java
68 lines (57 loc) · 2.06 KB
/
CaixaDialogo.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
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class CaixaDialogo extends JPanel {
private JButton nextButton;
private int indiceFalaAtual = 0;
private String[] falas = new String[0];
private JLabel textLabel;
private Font Fonte;
public CaixaDialogo() {
Fonte = DefinirFonte.fonte();
editar();
}
private void editar() {
setLayout(new BorderLayout());
// Define um painel para o botão "Próximo" com layout FlowLayout alinhado à
// direita
JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
add(buttonPanel, BorderLayout.EAST);
// Tirei o acento por conta da fonte, não encontrei ainda com acentos em
// portugues
nextButton = new JButton("Proximo");
nextButton.setFont(Fonte.deriveFont(Font.PLAIN, 20f));
nextButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
exibirProximaFala();
}
});
buttonPanel.add(nextButton); // Adiciona o botão ao painel
}
public void dialogar(String[] falas) {
this.falas = falas;
this.indiceFalaAtual = 0;
criarInterfaceDeDialogo();
exibirProximaFala();
}
private void criarInterfaceDeDialogo() {
textLabel = new JLabel();
add(textLabel, BorderLayout.CENTER);
textLabel.setFont(Fonte.deriveFont(Font.PLAIN, 30f));
}
private void exibirProximaFala() {
if (indiceFalaAtual < falas.length) {
textLabel.setText(falas[indiceFalaAtual]);
indiceFalaAtual++;
System.out.println("Próxima fala.");
}
if (indiceFalaAtual == falas.length ) {
nextButton.setEnabled(false);
// Remove o textLabel da interface
// remove(textLabel);
revalidate (); // Atualiza o layout
repaint(); // Redesenha a interface
}
}
}