-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCelsjusz.java
79 lines (64 loc) · 2.14 KB
/
Celsjusz.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
77
78
79
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
public class Celsjusz extends JFrame implements ActionListener{
private JLabel lCelsjusz, lFahrenheit;
private JTextField tCelsjusz, tFahrenheit;
private JButton bKonwertuj;
private JCheckBox checkbox;
private double tempCelsjusz, tempFahrenheit;
public Celsjusz(){
setSize(500, 400);
setTitle("Przeliczanie stopni Celsjusza na Fahrenheita");
setLayout(null);
lCelsjusz = new JLabel("Stopnie Celsjusza: ");
lCelsjusz.setBounds(30, 30, 150, 150);
add(lCelsjusz);
tCelsjusz = new JTextField("");
tCelsjusz.setBounds(150, 100, 150, 20);
add(tCelsjusz);
tCelsjusz.addActionListener(this);
lFahrenheit = new JLabel("Stopnie Fahrenheit: ");
lFahrenheit.setBounds(30, 60, 300, 300);
add(lFahrenheit);
tFahrenheit = new JTextField("");
tFahrenheit.setBounds(150, 200, 150, 20);
add(tFahrenheit);
bKonwertuj = new JButton("Oblicz");
bKonwertuj.setBounds(190, 250, 70, 30);
add(bKonwertuj);
bKonwertuj.addActionListener(this);
checkbox = new JCheckBox("Wielkie lietry");
checkbox.setBounds(280, 250, 100, 100);
add(checkbox);
checkbox.addActionListener(this);
}
public static void main(String[] args){
Celsjusz c = new Celsjusz();
c.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
c.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e)
{
Object o = e.getSource();
if(o==bKonwertuj||o==tCelsjusz){
tempCelsjusz = Double.parseDouble(tCelsjusz.getText()); //stopnie celcjusza ze stringa konwertujemy na liczbe double zmiennoprzecinkowa
tempFahrenheit = 32.0 + (9.0/5.0)*tempCelsjusz;
tFahrenheit.setText(String.valueOf(tempFahrenheit));
}
else if(o==checkbox){
if(checkbox.isSelected()==true){
tFahrenheit.setFont(new Font("SansSerif", Font.BOLD, 18));
}
else{
tFahrenheit.setFont(new Font("SansSerif", Font.PLAIN, 12));
}
}
}
}