import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;
import javax.swing.JButton.*;

public class Interface extends JFrame implement ActionListener
{

	JTooBar barra_de_Ferramentas = new JTooBar();

	JPanel Painel_Oeste,Painel_Leste,Painel_Botoes,Painel_Norte;
	
	JButton bt_Atendimento,bt_Almoxarifado,bt_Biblioteca,bt_Boletim_de_Serviço,bt_Compras;
	JButton bt_Liquidacao_de_Despesas,bt_SRP,bt_Patrimonio,bt_Contrato,bt_Convenios,bt_Infra_Estrutura;
	JButton bt_Patrimonio_Imovel, bt_Restaurante, bt_Faturas,bt_Bolsas,bt_Transporte;
	JButton bt_Sistema_Orcamentario,bt_Sitema_de_Protocolos,bt_Sistema_Academico_(SIGAA),bt_Sistema_Rec_Humanos_(SIGRH);
	JLabel lbl_Subsistemas,lbl_Portais;

	public Interface()

		setLayout(new BorderLayout());
		getContentPane().add("North",Painel_Norte =new JPanel(new FlowtLayout(FlowtLayout.RIGHT)));
		Painel_Norte.setBackground(new Color(0,255,128));
		getContentPane().add("East",Painel_Oeste = new JPanel(new GridLayout(5,4)));
		getContentPane().add("West",Painel_Leste = new JPanel(new GridLayout(3,1)));
		Painel_Botoes.add(bt_Portal_da_Reitoria =new JButton(new ImageIcon("Icone_Portal_da_Reitoria.png")));
		Painel_Botoes.add(bt_Portal_da_Direcao_Centro_Hospital =new JButton(new ImageIcon("Icone_Portal_da_Direcao_Centra_Hospital.png")));
		Painel_Botoes.add(bt_Portal_da_Auditoria =new JButton(new ImageIcon("Icone_Portal_da_Auditoria.png")));
		Painel_Botoes.add(bt_Portal_da_Fundacao =new JButton(new ImageIcon("Icone_Portal_da_Fundacao.png")));
		getContentPane().add("East",Painel_Botoes = new JPanel(new GridLayout(5,4)));
		Painel_Botoes.add(bt_Atendimento_de_Requisitos =new JButton(new ImageIcon("Icone_Atendimento_de_Requisitos.png")));
		Painel_Botoes.add(bt_Almoxarifado =new JButton(new ImageIcon("Icone_Almoxarifado.png")));
		Painel_Botoes.add(bt_Biblioteca =new JButton(new ImageIcon("Icone_Biblioteca.png")));
		Painel_Botoes.add(bt_Boletim_de_Serviço =new JButton(new ImageIcon("Icone_Boletim_de_Serviço.png")));
		Painel_Botoes.add(bt_Compras =new JButton(new ImageIcon("Icone_Compras.png")));
		Painel_Botoes.add(bt_Liquidacao_de_Despesas =new JButton(new ImageIcon("Icone_Liquidacao_de_Despesas.png")));
		Painel_Botoes.add(bt_SRP =new JButton(new ImageIcon("Icone_SRP.png")));
		Painel_Botoes.add(bt_Patrimonio =new JButton(new ImageIcon("Icone_Patrimonio.png")));
		Painel_Botoes.add(bt_Contrato =new JButton(new ImageIcon("Icone_Contratos.png")));
		Painel_Botoes.add(bt_Convenios =new JButton(new ImageIcon("Icone_Convenios.png")));
		Painel_Botoes.add(bt_Infra_Estrutura =new JButton(new ImageIcon("Icone_Infra_Estrutura.png")));
		Painel_Botoes.add(bt_Patrimonio_Imovel =new JButton(new ImageIcon("Icone_Ptrimonio_Imovel.png")));
		Painel_Botoes.add(bt_Restaurante =new JButton(new ImageIcon("Icone_Restaurante.png")));
		Painel_Botoes.add(bt_Faturas =new JButton(new ImageIcon("Icone_Faturas.png")));
		Painel_Botoes.add(bt_Bolsas =new JButton(new ImageIcon("Icone_Bolsas.png")));
		Painel_Botoes.add(bt_Transporte =new JButton(new ImageIcon("Icone_Transporte.png")));
		Painel_Botoes.add(bt_Sistema_Orcamentario =new JButton(new ImageIcon("Icone_Sistema_Orcamentario.png")));
		Painel_Botoes.add(bt_Sistema_de_Protocolos =new JButton(new ImageIcon("Icone_Sistema_de_Protocolos.png")));
		Painel_Botoes.add(bt_Sistema_Academico_(SIGAA) =new JButton(new ImageIcon("Icone_Sistema_Academico_(SIGAA).png")));
		Painel_Botoes.add(bt_Sistema_Rec_Humanos_(SIGRH) =new JButton(new ImageIcon("Icone_Sistema_Rec_Humanos(SIGRH).png")));

		bt_Portal_da_Reitoria.addActionListener(this);
		bt_Portal_da_Direcao_Centro_Hospital.addActionListener(this);
		bt_Portal_da_Auditoria.addActionListener(this);
		bt_Portal_da_Fundacao.addActionListener(this);
		bt_Atendimento_de_Requisitos.addActionListener(this);
		bt_Almoxarifado.addActionListener(this);
		bt_Biblioteca.addActionListener(this);
		bt_Boletim_de_Serviço.addActionListener(this);
		bt_Compras.addActionListener(this);
		bt_Liquidacao_de_Despesas.addActionListener(this);
		bt_SRP.addActionListener(this);
		bt_Patrimonio.addActionListener(this);
		bt_Contrato.addActionListener(this);
		bt_Convenios.addActionListener(this);
		bt_Infra_Estrutura.addActionListener(this);
		bt_Patrimonio_Imovel.addActionListener(this);
		bt_Restaurante.addActionListener(this);
		bt_Faturas.addActionListener(this);
		bt_Bolsas.addActionListener(this);
		bt_Transporte.addActionListener(this);
		bt_Sistema_Orcamentario.addActionListener(this);
		bt_Sitema_de_Protocolos.addActionListener(this);
		bt_Sistema_Academico_(SIGAA).addActionListener(this);
		bt_Sistema_Rec_Humanos_(SIGRH).addActionListener(this);

		pack();
		setVisible(true);

		public static void main(String args[]) 
		{

			new Tela_Login();
			
		}






















		







}






	