-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest.java
76 lines (75 loc) · 2.07 KB
/
Test.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.lang.*;
import java.util.*;
import java.io.*;
public class Test extends JFrame{
public static void main(String args[]){
new Test();
}
private Image img;
private Image img2;
GridBagConstraints gbc = new GridBagConstraints();
private JButton btn1;
private JButton btn2;
public Test(){
super("Welcome!");
img = new ImageIcon("sample.jpg").getImage();
JPanel container = new MyBackground();
JLabel label = new JLabel();
label.setIcon(new ImageIcon("exp.png"));
gbc.gridx=0;
gbc.gridy=0;
gbc.gridwidth=4;
gbc.fill = GridBagConstraints.HORIZONTAL;
container.add(label,gbc);
Font f = new Font("BaskervilleOldFace",Font.BOLD + Font.ITALIC,25);
JLabel label2 = new JLabel();
label2.setFont(f);
label2.setForeground(Color.MAGENTA);
label2.setBounds(80,20,250,80);
label2.setText("- the handwritten calculator");
gbc.gridx=3;
gbc.gridy=3;
container.add(label2,gbc);
gbc.gridx=0;
gbc.gridy=10;
btn1 = new JButton("Child Mode");
btn1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0){
try{
Process p =Runtime.getRuntime().exec("python child.py");
p.waitFor();
}catch(Exception e){System.out.println(e);}
}
});
container.add(btn1,gbc);
gbc.gridx=0;
gbc.gridy=12;
btn2=new JButton("Calculator Mode");
btn2.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0){
try{
Process p =Runtime.getRuntime().exec("python calc_mode.py");
p.waitFor();
}catch(Exception e){System.out.println(e);}
}
});
container.add(btn2,gbc);
add(container);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(800,500);
setVisible(true);
}
public class MyBackground extends JPanel{;
public MyBackground(){
setBackground(new Color(0,true));
setLayout(new GridBagLayout());
}
public void paintComponent(Graphics g){
g.drawImage(img,0,0,getWidth(),getHeight(),this);
super.paintComponent(g);
}
}
}