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
|
private void jbInit() throws Exception {
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
this.getContentPane().setLayout(null);
jLabel1.setBackground(Color.lightGray);
jLabel1.setFont(new java.awt.Font("Comic Sans MS", Font.BOLD, 15));
jLabel1.setToolTipText("");
jLabel1.setText("Fichier");
jLabel1.setBounds(new Rectangle(757, 26, 100, 30));
jTextField1.setText("x000");
jTextField1.setBounds(new Rectangle(757, 62, 211, 24));
jButton2.setBounds(new Rectangle(757, 95, 100, 30));
jButton2.setText("Charger");
jButton2.addActionListener(new
InterfaceGraphique_jButton2_actionAdapter(this));
jButton1.setBounds(new Rectangle(868, 95, 100, 30));
jButton1.setText("Sauvegarder");
jButton3.setBounds(new Rectangle(757, 246, 100, 30));
jButton3.setText("Dessiner");
jButton3.addActionListener(new
InterfaceGraphique_jButton3_actionAdapter(this));
jTextArea1.setEnabled(false);
jTextArea1.setBounds(new Rectangle(868, 247, 100, 28));
jRadioButton1.setText(" I");
jRadioButton1.setBounds(new Rectangle(757, 167, 40, 14));
jRadioButton1.addActionListener(new
InterfaceGraphique_jRadioButton1_actionAdapter(this));
jRadioButton2.setText(" II");
jRadioButton2.setBounds(new Rectangle(757, 185, 40, 14));
jRadioButton2.addActionListener(new
InterfaceGraphique_jRadioButton2_actionAdapter(this));
jRadioButton3.setText(" III");
jRadioButton3.setBounds(new Rectangle(757, 202, 40, 14));
jRadioButton3.addActionListener(new
InterfaceGraphique_jRadioButton3_actionAdapter(this));
jRadioButton4.setText("aVR");
jRadioButton4.setBounds(new Rectangle(757, 218, 50, 14));
jRadioButton4.addActionListener(new
InterfaceGraphique_jRadioButton4_actionAdapter(this));
jRadioButton5.setText("aVL");
jRadioButton5.setBounds(new Rectangle(846, 218, 50, 14));
jRadioButton5.addActionListener(new
InterfaceGraphique_jRadioButton5_actionAdapter(this));
jRadioButton6.setText("aVF");
jRadioButton6.setBounds(new Rectangle(931, 218, 50, 14));
jRadioButton6.addActionListener(new
InterfaceGraphique_jRadioButton6_actionAdapter(this));
jRadioButton7.setText("V1");
jRadioButton7.setBounds(new Rectangle(846, 167, 40, 14));
jRadioButton7.addActionListener(new
InterfaceGraphique_jRadioButton7_actionAdapter(this));
jRadioButton8.setText("V2");
jRadioButton8.setBounds(new Rectangle(846, 185, 40, 14));
jRadioButton8.addActionListener(new
InterfaceGraphique_jRadioButton8_actionAdapter(this));
jRadioButton9.setText("V3");
jRadioButton9.setBounds(new Rectangle(846, 202, 40, 14));
jRadioButton9.addActionListener(new
InterfaceGraphique_jRadioButton9_actionAdapter(this));
jRadioButton10.setText("V4");
jRadioButton10.setBounds(new Rectangle(931, 167, 40, 14));
jRadioButton10.addActionListener(new
InterfaceGraphique_jRadioButton10_actionAdapter(this));
jRadioButton11.setText("V5");
jRadioButton11.setBounds(new Rectangle(931, 185, 40, 14));
jRadioButton11.addActionListener(new
InterfaceGraphique_jRadioButton11_actionAdapter(this));
jRadioButton12.setText("V6");
jRadioButton12.setBounds(new Rectangle(931, 202, 40, 14));
jRadioButton12.addActionListener(new
InterfaceGraphique_jRadioButton12_actionAdapter(this));
jLabel3.setFont(new java.awt.Font("Comic Sans MS", Font.BOLD, 15));
jLabel3.setText("Choix des dérivations");
jLabel3.setBounds(new Rectangle(757, 137, 211, 23));
this.getContentPane().add(jButton1);
this.getContentPane().add(jLabel3);
this.getContentPane().add(jRadioButton1);
this.getContentPane().add(jRadioButton2);
this.getContentPane().add(jRadioButton3);
this.getContentPane().add(jRadioButton7);
this.getContentPane().add(jRadioButton8);
this.getContentPane().add(jRadioButton9);
this.getContentPane().add(jRadioButton10);
this.getContentPane().add(jRadioButton11);
this.getContentPane().add(jRadioButton12);
this.getContentPane().add(jRadioButton4);
this.getContentPane().add(jRadioButton5);
this.getContentPane().add(jRadioButton6);
this.getContentPane().add(jButton3);
this.getContentPane().add(jTextArea1);
this.getContentPane().add(jTextField1);
this.getContentPane().add(jLabel1);
this.getContentPane().add(jButton2);
} |
Partager