import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.*;

public class trabalho extends JFrame implements ActionListener  {

         JPanel Painel1 = new JPanel(new FlowLayout(FlowLayout.CENTER));
         JPanel Painel2 = new JPanel(new FlowLayout(FlowLayout.CENTER));
         JButton bt_Novo, bt_Abrir, bt_Salvar, bt_Sair, bt_Copiar, bt_Colar, bt_area;

         public trabalho(){
         getContentPane().setLayout(new GridLayout(5, 3));
         getContentPane().add(Painel1);
         Painel1.add(bt_Novo  = new JButton(new ImageIcon("novo.png")));
         Painel1.add(bt_Abrir = new JButton(new ImageIcon("abrir.png")));
         Painel1.add(bt_Salvar = new JButton(new ImageIcon("salvar.png")));
         Painel1.add(bt_Copiar = new JButton(new ImageIcon("copiar.png")));
         Painel1.add(bt_Colar = new JButton(new ImageIcon("colar.png")));
         getContentPane().add(Painel2 = new JPanel(new FlowLayout(FlowLayout.CENTER)));
		 getContentPane().add(Painel2 = new JPanel(new GridLayout(1, 2)));
		 Painel2.setBackground(Color.gray);
		JPanel Painel2A = new JPanel(new FlowLayout(FlowLayout.RIGHT));
		Painel2.add(Painel2A);
		Painel2A.add(bt_area = new JButton(new ImageIcon("sair.png")));
		JPanel Painel2B = new JPanel(new FlowLayout(FlowLayout.LEFT));
		Painel2.add(Painel2B);
        Painel2A.add(bt_area = new JButton(new ImageIcon("limpar.png")));

        pack();
        setSize(500,400);
		setVisible(true);
		}
		public static void main (String args [])
		{
	    	new trabalho();
	    }
		public void actionPerformed (ActionEvent e){
}
}