124 lines
3.8 KiB
Java
124 lines
3.8 KiB
Java
package Test;
|
|
|
|
import API.Etudiant;
|
|
import API.Groupe;
|
|
import javax.swing.JComboBox;
|
|
import javax.swing.JTextField;
|
|
import javax.swing.JButton;
|
|
import javax.swing.JLabel;
|
|
import java.awt.Dimension;
|
|
import java.awt.Insets;
|
|
import java.awt.GridBagConstraints;
|
|
import java.awt.event.KeyAdapter;
|
|
import java.awt.event.KeyEvent;
|
|
import java.util.ArrayList;
|
|
|
|
public class ProfView extends BFrame {
|
|
private final ArrayList<Etudiant> e;
|
|
private final ArrayList<Groupe> g;
|
|
private final Controller listener;
|
|
private JComboBox<String> groupeOption;
|
|
private JTextField text;
|
|
|
|
public ProfView(ArrayList<Etudiant> e, ArrayList<Groupe> g, Controller listener) {
|
|
super(
|
|
"Vue Professeur",
|
|
700,
|
|
300,
|
|
500,
|
|
500,
|
|
3
|
|
);
|
|
|
|
this.listener = listener;
|
|
this.e = e;
|
|
this.g = g;
|
|
|
|
this.Display();
|
|
}
|
|
|
|
public String getComboSelection() {
|
|
return (String) this.groupeOption.getSelectedItem();
|
|
}
|
|
|
|
public String getSearchStud() {
|
|
return this.text.getText();
|
|
}
|
|
|
|
public int getComboSelectionIndex() {
|
|
return this.groupeOption.getSelectedIndex();
|
|
}
|
|
|
|
public void Display() {
|
|
BLayout settings = new BLayout();
|
|
settings.setPositionX(0);
|
|
settings.setPositionY(6);
|
|
|
|
settings.setPositionY(0);
|
|
JButton studList = new JButton("Voir la liste des etudiants");
|
|
studList.setActionCommand("pv::GetStudList");
|
|
studList.addActionListener(this.listener);
|
|
this.add(studList, settings);
|
|
|
|
settings.setPositionY(1);
|
|
this.add(new JLabel(" "), settings);
|
|
|
|
settings.setPositionY(2);
|
|
JLabel gs = new JLabel("Afficher les etudiants se trouvant dans le groupe :");
|
|
this.add(gs, settings);
|
|
|
|
settings.setPositionY(3);
|
|
settings.setPadding(new Insets(0, 0, 0, 50));
|
|
String[] groupeList = new String[this.g.size()];
|
|
|
|
for(int i = 0; i <= this.g.size()-1; i++) {
|
|
groupeList[i] = this.g.get(i).getName();
|
|
}
|
|
|
|
this.groupeOption = new JComboBox<>(groupeList);
|
|
this.groupeOption.setPreferredSize(new Dimension(110, 30));
|
|
this.add(groupeOption, settings);
|
|
|
|
settings.setPositionY(3);
|
|
settings.setPadding(new Insets(0, 0, 0, 0));
|
|
settings.setAnchor(GridBagConstraints.EAST);
|
|
JButton confirm = new JButton("Rechercher");
|
|
confirm.setActionCommand("pv::GetListFiltered");
|
|
confirm.addActionListener(this.listener);
|
|
this.add(confirm, settings);
|
|
|
|
settings.setAnchor(GridBagConstraints.CENTER);
|
|
|
|
settings.setPositionY(4);
|
|
this.add(new JLabel(" "), settings);
|
|
|
|
settings.setPositionY(5);
|
|
JLabel pf = new JLabel("Rechercher un etudiant : ");
|
|
this.add(pf, settings);
|
|
|
|
settings.setPositionY(6);
|
|
settings.setPadding(new Insets(0, 0, 0, 50));
|
|
this.text = new JTextField();
|
|
this.text.setPreferredSize(new Dimension(110, 30));
|
|
text.addKeyListener(new KeyAdapter() {
|
|
public void keyTyped(KeyEvent e) {
|
|
if (text.getText().length() >= 3 )
|
|
e.consume();
|
|
}
|
|
});
|
|
this.add(this.text, settings);
|
|
|
|
settings.setPositionY(6);
|
|
settings.setPadding(new Insets(0, 0, 0, 0));
|
|
settings.setAnchor(GridBagConstraints.EAST);
|
|
JButton searchTLetters = new JButton("Rechercher");
|
|
searchTLetters.addActionListener(this.listener);
|
|
searchTLetters.setActionCommand("pv::SearchStudentPer3Letters");
|
|
this.add(searchTLetters, settings);
|
|
|
|
this.setResizable(false);
|
|
this.openBFrame();
|
|
this.refreshBFrame();
|
|
}
|
|
}
|