diff options
author | Stefano Karapetsas <[email protected]> | 2012-12-03 23:48:48 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-12-03 23:48:48 +0100 |
commit | 540e2e460c8155a22b10c1712eec71c9bf25aea9 (patch) | |
tree | fedf92ae6b47340fc4155319c5c978124a17df9e /invest-applet/invest/about.py | |
parent | ba7f835eb79762dd65356a0722aa3e64ad03decb (diff) | |
download | mate-applets-540e2e460c8155a22b10c1712eec71c9bf25aea9.tar.bz2 mate-applets-540e2e460c8155a22b10c1712eec71c9bf25aea9.tar.xz |
invest-applet: port to gobject introspection
there is an issue to fix with self.applet.window.get_origin in applet.py
Diffstat (limited to 'invest-applet/invest/about.py')
-rw-r--r-- | invest-applet/invest/about.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/invest-applet/invest/about.py b/invest-applet/invest/about.py index 2b7293f4..9599c687 100644 --- a/invest-applet/invest/about.py +++ b/invest-applet/invest/about.py @@ -3,16 +3,21 @@ from os.path import join from gettext import gettext as _ from mate_invest.defs import VERSION import mate_invest -import gtk, gtk.gdk + +import gi +gi.require_version("Gtk", "2.0") +from gi.repository import Gtk +from gi.repository import Gdk +from gi.repository import GdkPixbuf invest_logo = None try: - invest_logo = gtk.gdk.pixbuf_new_from_file_at_size(join(mate_invest.ART_DATA_DIR, "invest_neutral.svg"), 96, 96) + invest_logo = GdkPixbuf.Pixbuf.new_from_file_at_size(join(mate_invest.ART_DATA_DIR, "invest_neutral.svg"), 96, 96) except Exception, msg: pass def show_about(): - about = gtk.AboutDialog() + about = Gtk.AboutDialog() infos = { "program-name" : _("Invest"), "logo" : invest_logo, @@ -21,7 +26,7 @@ def show_about(): "copyright" : "Copyright © 2004-2005 Raphael Slinckx.\nCopyright © 2009-2010 Enrico Minack." } - about.set_authors(["Raphael Slinckx <[email protected]>", "Enrico Minack <[email protected]>"]) +# about.set_authors("Raphael Slinckx <[email protected]>\nEnrico Minack <[email protected]>") # about.set_artists([]) # about.set_documenters([]) |