8 public class AboutFrame extends javax.swing.JDialog {
18 public AboutFrame(java.awt.Frame parent,
boolean modal) {
34 @SuppressWarnings(
"unchecked")
38 okButton =
new javax.swing.JButton();
39 jLabel1 =
new javax.swing.JLabel();
40 jLabel2 =
new javax.swing.JLabel();
42 setTitle(
"P2PFileSystem - About");
43 setName(
"AboutFrame");
44 addWindowListener(
new java.awt.event.WindowAdapter() {
45 public void windowClosing(java.awt.event.WindowEvent evt) {
51 okButton.addActionListener(
new java.awt.event.ActionListener() {
52 public void actionPerformed(java.awt.event.ActionEvent evt) {
57 jLabel1.setText(
"<html>P2PFileSystem<br>Versione 1.0 <br><br> Authors: <br>(R)@ https://www.pietris.net <br>(R)@ Pietris.net <br>(R)@ Pietris.net </html>");
58 jLabel1.setBorder(javax.swing.BorderFactory.createEtchedBorder());
60 jLabel2.setIcon(
new javax.swing.ImageIcon(getClass().getResource(
"/icons/Help.png")));
62 javax.swing.GroupLayout layout =
new javax.swing.GroupLayout(getContentPane());
63 getContentPane().setLayout(layout);
64 layout.setHorizontalGroup(
65 layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
66 .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
69 .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 18, Short.MAX_VALUE)
70 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
71 .addComponent(
okButton, javax.swing.GroupLayout.PREFERRED_SIZE, 67, javax.swing.GroupLayout.PREFERRED_SIZE)
72 .addComponent(
jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 138, javax.swing.GroupLayout.PREFERRED_SIZE))
75 layout.setVerticalGroup(
76 layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
77 .addGroup(layout.createSequentialGroup()
79 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
81 .addComponent(
jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 136, javax.swing.GroupLayout.PREFERRED_SIZE))
84 .addContainerGap(24, Short.MAX_VALUE))
void okButtonActionPerformed(java.awt.event.ActionEvent evt)
Azione da effettuare se avviene la pressione del bottone OK.
Classe che genera graficamente la finestra di "About", con informazioni sul software, la version e gli autori.
void closeDialog(java.awt.event.WindowEvent evt)
Azione da effettuare se avviene la pressione della X per chiudere la finestra.
static final int RET_OK
Codice di ritorno della stato - ritorna se viene premuto il bottone OK.
int getReturnStatus()
Funzione che fornisce lo stato di ritorno della finestra.
void initComponents()
Metodo chiamato dal costruttore per inizializzare la form WARNING: Do NOT modify this code...
javax.swing.JLabel jLabel1
AboutFrame(java.awt.Frame parent, boolean modal)
Costruttore della classe che crea un nuovo form AboutFrame.
javax.swing.JLabel jLabel2
static final int RET_CANCEL
Codice di ritorno della stato - ritorna se viene premuto il bottone Cancel.
void doClose(int retStatus)
Funzione imposta lo stato di ritorno in base a retStatus.
javax.swing.JButton okButton