Package com.darwinsys.swingui

Examples of com.darwinsys.swingui.SimpleHelp$PageLoader


    JMenu hm = mkMenu(b,  "help");
    hm.add(mi = mkMenuItem(b, "help", "topics"));
    mi.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        Window jh = new SimpleHelp("CW-Edit", "??");
        UtilGUI.centre(jh);
        jh.setVisible(true);
      }
    });
    hm.addSeparator();
    hm.add(mi = mkMenuItem(b, "help", "about"));
    mi.addActionListener(new ActionListener() {
View Full Code Here

TOP

Related Classes of com.darwinsys.swingui.SimpleHelp$PageLoader

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.