import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;

public class  Inferface_Cliente extends  JFrame implements ActionListener
{
		JMenuBar Barra_De_Menu = new JMenuBar();
		JMenu Menu_Arquivo, Menu_Perfil, Menu_Pedido,  Menu_Produtos;
		JButton bt_Pedidos, bt_Produtos, bt_Perfil;
		JPanel Painel_Central1 = new JPanel(new FlowLayout(FlowLayout.CENTER));
		JPanel Painel_Central2 = new JPanel(new FlowLayout(FlowLayout.CENTER));
		JPanel Painel_Central3 = new JPanel(new FlowLayout(FlowLayout.CENTER));
		public Inferface_Cliente()
		{
				setJMenuBar(Barra_De_Menu);
				Barra_De_Menu.add(Menu_Arquivo	   = new JMenu("ARQUIVO"));
					
				Barra_De_Menu.add(Menu_Perfil      = new JMenu("PERFIL"));
				Barra_De_Menu.add(Menu_Pedido      = new JMenu("PEDIDO"));
				Barra_De_Menu.add(Menu_Produtos    = new JMenu("PRODUTOS"));
				getContentPane().setLayout(new GridLayout(3, 1));
				getContentPane().add(Painel_Central1);
				getContentPane().add(Painel_Central2);
				getContentPane().add(Painel_Central3);
				Painel_Central2.add(bt_Perfil    = new JButton(new ImageIcon("perfil.png")));
				bt_Perfil.setToolTipText("VER PERFIL");
				Painel_Central2.add(bt_Pedidos   = new JButton(new ImageIcon("pedidos02.png")));
				bt_Pedidos.setToolTipText("VER PEDIDOS");
				Painel_Central2.add(bt_Produtos  = new JButton(new ImageIcon("produtos.png")));
				bt_Produtos.setToolTipText("VER PRODUTOS");
				setTitle("SISTEMAX - Interface Cliente");
				
				//
				pack();//setSize(600, 500);
				setVisible(true);
		}
		public void actionPerformed (ActionEvent e)
		{
			
		}
		public static void main (String args [])
		{
				new Inferface_Cliente();
		}
	
}
