Package com.suwish.pc.ui.dialog

Examples of com.suwish.pc.ui.dialog.ShellDialog


    shellItem.addActionListener(new AbstractAction() { 
      private static final long serialVersionUID = 1L;

      @Override
      public void actionPerformed(ActionEvent e) {
        new ShellDialog(getInstance(), "Shell - command line").setVisible(true);
      }
    });
    toolMenu.add(shellItem);
    JMenuItem preferenceItem = new JMenuItem("Preferences", _Icon("Gnome-Preferences-System_16x16.png"));
    preferenceItem.addActionListener(new AbstractAction() {
View Full Code Here


    shellButton.setToolTipText("Shell");
    shellButton.addActionListener(new AbstractAction() { 
      private static final long serialVersionUID = 1L;
      @Override
      public void actionPerformed(ActionEvent e) {
        new ShellDialog(mainFrame, "Shell - command line").setVisible(true);       
      }
    });
    add(shellButton);
    preferenceButton = new JButton(_Icon("Gnome-Preferences-System_32x32.png"));
    preferenceButton.setToolTipText("Preferences");
View Full Code Here

TOP

Related Classes of com.suwish.pc.ui.dialog.ShellDialog

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.