Allow file:///path feed URIs.
[zeroinstall/zeroinstall-mseaborn.git] / zeroinstall / gtkui / addbox.py
blob0ebb54c82544e0c36f5b08f7ed681a8cabba9142
1 """A GTK dialog which lets the user add a new application to their desktop."""
2 # Copyright (C) 2008, Thomas Leonard
3 # See the README file for details, or visit http://0install.net.
5 import os, sys
6 import gtk, gobject
7 import gtk.glade
9 from zeroinstall import SafeException
10 from zeroinstall.injector import model
11 from zeroinstall.injector.namespaces import XMLNS_IFACE
12 from zeroinstall.injector.iface_cache import iface_cache
14 _URI_LIST = 0
15 _UTF_16 = 1
17 _RESPONSE_PREV = 0
18 _RESPONSE_NEXT = 1
20 class AddBox:
21 """A dialog box which prompts the user to choose the program to be added."""
22 def __init__(self, interface_uri = None):
23 gladefile = os.path.join(os.path.dirname(__file__), 'desktop.glade')
25 widgets = gtk.glade.XML(gladefile, 'main')
26 self.window = widgets.get_widget('main')
27 self.set_keep_above(True)
29 def set_uri_ok(uri):
30 text = uri.get_text()
31 self.window.set_response_sensitive(_RESPONSE_NEXT, bool(text))
33 uri = widgets.get_widget('interface_uri')
34 about = widgets.get_widget('about')
35 icon_widget = widgets.get_widget('icon')
36 category = widgets.get_widget('category')
37 dialog_next = widgets.get_widget('dialog_next')
38 dialog_ok = widgets.get_widget('dialog_ok')
40 if interface_uri:
41 uri.set_text(interface_uri)
43 uri.connect('changed', set_uri_ok)
44 set_uri_ok(uri)
46 category.set_active(11)
48 def uri_dropped(eb, drag_context, x, y, selection_data, info, timestamp):
49 if info == _UTF_16:
50 import codecs
51 data = codecs.getdecoder('utf16')(selection_data.data)[0]
52 data = data.split('\n', 1)[0].strip()
53 else:
54 data = selection_data.data.split('\n', 1)[0].strip()
55 uri.set_text(data)
56 drag_context.finish(True, False, timestamp)
57 self.window.response(_RESPONSE_NEXT)
58 return True
59 self.window.drag_dest_set(gtk.DEST_DEFAULT_MOTION | gtk.DEST_DEFAULT_DROP | gtk.DEST_DEFAULT_HIGHLIGHT,
60 [('text/uri-list', 0, _URI_LIST),
61 ('text/x-moz-url', 0, _UTF_16)],
62 gtk.gdk.ACTION_COPY)
63 self.window.connect('drag-data-received', uri_dropped)
65 nb = widgets.get_widget('notebook1')
67 def update_details_page():
68 iface = iface_cache.get_interface(model.canonical_iface_uri(uri.get_text()))
69 about.set_text('%s - %s' % (iface.get_name(), iface.summary))
70 icon_path = iface_cache.get_icon_path(iface)
71 from zeroinstall.gtkui import icon
72 icon_pixbuf = icon.load_icon(icon_path)
73 if icon_pixbuf:
74 icon_widget.set_from_pixbuf(icon_pixbuf)
76 feed_category = None
77 for meta in iface.get_metadata(XMLNS_IFACE, 'category'):
78 feed_category = meta.content
79 break
80 if feed_category:
81 i = 0
82 for row in category.get_model():
83 if row[0].lower() == feed_category.lower():
84 category.set_active(i)
85 break
86 i += 1
87 self.window.set_response_sensitive(_RESPONSE_PREV, True)
89 def finish():
90 import xdgutils
91 iface = iface_cache.get_interface(model.canonical_iface_uri(uri.get_text()))
93 try:
94 icon_path = iface_cache.get_icon_path(iface)
95 xdgutils.add_to_menu(iface, icon_path, category.get_active_text())
96 except SafeException, ex:
97 box = gtk.MessageDialog(self.window, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, str(ex))
98 box.run()
99 box.destroy()
100 else:
101 self.window.destroy()
103 def response(box, resp):
104 if resp == _RESPONSE_NEXT:
105 iface = uri.get_text()
106 self.window.set_sensitive(False)
107 self.set_keep_above(False)
108 import popen2
109 child = popen2.Popen4(['0launch',
110 '--gui', '--download-only',
111 '--', iface])
112 child.tochild.close()
113 errors = ['']
114 def output_ready(src, cond):
115 got = os.read(src.fileno(), 100)
116 if got:
117 errors[0] += got
118 else:
119 status = child.wait()
120 self.window.set_sensitive(True)
121 self.set_keep_above(True)
122 if status == 0:
123 update_details_page()
124 nb.next_page()
125 dialog_next.set_property('visible', False)
126 dialog_ok.set_property('visible', True)
127 dialog_ok.grab_focus()
128 else:
129 box = gtk.MessageDialog(self.window, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK,
130 'Failed to run 0launch.\n' + errors[0])
131 box.run()
132 box.destroy()
133 return False
134 return True
135 gobject.io_add_watch(child.fromchild,
136 gobject.IO_IN | gobject.IO_HUP,
137 output_ready)
138 elif resp == gtk.RESPONSE_OK:
139 finish()
140 elif resp == _RESPONSE_PREV:
141 dialog_next.set_property('visible', True)
142 dialog_ok.set_property('visible', False)
143 dialog_next.grab_focus()
144 nb.prev_page()
145 self.window.set_response_sensitive(_RESPONSE_PREV, False)
146 else:
147 box.destroy()
148 self.window.connect('response', response)
150 if len(sys.argv) > 1:
151 self.window.response(_RESPONSE_NEXT)
153 def set_keep_above(self, above):
154 if hasattr(self.window, 'set_keep_above'):
155 # This isn't very nice, but GNOME defaults to
156 # click-to-raise and in that mode drag-and-drop
157 # is useless without this...
158 self.window.set_keep_above(above)