/*
 * @author IvanGzyk
*/
import javax.swing.*;
import java.awt.*;
import javax.swing.event.*;
import java.awt.event.*;

public class Tela extends JFrame implements ActionListener {
    JPanel Painel_Central;
    JPanel Painel_Central1, Painel_Central2, Painel_Central3, Painel_Central4, Painel_Central5, Painel_Central6, Painel_Central7, Painel_Central8, Painel_CentralVazio;
    JPanel Painel_sul;
    JPanel Painel_left1,Painel_left2,Painel_left3;
    JPanel Painel_central1,Painel_central2;
    JPanel Painel_rigth1,Painel_rigth2,Painel_rigth3;
    JPanel Painel_sul3,Painel_sul4,Painel_sul5;
    JButton bt_1, bt_2,  bt_3,  bt_4,  bt_5,  bt_6,  bt_7;
    
    
    public Tela (){
        setLayout(new BorderLayout());
        
        getContentPane().add("South", Painel_sul= new JPanel(new GridLayout(1, 10)));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        Painel_sul.add(bt_1 = new JButton(new ImageIcon(getClass().getResource("img/bt_Usuarios.png"))));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        Painel_sul.add(bt_2 = new JButton(new ImageIcon(getClass().getResource("img/bt_Seguranca.png"))));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        Painel_sul.add(bt_3 = new JButton(new ImageIcon(getClass().getResource("img/bt_Atendimento.png"))));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        Painel_sul.add(bt_4 = new JButton(new ImageIcon(getClass().getResource("img/Icone_Faturamento.png"))));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        Painel_sul.add(bt_5 = new JButton(new ImageIcon(getClass().getResource("img/bt_Entrada_Saida.png"))));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        Painel_sul.add(bt_6 = new JButton(new ImageIcon(getClass().getResource("img/bt_Ajuda.png"))));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        Painel_sul.add(bt_7 = new JButton(new ImageIcon(getClass().getResource("img/bt_Sair.png"))));
        Painel_sul.add(Painel_sul = new JPanel (new FlowLayout(FlowLayout.CENTER))); 
        
        setTitle("Tela");
    	pack();
        setVisible(true);
        setSize(1000,500);
        getContentPane().setBackground(new Color(70,80,70));
        
    }
    public static void main (String args [])
    {
    
        new Tela();
       
    }

    @Override
    public void actionPerformed(ActionEvent ae) {
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }
    }

