2006-12-28 Don Allingham <don@gramps-project.org>

* src/docgen/PdfDoc.py: convert image name to str from unicode
	due to a ReportLab bug.

2006-12-27  Don Allingham  <don@gramps-project.org>
	* configure.in: change version number to 2.2.5



svn: r7855
This commit is contained in:
Don Allingham
2006-12-29 03:58:26 +00:00
parent 1df86244d5
commit dc5c8f3d00
4 changed files with 20 additions and 8 deletions

View File

@@ -1769,6 +1769,10 @@ class MaskedEntry(gtk.Entry):
def set_pixbuf(self, pixbuf):
self._icon.set_pixbuf(pixbuf)
def set_stock(self, stock_name):
pixbuf = self.render_icon(stock_name, gtk.ICON_SIZE_MENU)
self._icon.set_pixbuf(pixbuf)
def update_background(self, color):
self._icon.update_background(color)
@@ -1794,8 +1798,9 @@ def main(args):
widget = MaskedEntry()
widget.set_mask('000.000.000.000')
pixbuf = gtk.gdk.pixbuf_new_from_file("images/stock_lock.png")
widget.set_pixbuf(pixbuf)
# pixbuf = gtk.gdk.pixbuf_new_from_file("images/stock_lock.png")
# widget.set_pixbuf(pixbuf)
widget.set_stock(gtk.STOCK_NO)
widget.set_tooltip("Tooltip example")
win.add(widget)