Package com.darwinsys.swingui

Examples of com.darwinsys.swingui.FontChooser


    JMenu options = new JMenu("Options");
    bar.add(options);
    JMenuItem fontItem = new JMenuItem("Font");
    options.add(fontItem);
    final FontChooser fontChooser = new FontChooser(parent);
    fontItem.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        fontChooser.setVisible(true);
        Font font = fontChooser.getSelectedFont();
        if (font == null) {
          System.out.println("Nothing selected");
          return;
        }
        System.out.println(font);
View Full Code Here

TOP

Related Classes of com.darwinsys.swingui.FontChooser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.