Package net.yura.lobby.client.eyecandy

Examples of net.yura.lobby.client.eyecandy.TranslucentJScrollPane


    inchat.add(chatSend, BorderLayout.EAST);

                header = new JLabel();
               
                add(header,BorderLayout.NORTH );
    add(new TranslucentJScrollPane(chat,0.0f));
    add(inchat, BorderLayout.SOUTH);

                setChatRoomName(name,id);
  }
View Full Code Here


    lobbyPlayers.addMouseListener(this);

    lobbyPlayers.setCellRenderer(new PlayerListCellRenderer());

    add( new JLabel(" Players:"),BorderLayout.NORTH );
    add(new TranslucentJScrollPane(lobbyPlayers,0.0f));




  }
View Full Code Here

    //gamesModel.addRow( getTableRow( new Game("myname",null,1,2,"ID STRING", Game.STATE_CAN_LEAVE) ) );


    JPanel gametypewindow = new TranslucentJPanel(new BorderLayout(),0.5f);
    gametypewindow.add( new JLabel(" Game Types:"),BorderLayout.NORTH );
    gametypewindow.add( new TranslucentJScrollPane(gameTypes,0.0f));


    JButton newgamebutton = new JButton("New Game");
    newgamebutton.setActionCommand("newgame");
    newgamebutton.addActionListener(this);

    JPanel gameactionspanel = new TranslucentJPanel(0.0f);
    gameactionspanel.add(newgamebutton);

    JPanel gameswindow = new TranslucentJPanel(new BorderLayout(),0.5f);
    gameswindow.add( new JLabel(" Games:"),BorderLayout.NORTH );
    gameswindow.add(new TranslucentJScrollPane(games,0.2f));
    gameswindow.add( gameactionspanel,BorderLayout.SOUTH );



    JButton loginbutton = new JButton("Login");
View Full Code Here

TOP

Related Classes of net.yura.lobby.client.eyecandy.TranslucentJScrollPane

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.