Re: [pygtk] Creating an object browser

2009-08-28 Thread Marcus Vinicius Eiffle Duarte
to reproduce in my pygtk app. Qt offers this style (I guess it does so with its Tree View widget), which is used in software like Salomé and several commercial packages, as ANSYS Workbench. It is also a standard feature in several Windows apps. Marcus Vinicius Eiffle Duarte eiffledua...@gmail.com Niterói

[pygtk] Creating an object browser

2009-08-27 Thread Marcus Vinicius Eiffle Duarte
, by the way). I am talking about the panel titled Object Browser on the left. Can anyone point me to some resource showing hot to do it with pygtk? Thanks in advance, Marcus Vinicius Eiffle Duarte eiffledua...@gmail.com Niterói, RJ, Brasil ___ pygtk mailing list

Re: [pygtk] PyGTK on Win98 and OSX

2009-01-28 Thread Marcus Vinicius Eiffle Duarte
pygtk from source. I just followed the instructions on http://live.gnome.org/GTK%2B/OSX/BuildInstructions (originally this page on Imendio's site) and, after building GTK itself, just ran jhbuild build pygtk. Everything worked fine and it took me less than 15 minutes. Cheers, -- Marcus Vinicius

[pygtk] Problems with gtk.ProgressBar

2008-05-08 Thread Marcus Vinicius Eiffle Duarte
(...) Thanks in advance, -- Marcus Vinicius Eiffle Duarte [EMAIL PROTECTED] Niterói, RJ, Brasil ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Re: [pygtk] Automatic actions and gtk.FileChooserButton

2008-04-28 Thread Marcus Vinicius Eiffle Duarte
= widget.get_current_folder() # before I was doing the mistake of trying to run novaPasta = self.get_current_folder() print novaPasta PASTA = novaPasta os.chdir( PASTA ) self.popular() Now it works great. Thnaks, Marcus Vinicius Eiffle Duarte

[pygtk] Automatic actions and gtk.FileChooserButton

2008-04-16 Thread Marcus Vinicius Eiffle Duarte
of other widgets and called as self.function_name): def mudarPasta( filechooser, widget ): novaPasta = filechooser.get_current_folder() PASTA = novaPasta os.chdir( PASTA ) self.popular() Can someone help me? Thanks in advance, -- Marcus Vinicius Eiffle Duarte