Java JDialog Center centerWindow(JDialog dialog)

Here you can find the source of centerWindow(JDialog dialog)

Description

center Window

License

Open Source License

Parameter

Parameter Description
dialog a parameter

Declaration

public static void centerWindow(JDialog dialog) 

Method Source Code

//package com.java2s;
/*// ww  w. ja v  a  2  s.co m
 * Part of program for analyze speech signal 
 * Copyright (c) 2008 Mindaugas Greibus (spantus@gmail.com)
 * http://code.google.com/p/spantus/
 * 
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 675 Mass Ave, Cambridge, MA 02139, USA.
 * 
 */

import java.awt.Dimension;
import java.awt.Toolkit;
import javax.swing.JDialog;

public class Main {
    /**
     * 
     * @param dialog
     */
    public static void centerWindow(JDialog dialog) {
        //      Get the size of the screen
        Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
        // Determine the new location of the window
        int w = dialog.getSize().width;
        int h = dialog.getSize().height;
        int x = (dim.width - w) / 2;
        int y = (dim.height - h) / 2;

        // Move the window
        dialog.setLocation(x, y);

    }
}

Related

  1. centerDialogInWindow(JDialog dialog, Window win)
  2. centerOn(JDialog dialog, Component other)
  3. centerOnComponent(JDialog dialog, Component comp)
  4. centerOnScreen(JDialog jdialog)
  5. centerWindow(JDialog dialog)
  6. centrarVentana(JDialog pDialog)
  7. getCentralDialogLocation(Component parent, JDialog dialog)
  8. getCentredDialogBounds(JDialog dialog, Component parent, int defaultWidth, int defaultHeight)
  9. packAndCenterJDialog(JDialog form)