aboutsummaryrefslogtreecommitdiff
path: root/Week11 Mandelbrot/src/fractals/MainWindow.java
blob: 5c56b7fa21cee512eb5cc0be8c7e3d703c01d765 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package fractals;



import java.awt.Insets;

import javax.swing.JFrame;

/**
 * 
 * @author Sjaak Smetsers
 * @version 1.0, 14-03-2013
 */

/**
 * creates a window to which a GridView panel is added
 * 
 */
public class MainWindow  {
    // the size of the window
    public static final int WIDTH = 650, HEIGHT = 650;
    
    // The grip panel
    private GridView grid;
    
    public MainWindow () {
    	JFrame mainFrame = new JFrame ("Mandelbrot");
        
    	mainFrame.setSize (WIDTH, HEIGHT);                
    	mainFrame.setLocationRelativeTo(null);
    	mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    	mainFrame.setResizable(false);
    	mainFrame.setVisible(true);
    	
        Insets insets = mainFrame.getInsets ();
        grid = new GridView (WIDTH - insets.left - insets.right, HEIGHT - insets.top - insets.bottom);
        
        mainFrame.add(grid);
        mainFrame.pack();
    }
    
    /**
     * A getter for the grid
     * @return the grid
     */
    public Grid getGrid () {
    	return grid;
    }
    
}