Re: [pygtk] CellRenderToggle, ListStore and tri-state

2008-04-26 Thread Facundo Batista
2008/4/26, Alessandro Dentella [EMAIL PROTECTED]: i want to improve an editor of database tables I'm working on. When editing tables I use a TreeView with a ListStore and I use a GType gboolean to store the data. I'd like to add capability to handle IS NULL beside True and False ad

Re: [pygtk] Getting widget visibility

2008-04-23 Thread Facundo Batista
2008/4/23, Mitko Haralanov [EMAIL PROTECTED]: The exception that my app threw when I tried to use it: Traceback (most recent call last): File /monitor/track.py, line 131, in start_updates if syslog_frame.visible: AttributeError: 'gtk.Frame' object has no attribute 'visible' If you

Re: [pygtk] Selecting Children Checkboxes When Parent is Selected

2008-04-19 Thread Facundo Batista
2008/4/19, Shadi Azoum [EMAIL PROTECTED]: I have two columns in a treeview, one with strings in a hierarchial fashion and corresponding checkboxes. How can I make all children checkboxes selected if a parent checkbox is selected? I would greatly appreciate any help. You need to catch the

Re: [pygtk] What is Task pane called......

2008-04-14 Thread Facundo Batista
2008/4/14, zabeeh khan [EMAIL PROTECTED]: What is task pane called in Pygtk? Is it available to be added to a window or not? if not, what can we use instead of it? If it's named task pane, you already answered your question. If it has another name, so task pane has no meaning to us, and the

Re: [pygtk] Pygtk Crashes Everywhere

2008-04-02 Thread Facundo Batista
2008/4/2, Matí­as Alejandro Torres [EMAIL PROTECTED]: gobject.threads_init () gtk.gdk.threads_init () For w3af to behave correctly both in windows and linux, I had to do this: if sys.platform == win32: gobject.threads_init() else: gtk.gdk.threads_init() Regards, -- .Facundo

Re: [pygtk] GUI design question / palette and horizontal panes

2008-03-31 Thread Facundo Batista
2008/3/31, Mark Mruss [EMAIL PROTECTED]: button palette question? Basically I would like to set something up like Glade, or The Gimp uses to select the corrent tool. A Small grid of buttons with only icons on them. So far I've been using a toolbar with gtk.RadioToolButtons. This works

Re: [pygtk] GUI design question / palette and horizontal panes

2008-03-28 Thread Facundo Batista
2008/3/28, Mark Mruss [EMAIL PROTECTED]: I would like to like to have three horizontal panes likes you often see in IDE or in glade itself. I can't seem to figure out how to accomplish this? Do I simply add another horizontal pane into one of the positions of a horizontal pane? Yeap.

[pygtk] Showing the options in EntryCompletion

2008-03-27 Thread Facundo Batista
Hi! I'm using gtk.EntryCompletion, which works pretty nicely. But I wanted to add a button near the entry, that when clicked, just shows the options in the lines below the entry (just as if I just entered the present text in the entry). Do you know how can I trigger the EntryCompletion to open