Examples of AboutWindow


Examples of application.ui.AboutWindow

 
  @Override
  public void actionPerformed(ActionEvent event) {
    System.out.println(event.getActionCommand());
    if (event.getActionCommand().equals("About")) {
      new AboutWindow();
    } else
    if (event.getActionCommand().equals("Create")) {
      if (db.exist()) {
        try {
          db.createTables();
View Full Code Here

Examples of at.bestsolution.drawswf.AboutWindow

    //----------------------------------------------------------------------------
    public void actionPerformed(ActionEvent action_event)
    {
        if (about_window_ == null)
        {
            about_window_ = new AboutWindow();
        }
        about_window_.show();
    }
View Full Code Here

Examples of net.sourceforge.ztail.ui.windows.AboutWindow

   
    UXMenuButton item = new UXMenuButton(helpMenu);
    item.setCaption("About");
    item.setClickAction(new UXAbstractAction() {
      public void doAction(Object cmp) {
        AboutWindow win = new AboutWindow(menu.getShell());
        win.open();
      }
    });
  }
View Full Code Here

Examples of org.analyse.core.gui.AboutWindow

        }
       
      //  analyseFrame.initGUI();

        splash.setProgress(90);
        aboutWindow = new AboutWindow(analyseFrame);
        parametrageWindow = new ParametrageWindow(analyseFrame);
        splash.setProgress(100);
        analyseFrame.setVisible(true);
        splash.setVisible(false);
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.AboutWindow

        aboutItem.addActionListener(new AbstractAction() {
            private AboutWindow window;

            public void actionPerformed(ActionEvent event) {
                if (this.window == null) {
                    this.window = new AboutWindow(XBayaMenu.this.getEngine());
                }
                this.window.show();
            }
        });
        helpMenu.add(aboutItem);
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.AboutWindow

        aboutItem.addActionListener(new AbstractAction() {
            private AboutWindow window;

            public void actionPerformed(ActionEvent event) {
                if (this.window == null) {
                    this.window = new AboutWindow(XBayaMenu.this.getEngine());
                }
                this.window.show();
            }
        });
        helpMenu.add(aboutItem);
View Full Code Here

Examples of org.apache.airavata.xbaya.ui.dialogs.AboutWindow

        aboutItem.addActionListener(new AbstractAction() {
            private AboutWindow window;

            public void actionPerformed(ActionEvent event) {
                if (this.window == null) {
                    this.window = new AboutWindow(XBayaMenu.this.getEngine());
                }
                this.window.show();
            }
        });
        helpMenu.add(aboutItem);
View Full Code Here

Examples of org.jmule.ui.swt.aboutwindow.AboutWindow

    MenuItem about_item = new MenuItem (submenu, SWT.PUSH);
    about_item.setText(Localizer._("mainwindow.mainmenu.help.about"));
    about_item.setImage(SWTImageRepository.getMenuImage("information.png"));
    about_item.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(SelectionEvent arg0) {
        AboutWindow window = new AboutWindow();
        window.getCoreComponents();
        window.initUIComponents();
      }
    });
  }
View Full Code Here

Examples of org.parosproxy.paros.view.AboutWindow

 
  private void run() throws Exception {
     
        checkUpdate();
     
      AboutWindow aboutWindow = null;
      if (cmdLine.isGUI()) {
        showLicense();
          aboutWindow = new AboutWindow();
          aboutWindow.setVisible(true);
      }
     

      Model.getSingleton().init();
      Model.getSingleton().getOptionsParam().setGUI(cmdLine.isGUI());
   
    if (Model.getSingleton().getOptionsParam().isGUI()) {
        runGUI();
        aboutWindow.dispose();
      } else {
          runCommandLine();
      }
     
  }
View Full Code Here

Examples of org.parosproxy.paros.view.AboutWindow

    String userAgent = Model.getSingleton().getOptionsParam().getHttpHeaderParam().getCustomUserAgent();
    HttpSender.setUserAgent(userAgent);
   
    boolean showSplash = Model.getSingleton().getOptionsParam().getViewParam().isShowSplash();

    AboutWindow aboutWindow = null;
   
    if (cmdLine.isGUI()) {
      showLicense();
      if (showSplash) {
        aboutWindow = new AboutWindow();
        aboutWindow.setVisible(true);
        Thread.sleep(1000);
      }
    }

    Model.getSingleton().getOptionsParam().setGUI(cmdLine.isGUI());

    if (Model.getSingleton().getOptionsParam().isGUI()) {
      runGUI();
     
      if (showSplash) { 
        aboutWindow.dispose();
      }
    } else {
      runCommandLine();
    }
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.