Re: [pygtk] 'live search' ComboBoxEntry

2008-01-07 Thread Gian Mario Tagliaretti
On Jan 7, 2008 6:24 AM, Maximilian Wilson <[EMAIL PROTECTED]> wrote: > And if you find it, don't forget to post it here, for the sake of posterity. > :) http://svn.gnome.org/viewvc/evince/trunk/shell/eggfindbar.c?view=markup cheers -- Gian Mario Tagliaretti

Re: [pygtk] gtk.Notebook

2008-01-07 Thread Sylvain Saleur
Hello. I just copy a small program I've done which generate a notebook with a close button. Hopefully it will be helpful for you. #!/usr/bin/env python # -*- coding:utf-8 -*- # notebook.py import pygtk pygtk.require('2.0') import gtk class NotebookExample: def add_icon_to_button(self,butt

Re: [pygtk] gtk.Notebook

2008-01-07 Thread Seltzer
if using PyGTK 2.4, maybe try moving your connect down further, and sending the index that append_page returns to your handler. something like... ... page = self.mdi_book.append_page(scroller,hbox) btn.connect('clicked', self.on_close_btn, page) ... def on_close_btn(self, widget,da

Re: [pygtk] Liststore and Decimal

2008-01-07 Thread Guilherme Polo
2008/1/7, Juan Pablo Daniel <[EMAIL PROTECTED]>: > Hello list! Its my first post here. > I am wanting to store a Decimal() object in a list store but dont know > what type of column use. gobject.TYPE_OBJECT > Help? > Thanks! > > Saludos, Juan Pablo. > _

[pygtk] Liststore and Decimal

2008-01-07 Thread Juan Pablo Daniel
Hello list! Its my first post here. I am wanting to store a Decimal() object in a list store but dont know what type of column use. Help? Thanks! Saludos, Juan Pablo. ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk