Examples of AboutDialog


Examples of org.pentaho.reporting.engine.classic.core.modules.gui.base.about.AboutDialog

      final String title = getDisplayName();
      // look where we have been added ...
      final Window w = SwingUtil.getWindowAncestor(reportPane);
      if (w instanceof Frame)
      {
        aboutFrame = new AboutDialog
            ((Frame) w, title, ClassicEngineInfo.getInstance());
      }
      else if (w instanceof Dialog)
      {
        aboutFrame = new AboutDialog
            ((Dialog) w, title, ClassicEngineInfo.getInstance());
      }
      else
      {
        aboutFrame = new AboutDialog
            (title, ClassicEngineInfo.getInstance());
      }
      aboutFrame.pack();
      SwingUtil.centerFrameOnScreen(aboutFrame);
    }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.modules.gui.base.about.AboutDialog

   */
  public synchronized void displayAbout()
  {
    if (aboutFrame == null)
    {
      aboutFrame = new AboutDialog(getResources().getString("action.about.name"),
          ClassicEngineDemoInfo.getInstance());

      aboutFrame.pack();
      SwingUtil.centerFrameOnScreen(aboutFrame);
    }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.modules.gui.base.about.AboutDialog

   */
  public synchronized void displayAbout()
  {
    if (aboutFrame == null)
    {
      aboutFrame = new AboutDialog(getResources().getString("action.about.name"),
          ClassicEngineDemoInfo.getInstance());

      aboutFrame.pack();
      LibSwingUtil.centerFrameOnScreen(aboutFrame);
    }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.modules.gui.base.about.AboutDialog

      final String title = getDisplayName();
      // look where we have been added ...
      final Window w = LibSwingUtil.getWindowAncestor(reportPane);
      if (w instanceof Frame)
      {
        aboutFrame = new AboutDialog
            ((Frame) w, title, ClassicEngineInfo.getInstance());
      }
      else if (w instanceof Dialog)
      {
        aboutFrame = new AboutDialog
            ((Dialog) w, title, ClassicEngineInfo.getInstance());
      }
      else
      {
        aboutFrame = new AboutDialog
            (title, ClassicEngineInfo.getInstance());
      }
      aboutFrame.pack();
      LibSwingUtil.centerFrameOnScreen(aboutFrame);
    }
View Full Code Here

Examples of org.pokenet.client.ui.frames.AboutDialog

      this.add(m_login);
     
      m_register = new RegisterDialog();
      this.add(m_register);
     
      m_about = new AboutDialog();
      this.add(m_about);
     
      m_terms = new ToSDialog();
      this.add(m_terms);
     
View Full Code Here

Examples of org.rstudio.studio.client.application.ui.AboutDialog

      server_.getProductInfo(new ServerRequestCallback<ProductInfo>()
      {
         @Override
         public void onResponseReceived(ProductInfo info)
         {
            AboutDialog about = new AboutDialog(info);
            about.showModal();
         }
         @Override
         public void onError(ServerError error)
         {
         }
View Full Code Here

Examples of org.tomighty.ui.about.AboutDialog

    @Inject
    private Injector injector;

    @Override
    public void actionPerformed(ActionEvent actionEvent) {
        AboutDialog about = injector.getInstance(AboutDialog.class);
        about.showDialog();
    }
View Full Code Here

Examples of org.xnap.commons.gui.AboutDialog

    }

    public void actionPerformed(ActionEvent e)
    {
      if (dialog == null) {
        dialog = new AboutDialog();
        dialog.setTitle(i18n.tr("About JHylaFax {0}", getVersion()));
        dialog.setLocationRelativeTo(JHylaFAX.this);
        dialog.addHTMLTab(i18n.tr("General Information"), "about.html", true);
        JTextArea textArea = dialog.addTab(i18n.tr("License"), "LICENSE.jhylafax");
        textArea.setFont(new Font("Monospaced", Font.PLAIN, 10));
View Full Code Here

Examples of palmed.ui.AboutDialog

     */
    public AboutCommand( final MIDlet midlet, final Display display, final Displayable next )
    {
        if( display == null )
            throw new IllegalArgumentException( "parameter 'display' is null" );
        dialog_ = new AboutDialog( midlet, display, next );
        display_ = display;
    }
View Full Code Here

Examples of ptolemy.backtrack.eclipse.plugin.dialogs.AboutDialog

    /** Activate the action and pop up the About dialog.
     *
     *  @param action The action proxy (not used in this method).
     */
    public void run(IAction action) {
        AboutDialog dialog = new AboutDialog(_window.getShell());
        dialog.open();
    }
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.