-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterfacePrincipale.java
179 lines (155 loc) · 5.95 KB
/
InterfacePrincipale.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
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.util.ArrayList;
import java.util.Iterator;
import javax.swing.*;
import javax.swing.text.Utilities;
import java.util.HashSet; // Import the HashSet class
public class InterfacePrincipale extends JFrame implements ActionListener {
private JFileChooser fc;
private ArrayList<String> texte;
public JTextArea ta;
private HashSet<String> motsSurlignés;
protected static final Dictionnaire dico = new Dictionnaire();
private JScrollPane scrollPane;
private final JButton chooser, menu, verifier;
private final JMenuItem ecrire, afficher;
private final JPopupMenu dropDownButton;
public InterfacePrincipale() {
JPanel haut = new JPanel();
JPanel bas = new JPanel();
this.add(haut, "North");
this.add(bas, "Center");
this.ta = new JTextArea("", 100, 20);
ta.setLineWrap( true );
ta.setSize( ta.getPreferredSize() );
ta.addMouseListener( new MouseAdapter()
{
public void mouseClicked(MouseEvent e)
{
if ( SwingUtilities.isLeftMouseButton(e) )
{
// Events liés à la zone de texte TextArea
try
{
int offset = ta.viewToModel2D(e.getPoint());
int start = Utilities.getWordStart(ta, offset);
int end = Utilities.getWordEnd(ta, offset);
String word = ta.getDocument().getText(start, end-start);
if (!dico.bonMot(word.toLowerCase()) && word.matches("[a-zA-z]+") && motsSurlignés.contains(word)){
CorrectionWindow fen = new CorrectionWindow(word, start, end, ta);
}
}
catch (Exception e2) {}
}
}
});
bas.add(this.ta);
scrollPane = new JScrollPane(ta);
getContentPane().add( scrollPane );
// Boutons du menu principal
this.menu = new JButton("Fichier");
this.dropDownButton = new JPopupMenu("Fichier");
this.ecrire = new JMenuItem("Sauvegarder");
this.dropDownButton.add(ecrire);
this.afficher = new JMenuItem("Afficher");
this.dropDownButton.add(afficher);
haut.add(menu);
this.verifier = new JButton("Vérifier");
haut.add(verifier);
this.chooser = new JButton("Dictionnaire");
haut.add(chooser);
this.fc = new JFileChooser();
this.texte = new ArrayList();
this.menu.addActionListener(this);
this.chooser.addActionListener(this);
this.afficher.addActionListener(this);
this.verifier.addActionListener(this);
this.ecrire.addActionListener(this);
this.chooser.setToolTipText("Sélectionner le dictionnaire de mot.");
this.afficher.setToolTipText("Sélectionner le texte à corriger.");
this.verifier.setToolTipText("Vérifier pour des erreurs.");
this.ecrire.setToolTipText("Sauvegarder les corrections.");
}
// Dérouler le menu
public void deroulerMenu() {
dropDownButton.show(menu, 0, menu.getHeight());
}
// Charger le dictionnaire
public void chargerFichier() {
dico.readDico();
}
// Mettre le contenu du textArea dans un fichier
public void ecrireFichier() {
int val = this.fc.showOpenDialog(this);
try {
if (val == 0) {
BufferedWriter r = new BufferedWriter(new FileWriter(this.fc.getSelectedFile()));
if (ta.getText() != null) r.write(ta.getText());
r.close();
}
} catch (Exception var4) {
var4.printStackTrace();
}
}
public void afficher() {
int val = this.fc.showOpenDialog(this);
try {
if (val == 0) {
BufferedReader r = new BufferedReader(new FileReader(this.fc.getSelectedFile()));
String line = null;
while((line = r.readLine()) != null) {
this.texte.add(line);
}
r.close();
}
} catch (Exception var4) {
var4.printStackTrace();
}
if (this.texte != null) {
Iterator var1 = this.texte.iterator();
while(var1.hasNext()) {
String s = (String)var1.next();
this.ta.append(s + "\n");
}
}
}
// On va chercher la classe MistakeHighlight pour surligner les mots hors-dictionnaire
public void verifier(){
MistakeHighlight h = new MistakeHighlight(ta);
h.removeHighlights(ta);
motsSurlignés = new HashSet<String>();
String texte = ta.getText();
texte = texte.replace("\n", " ");
String[] cor = texte.split(" ");
for (int i = 0; i < cor.length; i++) {
String t1 = cor[i];
// On vérifie que le mot t1 n'est pas dans le dictionnaire et qu'il est seulement composé de lettres
if (!dico.bonMot(t1.toLowerCase()) && t1.matches("[a-zA-Z]+")) {
h.highlight(t1);
motsSurlignés.add(t1);
}
}
}
// actionPerformed liés aux boutons liés au fichier
public void actionPerformed(ActionEvent e) {
if(e.getSource() == this.menu){
this.deroulerMenu();
} else if (e.getSource() == this.chooser) {
this.chargerFichier();
} else if (e.getSource() == this.afficher) {
this.afficher();
} else if (e.getSource() == this.verifier) {
this.verifier();
} else if (e.getSource() == this.ecrire) {
this.ecrireFichier();
}
}
}