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
| public class JFrameG extends JFrame
{
public JPanel G = new JPanel();
public JPanelImage PJ = new JPanelImage("shot.jpg",1);
public JMenuItem itemSettingColor = new JMenuItem("Weigth Color");
public JMenuItem itemSettingSeuilUnite = new JMenuItem("Line Unit Zone");
Container c = this.getContentPane();
public JFrameG(String titre)
{
///........
JMenu menuSetting = new JMenu(" Setting ");
menuSetting.setBackground(Color.WHITE);
JMenuBar mbr = new JMenuBar();
mbr.setBackground(Color.WHITE);
mbr.add(menuSetting);
//..........
menuSetting.add(itemSettingColor);
menuSetting.add(itemSettingSeuilUnite);
///......
itemSettingColor.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
new JDialogAdmin(JFrameG.this,true);
}
});
itemSettingSeuilUnite.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
new JDialogAdmin(JFrameG.this,false);
}
});
setJMenuBar(mbr);
c.add(G);
Dimension screenDim = Toolkit.getDefaultToolkit().getScreenSize();
setSize((int)(screenDim.getWidth()),(int)(screenDim.getHeight()-30));
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args)
{
JFrameG g = new JFrameG("ICElectronics");
}
class JDialogAdmin extends JDialog
{
public JPasswordField code;
public String lu = "pass";
public boolean pile;
public JDialogAdmin(JFrameG owner, boolean pile)
{
super(owner, "Administrateur", true);
this.pile = pile;
JPanel pCentre = new JPanel();
pCentre.setOpaque(false);
JPanel pSouth = new JPanel();
pSouth.setOpaque(false);
JPanel GG = new JPanel(new BorderLayout());
GG.setBackground(Color.WHITE);
code = new JPasswordField(10);
JBoutonClick1 ok = new JBoutonClick1("OK");
JBoutonClick1 cancel = new JBoutonClick1("Cancel");
ok.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
String lulu = new String(code.getPassword());
for(int i=0;i<6;i++)
{
if(lulu.equals(lu))
{
if(JDialogAdmin.this.pile){new JDialogWeigthColor(JFrameG.this);}
else{new JDialogSeuilUnite(JFrameG.this);}
JDialogAdmin.this.setVisible(false);
}
else{code.setText("");}
}
}
});
cancel.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
JDialogAdmin.this.setVisible(false);
}
});
pCentre.add(code);
pSouth.add(ok);
pSouth.add(cancel);
GG.add(pCentre,BorderLayout.CENTER);
GG.add(pSouth,BorderLayout.SOUTH);
GG.setPreferredSize(new Dimension(200, 70));
this.getContentPane().add(GG);
setSize(250, 100);
setLocation(400,300);
setVisible(true);
}
}
class JDialogWeigthColor extends JDialog
{
public JTextF poids[] = new JTextF[7];
public JTextF Lcolor[] = new JTextF[7];
public JDialogWeigthColor(JFrameG owner)
{
super(owner, "Weigth Color", true);
JPanel pCentre = new JPanel(new GridLayout(7,2,5,5));
pCentre.setOpaque(false);
JPanel pSouth = new JPanel();
pSouth.setOpaque(false);
JPanel GG = new JPanel(new BorderLayout());
GG.setBackground(Color.WHITE);
Lcolor[0]= new JTextF(false);
Lcolor[0].setBackground(Color.RED);
Lcolor[0].setForeground(Color.RED);
Lcolor[1]= new JTextF(false);Lcolor[1].setBackground(Color.PINK);
Lcolor[2]= new JTextF(false);Lcolor[2].setBackground(Color.GREEN);
Lcolor[3]= new JTextF(false);Lcolor[3].setBackground(Color.BLUE);
Lcolor[4]= new JTextF(false);Lcolor[4].setBackground(Color.YELLOW);
Lcolor[5]= new JTextF(false);Lcolor[5].setBackground(Color.RED);
Lcolor[6]= new JTextF(false);Lcolor[6].setBackground(Color.RED);
for(int i=0;i<7;i++)
{
poids[i]=new JTextF(true);//poids[i].setText(new Integer(JFrame.this.PJ.traitement.tab_color_poids[0][i]).toString());
pCentre.add(Lcolor[i]);pCentre.add(poids[i]);
}
JBoutonClick1 ok = new JBoutonClick1("OK");
JBoutonClick1 cancel = new JBoutonClick1("Cancel");
ok.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
JDialogWeigthColor.this.setVisible(false);
}
});
cancel.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
JDialogWeigthColor.this.setVisible(false);
}
});
pCentre.setPreferredSize(new Dimension(150, 170));
JPanel p = new JPanel();p.setOpaque(false);
p.add(pCentre);
pSouth.add(ok);
pSouth.add(cancel);
GG.add(p,BorderLayout.CENTER);
GG.add(pSouth,BorderLayout.SOUTH);
this.getContentPane().add(GG);
setSize(250, 250);
setLocation(400,300);
setVisible(true);
}
}
class JDialogSeuilUnite extends JDialog
{
public JTextF poids = new JTextF(true);
public JDialogSeuilUnite(JFrameG owner)
{
super(owner, "Seuil Elementaire", true);
JPanel pCentre = new JPanel();
pCentre.setOpaque(false);
JPanel pSouth = new JPanel();
pSouth.setOpaque(false);
JPanel GG = new JPanel(new BorderLayout());
GG.setBackground(Color.WHITE);
JBoutonClick1 ok = new JBoutonClick1("OK");
JBoutonClick1 cancel = new JBoutonClick1("Cancel");
ok.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
JDialogSeuilUnite.this.setVisible(false);
JFrameG.this.PJ.traitement.seuil = new Integer(poids.getText()).intValue();
}
});
cancel.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
JDialogSeuilUnite.this.setVisible(false);
}
});
pCentre.add(poids);
pSouth.add(ok);
pSouth.add(cancel);
GG.add(pCentre,BorderLayout.CENTER);
GG.add(pSouth,BorderLayout.SOUTH);
GG.setPreferredSize(new Dimension(200, 70));
this.getContentPane().add(GG);
setSize(250, 100);
setLocation(400,300);
setVisible(true);
}
}
} |
Partager