Advertisement
0rioNN

Untitled

May 18th, 2014
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.53 KB | None | 0 0
  1. package xadrez;
  2.  
  3. import javax.*;
  4. import javax.swing.*;
  5.  
  6. import java.applet.Applet;
  7. import java.awt.*;
  8. import java.awt.event.*;
  9.  
  10.  
  11. public class xadrez extends Applet{
  12.  
  13.     public JFrame frame_base;
  14.     public JPanel p_inicio, p_def, p_nome, p_jogo;
  15.     public JLabel ini_titulo, def_titulo, nome_titulo;
  16.     public JButton ini_vs, ini_def, ini_sair, nome_jogar;
  17.     public JTextField nome_p1, nome_p2;
  18.    
  19.     private void invisivel(){ // Classe Invisivel - Poe todos os paineis invisiveis
  20.          
  21.         p_inicio.setVisible(false);
  22.         p_def.setVisible(false);
  23.         p_nome.setVisible(false);
  24.         p_jogo.setVisible(false);
  25.        
  26.     }
  27.    
  28.     public void init() { //Inicialização dos Paineis
  29.        
  30.        
  31.         frame_base = new JFrame(" Jogo de Xadrez ");
  32.         frame_base.setVisible(true);
  33.         frame_base.setSize(600,600);
  34.         frame_base.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  35.        
  36.         p_inicio = new JPanel();
  37.         p_def = new JPanel();
  38.         p_nome = new JPanel();
  39.         p_jogo = new JPanel();
  40.  
  41.        
  42.         p_inicio.setBackground(Color.BLACK);
  43.  
  44.        
  45.        
  46.         frame_base.add(p_inicio);
  47.         frame_base.add(p_def);
  48.         frame_base.add(p_nome);
  49.         frame_base.add(p_jogo);
  50.        
  51.        
  52.        
  53.        
  54.          //Painel Inicio
  55.        
  56.          ini_titulo = new JLabel("Jogo de Xadrez");
  57.          ini_vs = new JButton (" Player 1 VS Player 2 ");
  58.          ini_def = new JButton (" Definições ");
  59.          ini_sair = new JButton (" Sair ");
  60.          
  61.          p_inicio.add (ini_vs);
  62.          p_inicio.add (ini_def);
  63.          p_inicio.add (ini_sair);
  64.          
  65.          invisivel();
  66.          p_inicio.setVisible(true);
  67.          
  68.          
  69.     }
  70.    
  71.    
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement