-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTerminosYCondiciones.java
116 lines (95 loc) · 3.99 KB
/
TerminosYCondiciones.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class TerminosYCondiciones extends JFrame implements ActionListener, ChangeListener{
private JLabel label1, label2;
private JCheckBox CBox;
private JButton bCont, bNoAcc;
private JScrollPane scrollPane1;
private JTextArea textA;
String nombre = "";
public TerminosYCondiciones(){
setLayout(null);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setTitle("Licencia de uso");
setIconImage(new ImageIcon(getClass().getResource("images/icon.png")).getImage());
Bienvenida apkBienvenida = new Bienvenida();
nombre = apkBienvenida.bienvenidoNombre;
label1 = new JLabel("TERMINOS Y CONDICIONES");
label1.setBounds(215, 5, 200, 30);
label1.setFont(new Font("Andale Mono", 1, 14));
label1.setForeground(new Color(0,0,0));
add(label1);
textA = new JTextArea();
textA.setEditable(false);
textA.setFont(new Font("Andale Mono", 0, 9));
textA.setText("\n\n TERMINOS Y CONDICIONES "+
"\n\n A. PROHIBIDA SU VENTA Y DISTRIBUCION SIN AUTORIZACION DE LA GEEKIPEDIA DE ERNESTO."+
"\n B. PROHIBIDA LA ALTERACION DEL CODIGO FUENTE O DISEÑO DE LAS INTERFACES GROFICAS."+
"\n C. LA GEEKIPEDIA DE ERNESTO NO SE HACE RESPONSABLE DEL MAL USO DE ESTE SOFTWARE"+
"\n\n LOS ACUERDOS LEGALES EXPUESTOS A CONTINUACION RIGEN EL USO QUE USTED HAGA DE ESTE SOFTWARE"+
"\n (LA GEEKIPEDIA DE ERNESTO Y EL AUTOR ERNESTO), NO SE RESPONSABILIZAN DEL USO QUE USTED"+
"\n HAGA CON ESTE SOFTWARE Y SUS SERVICIOS. PARA ACEPTAR ESTOS TERMINOS HAGA CLIC EN (ACEPTO)"+
"\n SI USTED NO ACEPTA ESTOS TERMINOS, HAGA CLIC EN (NO ACEPTO) Y NO UTILICE ESTE SOFTWARE."+
"\n\n PARA MAYOR INFORMACION SOBRE NUESTROS PRODUCTOS O SERVICIOS, POR FAVOR CONTACTE"+
"\n CON EL PROVEEDOR.");
scrollPane1 = new JScrollPane(textA);
scrollPane1.setBounds(10, 40, 575, 200);
add(scrollPane1);
CBox = new JCheckBox("Yo "+nombre+" Acepto");
CBox.setBounds(10, 250, 300, 30);
CBox.addChangeListener(this);
add(CBox);
bCont = new JButton("Continuar");
bCont.setBounds(10, 290, 100, 30);
bCont.addActionListener(this);
bCont.setEnabled(false);
add(bCont);
bNoAcc = new JButton("No Acepto");
bNoAcc.setBounds(120, 290, 100, 30);
bNoAcc.addActionListener(this);
bNoAcc.setEnabled(true);
add(bNoAcc);
ImageIcon imagen = new ImageIcon("images/coca-cola.png");
label2 = new JLabel(imagen);
label2.setBounds(315, 135, 300, 300);
add(label2);
}
@Override
public void stateChanged(ChangeEvent e) {
if(CBox.isSelected() == true){
bCont.setEnabled(true);
bNoAcc.setEnabled(false);
}
else{
bCont.setEnabled(false);
bNoAcc.setEnabled(true);
}
}
@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource() == bNoAcc) {
Bienvenida a = new Bienvenida();
a.setBounds(0, 0, 350, 450);
a.setVisible(true);
a.setResizable(false);
a.setLocationRelativeTo(null);
this.setVisible(false);
}else if(e.getSource() == bCont){
Principal vp = new Principal();
vp.setBounds(0, 0, 640, 535);
vp.setVisible(true);
vp.setResizable(false);
vp.setLocationRelativeTo(null);
this.setVisible(false);
}
}
public static void main(String[] srgs){
TerminosYCondiciones a = new TerminosYCondiciones();
a.setBounds(0, 0, 600, 360);
a.setVisible(true);
a.setResizable(false);
a.setLocationRelativeTo(null);
}
}