home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / java / FancyButton.java < prev    next >
Encoding:
Java Source  |  1999-11-27  |  1.2 KB  |  42 lines

  1. /*
  2.  * @(#)FancyButton.java    1.0 99/11/27
  3.  * 
  4.  * Copyright (c) 1999, David Griffiths. All Rights Reserved.
  5.  * 
  6.  * This software is the proprietary information of David Griffiths.
  7.  * This source code may not be published or redistributed without the 
  8.  * express permission of the author. 
  9.  * 
  10.  * THE AUTHOR MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY 
  11.  * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  12.  * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  13.  * PURPOSE, OR NON-INFRINGEMENT. THE AUTHOR SHALL NOT BE LIABLE FOR ANY DAMAGES
  14.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  15.  * THIS SOFTWARE OR ITS DERIVATIVES.
  16.  * 
  17.  */
  18.  
  19. import java.awt.*;
  20. import java.applet.*;
  21. import com.sun.java.swing.*;
  22.  
  23. /**
  24.  * An example of one Swing button containing another Swing button
  25.  */
  26. public class FancyButton extends JApplet {
  27.     public void init() {
  28.         ImageIcon iconFind = new ImageIcon(
  29.             getImage(getDocumentBase(), "magglass.gif")
  30.         );
  31.  
  32.         JButton btnFind = new JButton("Find something", iconFind);
  33.         btnFind.setVerticalTextPosition(AbstractButton.BOTTOM);
  34.         btnFind.setHorizontalTextPosition(AbstractButton.CENTER);
  35.         btnFind.setMnemonic('f');
  36.  
  37.         getContentPane().add(btnFind);
  38.     }
  39. }
  40.  
  41.  
  42.