/**
 * @(#)Text1.java
 *
 *
 * @author 
 * @version 1.00 2017/3/28
 */
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;

public class CalculadorSimples3 extends JFrame implements ActionListener
{
	JPanel Painel_leste, Painel_leste2, Painel_leste3;
	JPanel Painel_oeste, Painel_oeste2, Painel_oeste3;
	JButton bt_calcular, bt_limpar, bt_sair;
	
	JPanel
	//JTextArea txt_numero, txt_potencia;
	JTextField tf_Display = new JTextField(40);
	
	 public CalculadorSimples3() 
    {
    	setLayout(new BorderLayout());
    	getContentPane().add("North", Painel_Norte = new JPanel());
    	Painel_Norte.add(tf_Display);
    	tf_Display.setBackground(Color.green);
    	tf_Display.setEditable(false);
    	getContentPane().add("East", Painel_leste = new JPanel(new GridLayout(4,3)));
    	Painel_leste.add(Painel_leste = new JPanel(new FlowLayout(FlowLayout.LEFT)));
    	Painel_leste.add( new JLabel("................."));
    	
    	
    	this.setLocationRelativeTo(null);		
    	setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    	setResizable(false);		
    	setTitle("Calculadora Exponencial");
    	pack();
    	setVisible(true);
    	
    }
    public static void main (String args [])
    {
    	new CalculadorSimples3();
    	
    }	
    
    public void actionPerformed (ActionEvent e)
    {
	

   
    		   	
    		
    }
		
    
}