<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;">
<p style=" margin-top:6px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0; background-color:#ffffff;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">HOW-TO Programmare in Python - Parte 6<br />Scritto da Greg Walters</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br />Spero che abbiate sperimentato Boa Constructor dal nostro ultimo incontro. Cominceremo con un programma molto semplice che mostrerà un frame, quindi aggiungeremo un pulsante per mostrarne un secondo. L'altra volta creammo un box messaggio. Questa volta creeremo un frame completamente a parte. Questa procedura è utile per i programmi con molti frame o finestre. Quindi... cominciamo...<br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">Avviate Boa Constructor e chiudete tutte le linguette della finestra Editor ad eccezione di Shell ed Esploratore usando la combinazione Ctrl-W. Questo ci assicurerà di partire da zero. Ora create un nuovo progetto cliccando sul pulsante wx.App (rivedete il precedente articolo se necessario).<br /><br />Prima di procedere oltre, salvate Frame1 come &quot;FrameMain.py&quot; e App1 come &quot;Gui2.py&quot;. </span><span style=" font-family:'Verdana'; font-size:10pt; color:#000000; background-color:#ffffff;">Passaggio importante</span><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">. Con la linguetta Gui2 selezionata nella finestra Editor, ritornare alla linguetta Nuovo della finestra Strumenti e aggiungere un altro frame al nostro progetto cliccando su wx.Frame (che si trova a fianco di wx.App). Assicurarsi che la linguetta Applicazioni mostri entrambi i frame sotto la colonna Modulo. Ora ritornate al nuovo frame e salvatelo come &quot;FrameSecond.py&quot;:<br /><br />Ora aprite FrameMain nel designer. Aggiungete un wx.Panel. Aggiustatelo affinché il pannello copri il frame. Quindi cambiamo alcune proprietà - non l'abbiamo fatto l'ultima volta. Nella finestra Ispezionatore, assicurarsi che la linguetta Constr sia selezionata e impostare Title a &quot;Main Frame&quot; e Name a &quot;FrameMain&quot;. Parleremo in seguito di convenzioni per i nomi. Impostate la dimensione a 400x340 cliccando il check box Size. Verranno così mostrati high (altezza) e width (larghezza). Altezza dovrebbe essere 400 e larghezza 340:<br /><br />Ora cliccate sulla linguetta Props. Cliccate sulla proprietà Centered e settatela a wx.BOTH. Cliccate il pulsante Invia e salvate il vostro lavoro. Eseguite l'applicazione cliccando sul pulsante con la freccia gialla. Il nostro programma comparirà al centro dello schermo con il titolo &quot;Main Frame&quot;. Ora chiudetelo cliccando sulla &quot;X&quot; nell'angolo in alto a destra.</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br />Richiamate il designer di FrameMain. Aggiungete due wx.Buttons, uno sopra l'altro e vicini al centro del frame. Selezionate quello superiore, chiamatelo &quot;btnShowNew&quot;, e impostate la label a &quot;Show the other frame&quot; nella linguetta Constr della finestra Ispezionatore. Usate la combinazione Shift+Frecce per ridimensionare il pulsante così da rendere completamente visibile il testo, quindi usate la combinazione Ctrl+Frecce per muoverlo nuovamente al centro del frame. Selezionate il bottone inferiore, come Name usate &quot;btnExit&quot; e come label &quot;Exit&quot;. Cliccate Invia, salvate ed eseguite per controllare i cambiamenti. Terminate il programma e ritornate al designer. È il momento di aggiungere gli eventi ai bottoni. Selezionate quello superiore e nel frame Ispezionatore selezionate la linguetta Evts. Cliccate su ButtonEvent, quindi doppio click su wx.Evt_BUTTON. Notate che dovreste vedere &quot;OnBtnShowNewButton&quot; in basso. Successivamente, selezionate il pulsante btnExit. Fate la stessa cosa, assicurandovi che sia mostrato &quot;OnBtnExitButton&quot;. Ancora click su Invia e salvate. Quindi andate nella finestra Editor e scorrete verso il basso.<br /><br />Assicuratevi che vi siano i due eventi appena creati. Ecco come dovrebbe apparire il frame:<br /><br />Ora dobbiamo occuparci dell'altro frame. Aprite FrameSecond nel designer.<br /><br />Impostate Name a &quot;FrameSecond&quot;, e Title a &quot;Second Frame&quot;. Impostare Centered a wx.BOTH. Aggiungete un wx.Button, allineandolo in basso al centro. Come Name inserire &quot;btnFSExit&quot; e cambiate il Title in &quot;Exit&quot;. Impostate un evento. Quindi aggiungete un wx.StaticText nel mezzo della parte superiore del frame. Per Name mettete &quot;stHiThere&quot;, per label &quot;Hi there...I'm the second form!&quot;, e impostate il carattere a Sans, 14 punti e come weight mettete wxBOLD. Ora reimpostate la posizione in modo che sia centrato. Potete farlo deselezionando l'attributo Position e usare X per spostarlo a destra-sinistra e Y per spostarlo su-giù fino a quando non sarete soddisfatti. Click su Invia e salvate:<br /><br />Ora che abbiamo realizzato i nostri form, creeremo la &quot;colla&quot; che terrà tutto assieme.<br /><br />Nella finestra Editor, cliccate sulla linguetta Gui2, quindi, al di sotto, cliccate sulla linguetta Sorgente. Sotto la riga che dice &quot;import FrameMain&quot;, aggiungere &quot;import FrameSecond&quot;. Salvate. Successivamente, selezionate la linguetta &quot;FrameMain&quot;. Sotto la riga &quot;import wx&quot;, aggiungete &quot;import FrameSecond&quot;. Quindi scorrete in basso fino a trovare la riga con &quot;def __init__(self, parent):&quot;. Aggiungete una riga dopo &quot;self._init_ctrls(parent)&quot; con scritto &quot;self.Fs = FrameSecond.FrameSecond(self )&quot;. Ora sotto l'evento &quot;def OnBtnShowNewButton(self, event):&quot;, commentate &quot;event.Skip()&quot; e aggiungete le seguenti due righe:<br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">self.Fs.Show()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">self.Hide()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br />Per finire, sotto il metodo &quot;OnBtnExitButton&quot;, commentate &quot;event.Skip()&quot;, e aggiungete la riga &quot;self.Close()&quot;.<br /><br />A cosa serve tutto ciò? Ok. La prima cosa che abbiamo fatto e assicurarci che l'applicazione sappia di avere due form. Ecco perché abbiamo importato sia FrameMain che FrameSecond in Gui2. Quindi abbiamo importato un riferimento per FrameSecond in FrameMain così da poterlo chiamare dopo. Lo abbiamo inizializzato nel metodo &quot;_init_&quot;. E nell'evento &quot;OnBtnShowNewButton&quot; abbiamo specificato che quando il pulsante viene cliccato, vogliamo mostrare il secondo frame e nascondere quello principale. Quindi abbiamo l'istruzione per chiudere l'applicazione quando si clicca su Exit.<br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">Ora, passiamo al codice di FrameSecond. Qui le modifiche sono poche. Sotto il metodo &quot;_init_&quot;, aggiungiamo la riga &quot;self.parent =parent&quot; che aggiunge la variabile self.parent. Infine, sotto l'evento di FSExitButton, commentate la riga &quot;event.Skip()&quot;, e aggiungete queste due:<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">self.parent.Show()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">self.Hide()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br />Ricordate che nascondiamo il frame principale quando mostriamo il secondo, per poi mostrarlo nuovamente dopo aver nascosto il secondo. Salvate.<br /><br />Ecco il codice per verificare quanto fatto (questa e la pagina successiva):<br /><br />Ora potete eseguire l'applicazione. Se tutto è esatto, cliccando su &quot;Show the other frame&quot; vedremo il primo frame scomparire e apparire il secondo. Cliccando sul bottone Exit del secondo frame questo scomparirà e ricomparirà quello principale. Cliccate sul pulsante Exit del frame principale per chiudere l'applicazione.<br /><br />Vi avevo promesso che avremmo parlato di convenzioni per i nomi. Ricordate quando parlammo di commenti al codice? Bene, scegliere con cura i nomi per i controlli della gui è già un primo passo. È molto importante scegliere nomi significativi quando create frame complessi con molti controlli, specialmente se ci sono molti box di testo e pulsanti, invece di lasciare staticText1 o button1 o altro. Potrebbe non esserlo se sarete gli unici a controllare il codice, ma un altro programmatore troverebbe giovamento da nomi ben scelti. Quindi, usate qualcosa di simile ai seguenti:<br /><br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">Tipo controllo - Prefisso nome</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">Static text    - st_</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">Button         - btn_</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">Text Box       - txt_</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">Check Box      - chk_</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">Radio Button   - rb_</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">Frame          - Frm_ or Frame_</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br />Potrete usare altri sistemi man mano che diventerete esperti, e in certi casi il vostro capo potrebbe già avere delle convenzioni proprie.<br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">La prossima volta metteremo da parte la programmazione di GUI e ci concentreremo sui database. Nel frattempo, procuratevi python-apsw e python-mysqldb. Avrete anche bisogno di sqlite e sqlitebrowser per SQLite. È una buona idea sperimentare anche con MySql. Sono tutti disponibili via Synaptic.<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">Greg Walter è il proprietario della RainyDay Solutions, LLC, una società di consulenza in Aurora, Colorado e programma dal 1972. Ama cucinare, fare escursioni, ascoltare musica e passare il tempo con la sua famiglia.<br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; font-weight:600; color:#000000;">Codice Gui2:</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">#!/usr/bin/env python</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">#Boa:App:BoaApp</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">import wx</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">import FrameMain</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">import FrameSecond</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">modules ={u'FrameMain': [1, 'Main frame of Application', u'FrameMain.py'], u'FrameSecond': [0, '', u'FrameSecond.py']}</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">class BoaApp(wx.App):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def OnInit(self):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.main = FrameMain.create(None)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.main.Show()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.SetTopWindow(self.main)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        return True</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">def main():</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    application = BoaApp(0)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    application.MainLoop()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">if __name__ == '__main__':</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    main()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; font-weight:600; color:#000000;">Codice FrameMain:</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">#Boa:Frame:FrameMain</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">import wx</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">import FrameSecond</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">def create(parent):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    return FrameMain(parent)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">[wxID_FRAMEMAIN, wxID_FRAMEMAINBTNEXIT, wxID_FRAMEMAINBTNSHOWNEW, wxID_FRAMEMAINPANEL1,] = [wx.NewId() for _init_ctrls in range(4)]</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">class FrameMain(wx.Frame):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def _init_ctrls(self, prnt):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        # generated method, don't edit</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        wx.Frame.__init__(self, id=wxID_FRAMEMAIN, name=u'FrameMain', parent=prnt, pos=wx.Point(846, 177), size=wx.Size(400, 340), style=wx.DEFAULT_FRAME_STYLE, title=u'MainFrame')</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.SetClientSize(wx.Size(400, 340))</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.Center(wx.BOTH)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.panel1 = wx.Panel(id=wxID_FRAMEMAINPANEL1,name='panel1', parent=self, pos=wx.Point(0, 0), size=wx.Size(400, 340), style=wx.TAB_TRAVERSAL)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnShowNew = wx.Button(id=wxID_FRAMEMAINBTNSHOWNEW, label=u'Show the other frame', name=u'btnShowNew', parent=self.panel1, pos=wx.Point(120, 103), size=wx.Size(168, 29), style=0)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnShowNew.SetBackgroundColour(wx.Colour(25, 175, 23))</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnShowNew.Bind(wx.EVT_BUTTON, self.OnBtnShowNewButton, id=wxID_FRAMEMAINBTNSHOWNEW)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; font-weight:600; color:#000000;">Codice FrameMain (cont.):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnExit = wx.Button(id=wxID_FRAMEMAINBTNEXIT, label=u'Exit', name=u'btnExit', parent=self.panel1, pos=wx.Point(162, 191), size=wx.Size(85, 29), style=0)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnExit.SetBackgroundColour(wx.Colour(225, 218, 91))</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnExit.Bind(wx.EVT_BUTTON, self.OnBtnExitButton, id=wxID_FRAMEMAINBTNEXIT)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def __init__(self, parent):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self._init_ctrls(parent)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.Fs = FrameSecond.FrameSecond(self)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def OnBtnShowNewButton(self, event):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        #event.Skip()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.Fs.Show()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.Hide()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def OnBtnExitButton(self, event):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        #event.Skip()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.Close()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; font-weight:600; color:#000000;">Codice FrameSecond:</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">#Boa:Frame:FrameSecond</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">import wx</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">def create(parent):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    return FrameSecond(parent)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">[wxID_FRAMESECOND, wxID_FRAMESECONDBTNFSEXIT, wxID_FRAMESECONDPANEL1, wxID_FRAMESECONDSTATICTEXT1,] = [wx.NewId() for _init_ctrls in range(4)]</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">class FrameSecond(wx.Frame):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def _init_ctrls(self, prnt):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        # generated method, don't edit</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        wx.Frame.__init__(self, id=wxID_FRAMESECOND, name=u'FrameSecond', parent=prnt, pos=wx.Point(849, 457), size=wx.Size(419, 236), style=wx.DEFAULT_FRAME_STYLE, title=u'SecondFrame')</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.SetClientSize(wx.Size(419, 236))</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.Center(wx.BOTH)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.SetBackgroundStyle(wx.BG_STYLE_COLOUR)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.panel1 = wx.Panel(id=wxID_FRAMESECONDPANEL1, name='panel1', parent=self, pos=wx.Point(0, 0), size=wx.Size(419, 236), style=wx.TAB_TRAVERSAL)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnFSExit = wx.Button(id=wxID_FRAMESECONDBTNFSEXIT, label=u'Exit', name=u'btnFSExit', parent=self.panel1, pos=wx.Point(174, 180), size=wx.Size(85, 29), style=0)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.btnFSExit.Bind(wx.EVT_BUTTON, self.OnBtnFSExitButton, id=wxID_FRAMESECONDBTNFSEXIT)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.staticText1 = wx.StaticText(id=wxID_FRAMESECONDSTATICTEXT1, label=u&quot;Hi there...I'm the second form!&quot;, name='staticText1', parent=self.panel1, pos=wx.Point(45, 49), size=wx.Size(336, 23), style=0)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.staticText1.SetFont(wx.Font(14, wx.SWISS, wx.NORMAL, wx.BOLD, False, u'Sans'))</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def __init__(self, parent):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self._init_ctrls(parent)</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.parent = parent</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">    def OnBtnFSExitButton(self, event):</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        #event.Skip()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.parent.Show()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:&quot;'Courier New'&quot;; font-size:10pt; color:#000000;">        self.Hide()</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;"><br /><br />==================================================================<br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">VIGNETTE A PAGINA 12<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">Titolo: Un vero amico<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">- Non preoccuparti, il mondo è pieno di ragazze carine.<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">- Sono sicuro che molte di loro farebbero sesso con te.<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">- Sebbene potrebbe non essere economico.<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">di Richard Redei<br /><br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">Titolo: L'intervista<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">- È facile. Immagina semplicemente di parlare con me.<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">- Così sarai più sciolto. Ora cosa diresti?<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">* Non dimenticare la birra.<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">- Credo che dovremo lavorarci su.<br /></span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:6px; margin-right:6px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><span style=" font-family:'Verdana'; font-size:10pt; color:#000000;">di Richard Redei</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;">-- </p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;">Giuseppe Calà</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;">OpenPGP key: 0x749487B5</p></body></html>