Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
package view;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class SDStockCardWindow {
private JFrame mainFrame;
private JLabel headerLabel;
private JLabel statusLabel;
private JPanel controlPanel;
public SDStockCardWindow(){
prepareGUI();
}
public static void main(String[] args){
SDStockCardWindow SDStockCardWindow = new SDStockCardWindow();
SDStockCardWindow.showButtonDemo();
}
private void prepareGUI(){
mainFrame = new JFrame("Small Deal");
mainFrame.getContentPane().setBackground(new Color(38, 230, 58));
mainFrame.setSize(400,250);
//need to set this to null and position everything manually
mainFrame.setLayout(new GridLayout(3, 1));
mainFrame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent windowEvent){
System.exit(0);
}
});
headerLabel = new JLabel("", JLabel.CENTER);
headerLabel.setFont(headerLabel.getFont().deriveFont(Font.BOLD, 16f));
statusLabel = new JLabel("",JLabel.CENTER);
statusLabel.setSize(350,100);
controlPanel = new JPanel();
controlPanel.setLayout(new FlowLayout());
controlPanel.setBackground(new Color(38, 230, 58));
mainFrame.add(headerLabel);
mainFrame.add(controlPanel);
mainFrame.add(statusLabel);
mainFrame.setVisible(true);
}
private void showButtonDemo(){
headerLabel.setText("Small Deal Stock Title");
statusLabel.setText("Small Deal Stock Description");
//resources folder should be inside SWING folder.
JTextField BuyStock = new JTextField();
BuyStock.setPreferredSize(new Dimension(25, 25));
JButton NoStocks = new JButton("Don't Buy Stocks");
NoStocks.setHorizontalTextPosition(SwingConstants.LEFT);
BuyStock.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//put message that they BuyStockd xx dollars after 10 seconds, close window
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
statusLabel.setText("You bought xx stocks");
System.exit(0);
}
});
NoStocks.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//put message that they are greedy. after 10 seconds, close window
System.exit(0);
}
});
controlPanel.add(BuyStock);
controlPanel.add(NoStocks);
mainFrame.setVisible(true);
}
}