Hello list,<br><br>I am novice GTK/glade developer. I have a dummy application written in pyGTK, and want to hildonize it.<br>The tutorial in the maemo site, descibes the way to do this for the  gPodder application. However, this application has been written using a &quot;non-standard&quot; blend of pyGTK and glade: it uses the simpleGladeApp class, which changes the normal flow of standard pygtk-glade program.
<br><br><br>My main class:<br><br>class foo:<br><div style="margin-left: 40px;">        &quot;&quot;&quot;This is an Hello World GTK application&quot;&quot;&quot;<br>        def __init__(self):<br>                #Set the Glade file<br>                self.gladefile
 = &quot;smsit.glade&quot;&nbsp; <br>self.wTree = gtk.glade.XML(self.gladefile) <br><br>                #Create our dictionay and connect it<br>                dic = { &quot;on_send_clicked&quot; : self.send_clicked,<br>                        &quot;on_MainWindow_destroy&quot; : 
gtk.main_quit,<br>                         }<br>                self.wTree.signal_autoconnect(dic)<br><br>                self.text = self.wTree.get_widget(&quot;text&quot;)<br>                self.text = self.text.get_buffer()<br>                if (self.text):<br><div style="margin-left: 40px;">
                        self.text.connect(&quot;changed&quot;, self.on_text_changed)<br></div><br><br>        def send_clicked(self, widget):<br><div style="margin-left: 40px;">                num = self.wTree.get_widget(&quot;phone_number&quot;).get_text()<br>                print &quot;sending to &quot;+num
<br></div><br>        def on_text_changed(self, widget):<br><div style="margin-left: 40px;">                #text = self.wTree.get_widget(&quot;text&quot;)<br>pass<br></div></div>                                                                        <br>I guess that all the GTK-specific window initialization takes place with the call of 
gtk.glade.XML(gladefile). How can I tell my application to use the hildon-specific hildon.program() and hildon.window() to create a hildonized version of the app?<br><br>Thank you,<br>Thanos.<br>