Examples of AboutDialog


Examples of net.sourceforge.ganttproject.gui.about.AboutDialog

  /*
   * Handle the Mac OSX "about" menu option.
   */

  public void handleAbout(ApplicationEvent event) {
    AboutDialog abd = new AboutDialog(myProj);
    abd.setVisible(true);
    /* Indicate we've handled this event ourselves */
    event.setHandled(true);
  }
 
View Full Code Here

Examples of org.apache.cayenne.modeler.dialog.AboutDialog

    public void performAction(ActionEvent e) {
        showAboutDialog();
    }

    public void showAboutDialog() {
        new AboutDialog(Application.getFrame());
    }
View Full Code Here

Examples of org.apache.openmeetings.web.user.AboutDialog

      @Override
      public void onClick(AjaxRequestTarget target) {
        updateContents(PROFILE_EDIT, target);
      }
    });
    final AboutDialog about = new AboutDialog("aboutDialog");
    add(new AjaxLink<Void>("about") {
      private static final long serialVersionUID = 4065339709905366840L;

      @Override
      public void onClick(AjaxRequestTarget target) {
        about.open(target);
      }
    });
    add(about);
    if (getApplication().getDebugSettings().isDevelopmentUtilitiesEnabled()) {
        add(dev = new DebugBar("dev"));
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    } catch (IOException e) {
      System.err.println("Image could not be loaded: " + e.getMessage());
    }

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Document Analyzer");
    this.outputFileSelected = outputFileSelected;
    this.interactive = interactiveDA;
    this.javaViewerUCRBisSelected = jvucrbis;

    // Creating Menu Bar
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    }

    this.getContentPane().setBackground(Color.WHITE);

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Annotation Viewer");

    // Create Menu Bar
    JMenuBar menuBar = new JMenuBar();
    setJMenuBar(menuBar);
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    });

    aboutMenuItem.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        if (e.getActionCommand() == "About") {
          AboutDialog dialog = new AboutDialog(InstallPear.this, "About PEAR Installer");
          dialog.setVisible(true);
        }
      }
    });
    helpMenu.add(helpMenuItem);
    helpMenu.add(aboutMenuItem);
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

  public AboutUimaHandler(MainFrame frame) {
    this.main = frame;
  }

  public void actionPerformed(ActionEvent e) {
    AboutDialog dialog = new AboutDialog(this.main, "About UIMA");
    dialog.setVisible(true);
  }
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    cpmPanel = new CpmPanel();
    this.getContentPane().add(cpmPanel, BorderLayout.CENTER);

    setJMenuBar(createMenuBar());

    aboutDialog = new AboutDialog(this, "About Collection Processing Engine Configurator");

    this.setSize(800, 600);
    this.pack();
  }
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    JLabel banner = new JLabel(Images.getImageIcon(Images.BANNER));
    this.getContentPane().add(banner, BorderLayout.NORTH);

    this.getContentPane().add(pnG, BorderLayout.CENTER);

    aboutDialog = new AboutDialog(this, "About JCasGen");

    setJMenuBar(createMenuBar());

    pack();
    // show();
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    } catch (IOException e) {
      System.err.println("Image could not be loaded: " + e.getMessage());
    }

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Document Analyzer");
    this.outputFileSelected = outputFileSelected;
    this.interactive = interactiveDA;
    this.javaViewerUCRBisSelected = jvucrbis;

    // Creating Menu Bar
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.