Examples of MainGui


Examples of com.darkprograms.speech.gui.MainGUI

         * started with a right-click on plugin list on the desktop frontend
         * (it.freedomotic.jfrontend plugin)
         */
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            MainGUI pluginGUI = new MainGUI(this);
            pluginGUI.setVisible(true);
            pluginGUI.setLocationRelativeTo(null);
            bindGuiToPlugin(pluginGUI);
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
View Full Code Here

Examples of com.googlecode.jumpnevolve.graphics.gui.MainGUI

  private boolean menuButtonCreated = false;

  public Player(Level parent, Vector startPosition, String avaiableFigures,
      String startFigure, boolean cameraOnPlayer) {
    this.parent = parent;
    this.gui = new MainGUI(this);
    this.gui.maximizeSize();

    // Liste mit Spielfiguren erstellen
    ButtonList selectList = new ButtonList(2, 10);
    selectList.addButton(new InterfaceButton(
View Full Code Here

Examples of com.googlecode.jumpnevolve.graphics.gui.MainGUI

  public Menu() {
    this("default");
  }

  public Menu(String background) {
    this.gui = new MainGUI(this);
    this.mainCon = new GridContainer(1, 1, GridContainer.MODUS_X_LEFT,
        GridContainer.MODUS_Y_UP);
    this.gui.setMainContainer(mainCon);
    this.setBackground(background);
  }
View Full Code Here

Examples of com.googlecode.jumpnevolve.graphics.gui.MainGUI

    // HeadlineContainer als übergeordneten Container erstellen, beinhaltet
    // die Kopfzeile und borderContainer
    HeadlineContainer headCon = new HeadlineContainer(topGrid, border);

    // MainGUI erstellen, MainContainer ist der HeadlineContainer
    this.gui = new MainGUI(this);
    this.gui.setMainContainer(headCon);

    // Kamera setzen
    this.setCamera(new EditorCamera(this));
    this.setCameraPosition(new Vector(this.getWidth(), this.getHeight())
View Full Code Here

Examples of de.nordakademie.nxtsimulation.gui.MainGui

    nativeLcd = NativeLCD.getInstance();
    nativeSensor = NativeSensorPort.getInstance();

    display = Display.getDefault();
    shell = new Shell(display);
    mainGui = new MainGui(shell, SWT.NULL);
    mainGui.init();

    pilot = new SimPilot();
    configController = new ConfigurationController(mainGui
        .getConfigurationGui(), mainGui.getArenaGui(), pilot);
View Full Code Here

Examples of net.drthum.simon.gui.MainGUI

    /**
     * @param args Not used
     */
    public static void main(String[] args) {
        MainGUI gui = new MainGUI();
        gui.setVisible(true);
    }
View Full Code Here

Examples of net.sf.jmp3renamer.gui.MainGUI

     *
     * @see net.sf.jmp3renamer.gui.MainGUI
     */
    private void initGUI(BundleContext ctx) {
        logger.info("Initializing GUI");
        mainGUI = new MainGUI(this, ctx);
    }
View Full Code Here

Examples of net.sourceforge.seriesdownloader.view.MainGui

   * @param args
   */
  public static void main(String[] args) {
    OptionsSingleton.getInstance();

    gui = new MainGui();
    gui.setTitle("SeriesDownloader " + version);
    statusbar = new StatusMessageController(gui.getStatusbar());

    gui.addWindowListener(new WindowListener() {
      public void windowActivated(WindowEvent arg0) {
View Full Code Here

Examples of org.megatome.swing.MainGUI

        System.setProperty("apple.laf.useScreenMenuBar", "true"); //$NON-NLS-1$ //$NON-NLS-2$
        try {
            SwingUtilities.invokeAndWait(new Runnable() {
        //@Override
        public void run() {
              new MainGUI().setVisible(true);
        }
            });
        } catch (InvocationTargetException ex) {
            ex.printStackTrace();
        } catch (InterruptedException ex) {
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.