Re: [pygtk] Glade 3 / Builder / Combobox

2011-01-26 Thread Giuseppe Penone
I would not use glade for liststores/treestores/comboboxes, it's much simpler to write the code yourself as you can read from: http://www.pygtk.org/pygtk2tutorial/sec-ComboBoxAndComboboxEntry.html then if you want you can add the treeview to a scrolledwindow of the glade interface but from pygtk

Re: [pygtk] Glade 3 / Builder / Combobox

2011-01-26 Thread Timo
On 26-01-11 03:56, Adam Tauno Williams wrote: Please forgive this question if the answer is obvious but I've searched and not had any luck. Also, having done this frequently in C#/.NET I could just be fuzzing over the obvious answer. I am building a PyGTK app using Glade-3 / Gtk.Builder. And

Re: [pygtk] ANNOUNCE: PyGTK All-in-one Installer 2.22.6

2011-01-26 Thread F Wolff
Op Wo, 2011-01-19 om 20:23 +0100 skryf Dieter Verfaillie: We are pleased to announce release 2.22.6 of the PyGTK All-in-one installer for Windows. More information can be found in the README file at: https://github.com/dieterv/pygtk-installer#readme Thank you for these, Dieter! Any chance

Re: [pygtk] ANNOUNCE: PyGTK All-in-one Installer 2.22.6

2011-01-26 Thread Dieter Verfaillie
Quoting F Wolff frie...@translate.org.za: Op Wo, 2011-01-19 om 20:23 +0100 skryf Dieter Verfaillie: We are pleased to announce release 2.22.6 of the PyGTK All-in-one installer for Windows. More information can be found in the README file at: https://github.com/dieterv/pygtk-installer#readme

[pygtk] Can I have selectable Statusbar?

2011-01-26 Thread Alessandro Dentella
hi, is it any possible to turn a Statusbar into a selectable one (as for labels)? I guess it's not possible as I don't see any such property, but I wander if there's any other way. TIA sandro *:-) -- Sandro Dentella *:-) http://www.reteisi.org Soluzioni libere per le scuole

[pygtk] custom gtk theme and buttons icons with py2exe

2011-01-26 Thread laguillaumie sylvain
hi first thanks for py2exe it s great ;) i have some problems to use my own gtk theme and icons on windows i made a etc/gtk-2.0/gtkrc file with the classic MS-Windows theme and the hicolor icon, when i change the gtk theme (copied in share/themes) nothing happen, it still use the MS-Windows

Re: [pygtk] custom gtk theme and buttons icons with py2exe

2011-01-26 Thread s.la...@free.fr
ok, i fixed the stocks icons problem by adding it to my app: ## Get Icons shown on buttons settings = gtk.settings_get_default() gtk.Settings.set_long_property(settings, gtk-button-images, 1, main) i search for the gtk theme now... thx Le 26/01/2011 17:04, laguillaumie sylvain a écrit : hi

Re: [pygtk] Interactive plots with pygtk

2011-01-26 Thread Soumyaroop Roy
Let me rephrase what I said earlier. I want something like a plot/waveform viewer. Matplotlib does not appear to have zoom/cursor functionalities. -Soumyaroop On Tue, Jan 25, 2011 at 3:01 PM, Alessandro Dentella san...@e-den.it wrote: On Tue, Jan 25, 2011 at 02:46:35PM -0800, Soumyaroop Roy

Re: [pygtk] Interactive plots with pygtk

2011-01-26 Thread Stephen George
Hi Soumyaroop, Under pyGTK yes it does have panning and zooming. You need to add a Navigation toolbar to get zoom/pan functions, something like a NavigationToolbar2GTKAgg. Which navigation bar you add, depends on the back end you are running. Then you will have the ability to pan, zoom, and

Re: [pygtk] Interactive plots with pygtk

2011-01-26 Thread Soumyaroop Roy
Thanks for the pointers, Steve. I'll look into it. regards, Soumyaroop On Wed, Jan 26, 2011 at 3:52 PM, Stephen George steve_...@optusnet.com.au wrote: Hi Soumyaroop, Under pyGTK yes it does have panning and zooming. You need to add a Navigation toolbar to get zoom/pan functions,  something