-
Notifications
You must be signed in to change notification settings - Fork 0
/
Licencia.java
104 lines (92 loc) · 4 KB
/
Licencia.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
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Licencia extends JFrame implements ActionListener, ChangeListener{
private JLabel label1, label2;
private JCheckBox check1;
private JButton boton1, boton2;
private JScrollPane scrollpane1;
private JTextArea textarea1;
String nombre = "";
public Licencia(){
setLayout(null);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setTitle("Licencia de uso");
setIconImage(new ImageIcon(getClass().getResource("images/icon.png")).getImage());
Bienvenida ventanaBienvenida = new Bienvenida();
nombre = ventanaBienvenida.texto;
label1 = new JLabel("TÉRMINOS 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);
textarea1 = new JTextArea();
textarea1.setEditable(false);
textarea1.setFont(new Font("Andale Mono", 0, 9));
textarea1.setText("\n\n TÉRMINOS Y CONDICIONES" +
"\n\n A. PROHIBIDA SU VENTA O DISTRIBUCIÓN SIN AUTORIZACIÓN DEL DESARROLLADOR DIEGO GUTIERREZ." +
"\n B. PROHIBIDA LA ALTERACIÓN DEL CÓDIGO FUENTE O DISEÑO DE LAS INTERFACES GRÁFICAS." +
"\n C. NO SE HACE RESPONSABLE DEL MAL USO DE ESTE SOFTWARE." +
"\n\n LOS ACUERDOS LEGALES EXPUESTOS ACONTINUACIÓN RIGEN EL USO QUE USTED HAGA DE ESTE SOFTWARE" +
"\n (DIEGO GUTIERREZ), 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 INFORMACIÓN SOBRE NUESTROS PRODUCTOS O SERVICIOS, POR FAVOR VISITE" +
"\n https://github.com/DimaGutierrez");
scrollpane1 = new JScrollPane(textarea1);
scrollpane1.setBounds(10,40,575,200);
add(scrollpane1);
check1 = new JCheckBox("Yo " + nombre + " Acepto");
check1.setBounds(10,250,300,30);
check1.addChangeListener(this);
add(check1);
boton1 = new JButton("Continuar");
boton1.setBounds(10,290,100,30);
boton1.addActionListener(this);
boton1.setEnabled(false);
add(boton1);
boton2 = new JButton("No Acepto");
boton2.setBounds(120,290,100,30);
boton2.addActionListener(this);
boton2.setEnabled(true);
add(boton2);
ImageIcon imagen = new ImageIcon("images/mercado.png");
label2 = new JLabel(imagen);
label2.setBounds(315,135,300,300);
add(label2);
}
public void stateChanged(ChangeEvent e){
if(check1.isSelected() == true){
boton1.setEnabled(true);
boton2.setEnabled(false);
} else {
boton1.setEnabled(false);
boton2.setEnabled(true);
}
}
public void actionPerformed(ActionEvent e){
if(e.getSource() == boton1){
Principal ventanaPrincipal = new Principal();
ventanaPrincipal.setBounds(0,0,640,535);
ventanaPrincipal.setVisible(true);
ventanaPrincipal.setResizable(false);
ventanaPrincipal.setLocationRelativeTo(null);
this.setVisible(false);
} else if(e.getSource() == boton2){
Bienvenida ventanabienvenida = new Bienvenida();
ventanabienvenida.setBounds(0,0,350,450);
ventanabienvenida.setVisible(true);
ventanabienvenida.setResizable(false);
ventanabienvenida.setLocationRelativeTo(null);
this.setVisible(false);
}
}
public static void main(String args[]){
Licencia ventanalicencia = new Licencia();
ventanalicencia.setBounds(0,0,600,360);
ventanalicencia.setVisible(true);
ventanalicencia.setResizable(false);
ventanalicencia.setLocationRelativeTo(null);
}
}