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
|
/*
* This file is part of THESIAS
* Copyright (C) 2004-2020 David-Alexandre Trégouët, Valérie Garelle
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import java.awt.*;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.awt.datatransfer.*;
import java.util.*;
import javax.swing.JDialog;
import java.io.*;
class SimpleChooser extends JPanel implements ActionListener
{
JLabel lLeft,lRight,lTitle;
JComboBox cLeft,cRight;
public SimpleChooser(String l,String r,String t,Object []dataLeft,Object []dataRight){
super ( new GridLayout(2,2) );
lLeft = new JLabel(l);
lRight = new JLabel(r);
cLeft = new JComboBox(dataLeft);
cRight = new JComboBox(dataRight);
setBorder(BorderFactory.createTitledBorder(t) );
add(lLeft);
add(lRight);
add(cLeft);
add(cRight);
cLeft.addActionListener(this);
Color chair = new Color( 249, 230, 196 );
Color saumon = new Color( 255, 204, 153 );
lLeft.setBackground(chair);
lRight.setBackground(chair);
super.setBackground(chair);
cLeft.setBackground(Color.white);
cRight.setBackground(Color.white);
}
public SimpleChooser(String l,String r,String t,Object []data){
super ( new GridLayout(2,2) );
lLeft = new JLabel(l);
lRight = new JLabel(r);
cLeft = new JComboBox(data);
cRight = new JComboBox(data);
setBorder(BorderFactory.createTitledBorder(t) );
add(lLeft);
add(lRight);
add(cLeft);
add(cRight);
cLeft.addActionListener(this);
Color chair = new Color( 249, 230, 196 );
Color saumon = new Color( 255, 204, 153 );
cLeft.setBackground(Color.white);
cRight.setBackground(Color.white);
super.setBackground(chair);
}
public String getItems()
{
String s = (cRight.getSelectedItem()).toString();
String t = (cRight.getSelectedItem()).toString();
if( s.indexOf("(") != -1 ){
t = s.substring(0,s.indexOf("(") );
}
return new String( ((Integer)cLeft.getSelectedItem()).toString() + " " + t );
}
public void actionPerformed(ActionEvent e) {
}
};
|