diff options
author | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
commit | 312ba610a1e98fc656fb58178227d7d45a64494e (patch) | |
tree | 54a3c2b6084c80e63fb0526c6e7b8e01627acbd7 /invest-applet/invest/invest-applet.py | |
download | mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.bz2 mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.xz |
initial
Diffstat (limited to 'invest-applet/invest/invest-applet.py')
-rwxr-xr-x | invest-applet/invest/invest-applet.py | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/invest-applet/invest/invest-applet.py b/invest-applet/invest/invest-applet.py new file mode 100755 index 00000000..884bcba8 --- /dev/null +++ b/invest-applet/invest/invest-applet.py @@ -0,0 +1,98 @@ +#!/usr/bin/env python +# + +import gobject +import gtk, mateapplet + +import getopt, sys +from os.path import * + +# Allow to use uninstalled +def _check(path): + return exists(path) and isdir(path) and isfile(path+"/Makefile.am") + +name = join(dirname(__file__), '..') +if _check(name): + print 'Running uninstalled invest, modifying PYTHONPATH' + sys.path.insert(0, abspath(name)) +else: + sys.path.insert(0, abspath("@PYTHONDIR@")) + +# Now the path is set, import our applet +import invest, invest.applet, invest.defs, invest.help + +# Prepare i18n +import gettext, locale +gettext.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.MATELOCALEDIR) +gettext.textdomain(invest.defs.GETTEXT_PACKAGE) +locale.bindtextdomain(invest.defs.GETTEXT_PACKAGE, invest.defs.MATELOCALEDIR) +locale.textdomain(invest.defs.GETTEXT_PACKAGE) + +from gettext import gettext as _ + +def applet_factory(applet, iid): + invest.debug('Starting invest instance: %s %s'% ( applet, iid )) + invest.applet.InvestApplet(applet) + return True + +# Return a standalone window that holds the applet +def build_window(): + app = gtk.Window(gtk.WINDOW_TOPLEVEL) + app.set_title(_("Invest Applet")) + app.connect("destroy", gtk.main_quit) + app.set_property('resizable', False) + + applet = mateapplet.Applet() + applet_factory(applet, None) + applet.reparent(app) + + app.show_all() + + return app + + +def usage(): + print """=== Invest applet: Usage +$ invest-applet [OPTIONS] + +OPTIONS: + -h, --help Print this help notice. + -d, --debug Enable debug output (default=off). + -w, --window Launch the applet in a standalone window for test purposes (default=no). + """ + sys.exit() + +if __name__ == "__main__": + standalone = False + + try: + opts, args = getopt.getopt(sys.argv[1:], "hdw", ["help", "debug", "window"]) + except getopt.GetoptError: + # Unknown args were passed, we fallback to bahave as if + # no options were passed + opts = [] + args = sys.argv[1:] + + for o, a in opts: + if o in ("-h", "--help"): + usage() + elif o in ("-d", "--debug"): + invest.DEBUGGING = True + invest.debug("Debugging enabled") + # these messages cannot be turned by invest.DEBUGGING at their originating location, + # because that variable was set here to be True + invest.debug("Data Dir: %s" % invest.SHARED_DATA_DIR) + invest.debug("Detected PROXY: %s" % invest.PROXY) + elif o in ("-w", "--window"): + standalone = True + + if standalone: + build_window() + gtk.main() + else: + mateapplet.matecomponent_factory( + "OAFIID:Invest_Applet_Factory", + mateapplet.Applet.__gtype__, + invest.defs.PACKAGE, + invest.defs.VERSION, + applet_factory) |