Package com.arjuna.ats.tools.toolsframework.dialogs

Examples of com.arjuna.ats.tools.toolsframework.dialogs.SettingsDialog


    }
  }

  private void showSettingsDialog()
  {
    SettingsDialog dlg = new SettingsDialog(this, _plugins);

    int x = (int) this.getLocation().getX() + (this.getWidth() / 2) - (dlg.getWidth() / 2);
    int y = (int) this.getLocation().getY() + (this.getHeight() / 2) - (dlg.getHeight() / 2);

    dlg.setLocation(x, y);
  }
View Full Code Here


    }
  }

  private void showSettingsDialog()
  {
    SettingsDialog dlg = new SettingsDialog(this, _plugins);

    int x = (int) this.getLocation().getX() + (this.getWidth() / 2) - (dlg.getWidth() / 2);
    int y = (int) this.getLocation().getY() + (this.getHeight() / 2) - (dlg.getHeight() / 2);

    dlg.setLocation(x, y);
  }
View Full Code Here

TOP

Related Classes of com.arjuna.ats.tools.toolsframework.dialogs.SettingsDialog

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.