Examples of MainFrame


Examples of com.greentea.relaxation.jnmf.gui.MainFrame

      SwingUtilities.invokeLater(new Runnable()
      {
         public void run()
         {
            MainFrame inst = new MainFrame();
            inst.setLocationRelativeTo(null);
            inst.setVisible(true);
         }
      });
   }
View Full Code Here

Examples of com.idojaras.core.view.MainFrame

          }
        } catch (Exception e) {
          // no nimbus theme
          log.warn(e.getMessage());
        }
        new MainFrame();
      }
    });
  }
View Full Code Here

Examples of com.limelight.gui.MainFrame

      JOptionPane.showMessageDialog(null, "Gamepad mapping is not set. If you want to use a gamepad, "+
          "click the Options menu and choose Gamepad Settings. After mapping your gamepad,"+
          " it will work while streaming.", "Limelight", JOptionPane.INFORMATION_MESSAGE);
    }

    MainFrame main = new MainFrame();
    main.build();
    limeFrame = main.getLimeFrame();
  }
View Full Code Here

Examples of com.mmi.pllTrainer.gui.frame.MainFrame

    // views
    this.cubeView = new CubeView();

    // Main-Frame
    this.frame = new MainFrame("2-Sides-PLL", cubeView, cubeModel);

    // Listeners
    this.frame.addKeyListener(new ResetCubeViewListener(this.cubeModel));
    this.frame.addKeyListener(new SpaceListener(this.cubeModel));
    this.frame.addWindowListener(new WindowCloseListener(this.cubeModel));
View Full Code Here

Examples of com.mucommander.ui.main.MainFrame

        run = false;
    }

    public void run() {
        Random random = new Random();
        MainFrame mainFrame = WindowManager.getCurrentMainFrame();

        while(run) {
            if(random.nextInt(2)==0)
                ActionManager.performAction(com.mucommander.ui.action.impl.SwitchActiveTableAction.Descriptor.ACTION_ID, mainFrame);   

            FolderPanel folderPanel = mainFrame.getActivePanel();
            FileTable fileTable = mainFrame.getActiveTable();
            AbstractFile currentFolder = folderPanel.getCurrentFolder();

            try {
                AbstractFile parentFolder = currentFolder.getParent();
                AbstractFile children[] = currentFolder.ls();
View Full Code Here

Examples of com.nilhcem.fakesmtp.gui.MainFrame

            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          } catch (Exception e) {
            LOGGER.error("", e);
          }

          new MainFrame();
        }
      });
    }
  }
View Full Code Here

Examples of com.polysfactory.glassremote.ui.MainFrame

            System.out.println("Debug mode is on.");
        }

        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                MainFrame mainFrame = new MainFrame();
                mainFrame.setLocationRelativeTo(null);
                mainFrame.setVisible(true);
                mainFrame.setFocusable(true);
                mainFrame.selectDevice();
            }
        });
    }
View Full Code Here

Examples of com.projity.pm.graphic.frames.MainFrame

//        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
//      } catch (Exception e) {
//      }
//    }
    ApplicationStartupFactory startupFactory=new ApplicationStartupFactory(opts); //put before to initialize standalone flag
    MainFrame frame = new MainFrame(Messages.getContextString("Text.ApplicationTitle"), null, null);
    boolean doWelcome = true; // to do see if project param exists in args
    startupFactory.instanceFromNewSession(frame,doWelcome);
  }
View Full Code Here

Examples of com.salas.bb.views.mainframe.MainFrame

                         oldBriefSentences != aPrefs.getBriefSentences()))
                    {
                        oldBriefSentences = aPrefs.getBriefSentences();
                        oldBriefMaxLength = aPrefs.getBriefMaxLength();

                        MainFrame frame = GlobalController.SINGLETON.getMainFrame();
                        IFeedDisplay feedView = frame.getArticlesListPanel().getFeedView();
                        feedView.repaintIfInMode(true);
                    }
                }
            });
        }
View Full Code Here

Examples of com.salas.bb.views.mainframe.MainFrame

        final ITaggable[] taggables = getSelectedTaggables();

        if (taggables != null)
        {
            GlobalController controller = GlobalController.SINGLETON;
            MainFrame mainFrame = controller.getMainFrame();
            ITagsStorage tagsNetworker = controller.getTagsStorage();
            final AbstractTagsDialog dialog = getTagsDialog(mainFrame, tagsNetworker);

            GlobalModel model = GlobalModel.SINGLETON;
            final UserPreferences userPreferences = model.getUserPreferences();
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.