Package mines.gui.generated

Examples of mines.gui.generated.Ui_Mines


   * @param editor Instance of the editor window.
   * @param about Instance of the about dialog.
   */
  public void connectWithGUI(Mines mainWindow, SettingsDialog settingsDialog,
      MinesEditor editor, AboutDialog about) {
    Ui_Mines GUI = mainWindow.ui;
   
    mMinefieldPaintSignal.connect(GUI.mMinefieldView, "createMinefield(MinefieldContainer)");
    mMinefieldRepaintSignal.connect(GUI.mMinefieldView, "repaintMinefield(MinefieldContainer)");

    GUI.mMinefieldView.connectToButtonsLeftClick(this, "onMinebuttonLeftClicked(MinefieldContainer$Coord)");
View Full Code Here


  /** GUI for the main window. */
  public Ui_Mines ui = null;

  /** Main window constructor, initializes the GUI. */
  public Mines() {
    ui = new Ui_Mines();
    ui.setupUi(this);
  }
View Full Code Here

TOP

Related Classes of mines.gui.generated.Ui_Mines

Copyright © 2018 www.massapicom. 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.