Re: [pygtk] Freezing a treeview

2003-02-04 Thread James Henstridge
Jesse Pavel wrote:


Hello,

I'm using a TreeView to display a list backed by a ListStore, and
make many changes to the store at one time: how do I freeze and
thaw the view to speed up these actions? I've seen the
freeze_notify/thaw_notify methods in GObject, and the
freeze_child_notify/thaw_child_notify methods in GtkWidget, but am
unsure what to use.
 

There is no freeze/thaw routines for the new gtk tree widget. 
GtkTreeView pushes updates to an idle function which means that 
multiple updates will result in a single update to the view.

James.

--
Email: [EMAIL PROTECTED]
WWW:   http://www.daa.com.au/~james/



___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


[pygtk] Freezing a treeview

2003-02-03 Thread Jesse Pavel

Hello,

I'm using a TreeView to display a list backed by a ListStore, and
make many changes to the store at one time: how do I freeze and
thaw the view to speed up these actions? I've seen the
freeze_notify/thaw_notify methods in GObject, and the
freeze_child_notify/thaw_child_notify methods in GtkWidget, but am
unsure what to use.

Thanks,
Jesse

___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/