Package net.roydesign.event

Examples of net.roydesign.event.ApplicationEvent


class MacOsAdapter { //MAC extends ApplicationAdapter {
 
  private static class MyListener implements ActionListener {
    public void actionPerformed(ActionEvent event) {
      ApplicationEvent event2 = (ApplicationEvent) event;
      int type = event2.getType();
      switch (type) {
      case ApplicationEvent.ABOUT:
        About.showAboutDialog(null);
        break;
      case ApplicationEvent.QUIT_APPLICATION:
        ProjectActions.doQuit();
        break;
      case ApplicationEvent.OPEN_DOCUMENT:
        Startup.doOpen(event2.getFile());
        break;
      case ApplicationEvent.PRINT_DOCUMENT:
        Startup.doPrint(event2.getFile());
        break;
      case ApplicationEvent.PREFERENCES:
        PreferencesFrame.showPreferences();
        break;
      }
View Full Code Here


class MacOsAdapter {

    private static class MyListener implements ActionListener {
        @Override
        public void actionPerformed(ActionEvent event) {
            ApplicationEvent event2 = (ApplicationEvent) event;
            int type = event2.getType();
            switch (type) {
            case ApplicationEvent.ABOUT:
                About.showAboutDialog(null);
                break;
            case ApplicationEvent.QUIT_APPLICATION:
                ProjectActions.doQuit();
                break;
            case ApplicationEvent.OPEN_DOCUMENT:
                Startup.doOpen(event2.getFile());
                break;
            case ApplicationEvent.PRINT_DOCUMENT:
                Startup.doPrint(event2.getFile());
                break;
            case ApplicationEvent.PREFERENCES:
                PreferencesFrame.showPreferences();
                break;
            }
View Full Code Here

TOP

Related Classes of net.roydesign.event.ApplicationEvent

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.