Classe che genera graficamente la finestra di "Exit". More...
Public Member Functions | |
ExitFrame (java.awt.Frame parent, boolean modal) | |
Costruttore che crea un nuovo ExitFrame. More... | |
int | getReturnStatus () |
Funzione che fornisce lo stato di ritorno della finestra. More... | |
Static Public Attributes | |
static final int | RET_CANCEL = 0 |
Codice di ritorno della stato - ritorna se viene premuto il bottone Cancel. More... | |
static final int | RET_OK = 1 |
Codice di ritorno della stato - ritorna se viene premuto il bottone OK. More... | |
Private Member Functions | |
void | initComponents () |
Metodo chiamato dal costruttore per inizializzare la form WARNING: Do NOT modify this code. More... | |
void | okButtonActionPerformed (java.awt.event.ActionEvent evt) |
Azione da effettuare se avviene la pressione del bottone OK. More... | |
void | cancelButtonActionPerformed (java.awt.event.ActionEvent evt) |
Azione da effettuare se avviene la pressione del bottone CANCEL. More... | |
void | closeDialog (java.awt.event.WindowEvent evt) |
Azione da effettuare se avviene la pressione della X per chiudere la finestra. More... | |
void | doClose (int retStatus) |
Funzione imposta lo stato di ritorno in base a retStatus. More... | |
Private Attributes | |
javax.swing.JButton | cancelButton |
javax.swing.JLabel | jLabel1 |
javax.swing.JButton | okButton |
int | returnStatus = RET_CANCEL |
Classe che genera graficamente la finestra di "Exit".
Definition at line 7 of file ExitFrame.java.
|
inline |
Costruttore che crea un nuovo ExitFrame.
parent | |
modal |
Definition at line 18 of file ExitFrame.java.
References p2pgui.ExitFrame.initComponents().
|
inlineprivate |
Azione da effettuare se avviene la pressione del bottone CANCEL.
evt |
Definition at line 115 of file ExitFrame.java.
References p2pgui.ExitFrame.doClose(), and p2pgui.ExitFrame.RET_CANCEL.
Referenced by p2pgui.ExitFrame.initComponents().
|
inlineprivate |
Azione da effettuare se avviene la pressione della X per chiudere la finestra.
evt |
Definition at line 123 of file ExitFrame.java.
References p2pgui.ExitFrame.doClose(), and p2pgui.ExitFrame.RET_CANCEL.
Referenced by p2pgui.ExitFrame.initComponents().
|
inlineprivate |
Funzione imposta lo stato di ritorno in base a retStatus.
retStatus |
Definition at line 131 of file ExitFrame.java.
References p2pgui.ExitFrame.returnStatus.
Referenced by p2pgui.ExitFrame.cancelButtonActionPerformed(), and p2pgui.ExitFrame.closeDialog().
|
inline |
Funzione che fornisce lo stato di ritorno della finestra.
Definition at line 26 of file ExitFrame.java.
References p2pgui.ExitFrame.returnStatus.
|
inlineprivate |
Metodo chiamato dal costruttore per inizializzare la form WARNING: Do NOT modify this code.
The content of this method is always regenerated by the Form Editor.
Definition at line 36 of file ExitFrame.java.
References p2pgui.ExitFrame.cancelButton, p2pgui.ExitFrame.cancelButtonActionPerformed(), p2pgui.ExitFrame.closeDialog(), p2pgui.ExitFrame.jLabel1, p2pgui.ExitFrame.okButton, and p2pgui.ExitFrame.okButtonActionPerformed().
Referenced by p2pgui.ExitFrame.ExitFrame().
|
inlineprivate |
Azione da effettuare se avviene la pressione del bottone OK.
evt |
Definition at line 106 of file ExitFrame.java.
Referenced by p2pgui.ExitFrame.initComponents().
|
private |
Definition at line 139 of file ExitFrame.java.
Referenced by p2pgui.ExitFrame.initComponents().
|
private |
Definition at line 140 of file ExitFrame.java.
Referenced by p2pgui.ExitFrame.initComponents().
|
private |
Definition at line 141 of file ExitFrame.java.
Referenced by p2pgui.ExitFrame.initComponents().
|
static |
Codice di ritorno della stato - ritorna se viene premuto il bottone Cancel.
Definition at line 9 of file ExitFrame.java.
Referenced by p2pgui.ExitFrame.cancelButtonActionPerformed(), and p2pgui.ExitFrame.closeDialog().
|
static |
Codice di ritorno della stato - ritorna se viene premuto il bottone OK.
Definition at line 11 of file ExitFrame.java.
|
private |
Definition at line 144 of file ExitFrame.java.
Referenced by p2pgui.ExitFrame.doClose(), and p2pgui.ExitFrame.getReturnStatus().