예제 #1
0
 /** Creates a panel for the components of the interface */
 private void createPnl() throws InterruptedException {
   clipPnl = new JPanel();
   setPnl(lpane);
   setImage();
   setSpeechImg();
   addBtn();
   addClippyTxt();
   lpane.setOpaque(false);
   voiceMenu = new VoiceMenu(currentBehavior);
   voiceMenu.pack();
   voiceMenu.setVisible(true);
   setExitBtn();
   try {
     setup();
   } catch (IOException ex) {
     System.err.println(ex.getMessage());
   }
 }