Re: [pygtk] Python & GDK || Suggestions

2003-03-30 Thread Thomas Speck
On Sun, 2003-03-30 at 08:40, Metnetsky wrote: > I can't seem to find any good documentation/examples on GDK with > Python. I'm not trying to do much, just open an image, shrink, and save > under a new name. Simply put, I have a few hundred photos that need to > be cut in half by exactly 50%. The

Re: [pygtk] Implementation of interfaces in PyGtk

2003-03-28 Thread Thomas Speck
On Thu, 2003-03-27 at 01:53, Oliver M. Haynold wrote: > Hello: > > I have a problem understanding PyGtk and couldn't find anything in the > documentation (presumably because I searched in all the wrong places). I > don't understand how exactly one can tell PyGtk that a new class > implements some

Re: [pygtk] putting a treeview column in 'edit mode'

2003-03-07 Thread Thomas Speck
On Fri, 2003-03-07 at 14:40, florian wrote: > hi! > > im wondering if its possible to put a treeview column > automatically/or manually via the code in 'edit mode'. > > basically have a shortcut which creates a new row > in the treeview. i would like that the user can then > right away type the t

Re: [pygtk] treeview & listsource

2003-02-11 Thread Thomas Speck
CellRendererText() col = gtk.TreeViewColumn( 'Title', renderer ) col.set_property( 'resizable', 1 ) col.add_attribute( renderer, 'text', 0 ) cat_list.append_column( col ) -- Thomas Speck <[EMAIL PROTECTED]> ___ pygt

[pygtk] (no subject)

2003-02-04 Thread Thomas Speck
Hi, I'd like to use a combo box to edit some entries in a tree view. Seems I have to implement the CellEditable interface by subclassing gtk.Combo and adding the interface gtk.CellEditable. Unfortunately there is nothing like gobject.type_register to do this. Any ideas? Thanks -- Thomas