Split row changing code to _update_row method
[wifi-radar.git] / wifiradar / gui / g2 / __init__.py
blob8ab3386b3e967c4cf6e7c4664fa0d880b961b1b5
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
4 # gui/g2/__init__.py - collection of classes for main UI with PyGTK
6 # Part of WiFi Radar: A utility for managing WiFi profiles on GNU/Linux.
8 # Copyright (C) 2004-2005 Ahmad Baitalmal <ahmad@baitalmal.com>
9 # Copyright (C) 2005 Nicolas Brouard <nicolas.brouard@mandrake.org>
10 # Copyright (C) 2005-2009 Brian Elliott Finley <brian@thefinleys.com>
11 # Copyright (C) 2006 David Decotigny <com.d2@free.fr>
12 # Copyright (C) 2006 Simon Gerber <gesimu@gmail.com>
13 # Copyright (C) 2006-2007 Joey Hurst <jhurst@lucubrate.org>
14 # Copyright (C) 2012 Anari Jalakas <anari.jalakas@gmail.com>
15 # Copyright (C) 2006, 2009 Ante Karamatic <ivoks@ubuntu.com>
16 # Copyright (C) 2009-2010,2014 Sean Robinson <seankrobinson@gmail.com>
17 # Copyright (C) 2010 Prokhor Shuchalov <p@shuchalov.ru>
19 # This program is free software; you can redistribute it and/or modify
20 # it under the terms of the GNU General Public License as published by
21 # the Free Software Foundation; version 2 of the License.
23 # This program is distributed in the hope that it will be useful,
24 # but WITHOUT ANY WARRANTY; without even the implied warranty of
25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 # GNU General Public License in LICENSE.GPL for more details.
28 # You should have received a copy of the GNU General Public License
29 # along with this program; if not, write to the Free Software
30 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 import errno
35 import logging
36 import sys
38 import glib
39 import gtk
41 from wifiradar.config import make_section_name
42 import wifiradar.connections as connections
43 import wifiradar.misc as misc
44 from wifiradar.pubsub import Message
45 from . import prefs
46 from . import profile as profile_ed
47 from . import transients
49 # create a logger
50 logger = logging.getLogger(__name__)
53 # Create a bunch of icons from files in the package.
54 known_profile_icon = gtk.gdk.pixbuf_new_from_file("pixmaps/known_profile.png")
55 unknown_profile_icon = gtk.gdk.pixbuf_new_from_file("pixmaps/unknown_profile.png")
56 signal_none_pb = gtk.gdk.pixbuf_new_from_file("pixmaps/signal_none.xpm")
57 signal_low_pb = gtk.gdk.pixbuf_new_from_file("pixmaps/signal_low.xpm")
58 signal_barely_pb = gtk.gdk.pixbuf_new_from_file("pixmaps/signal_barely.xpm")
59 signal_ok_pb = gtk.gdk.pixbuf_new_from_file("pixmaps/signal_ok.xpm")
60 signal_best_pb = gtk.gdk.pixbuf_new_from_file("pixmaps/signal_best.xpm")
62 def pixbuf_from_known(known):
63 """ Return a :class:`gtk.gdk.Pixbuf` icon to represent :data:`known`.
64 Any true :data:`known` value returns the icon showing previous
65 familiarity.
66 """
67 if known:
68 return known_profile_icon
69 return unknown_profile_icon
71 def pixbuf_from_signal(signal):
72 """ Return a :class:`gtk.gdk.Pixbuf` icon to indicate the :data:`signal`
73 level. :data:`signal` is as reported by iwlist (may be arbitrary
74 scale in 0-100 or -X dBm)
75 """
76 signal = int(signal)
77 # Shift signal up by 80 to convert dBm scale to arbitrary scale.
78 if signal < 0:
79 signal = signal + 80
80 # Find an icon...
81 if signal < 3:
82 return signal_none_pb
83 elif signal < 12:
84 return signal_low_pb
85 elif signal < 20:
86 return signal_barely_pb
87 elif signal < 35:
88 return signal_ok_pb
89 elif signal >= 35:
90 return signal_best_pb
93 class RadarWindow:
94 def __init__(self, msg_pipe):
95 """ Create a new RadarWindow wanting to communicate through
96 :data:`msg_pipe`, a :class:`multiprocessing.Connection`.
97 """
98 self.msg_pipe = msg_pipe
100 gtk.gdk.threads_init()
102 self.icon = gtk.gdk.pixbuf_new_from_file("pixmaps/wifi-radar.png")
104 self.window = gtk.Dialog('WiFi Radar', None, gtk.DIALOG_MODAL)
105 self.window.set_icon(self.icon)
106 self.window.set_border_width(10)
107 self.window.set_size_request(550, 300)
108 self.window.set_title("WiFi Radar")
109 self.window.connect('delete_event', self.delete_event)
110 # let's create all our widgets
111 self.current_network = gtk.Label()
112 self.current_network.set_property('justify', gtk.JUSTIFY_CENTER)
113 self.current_network.show()
114 self.close_button = gtk.Button("Close", gtk.STOCK_CLOSE)
115 self.close_button.show()
116 self.close_button.connect('clicked', self.delete_event, None)
117 self.about_button = gtk.Button("About", gtk.STOCK_ABOUT)
118 self.about_button.show()
119 self.about_button.connect('clicked', self.show_about_info, None)
120 self.preferences_button = gtk.Button("Preferences", gtk.STOCK_PREFERENCES)
121 self.preferences_button.show()
122 self.preferences_button.connect('clicked', self.request_preferences_edit)
123 # essid bssid known_icon known available wep_icon signal_level mode protocol channel
124 self.pstore = gtk.ListStore(str, str, gtk.gdk.Pixbuf, bool, bool, str, gtk.gdk.Pixbuf, str, str, str)
125 self.plist = gtk.TreeView(self.pstore)
126 # The icons column, known and encryption
127 self.pix_cell = gtk.CellRendererPixbuf()
128 self.wep_cell = gtk.CellRendererPixbuf()
129 self.icons_cell = gtk.CellRendererText()
130 self.icons_col = gtk.TreeViewColumn()
131 self.icons_col.pack_start(self.pix_cell, False)
132 self.icons_col.pack_start(self.wep_cell, False)
133 self.icons_col.add_attribute(self.pix_cell, 'pixbuf', 2)
134 self.icons_col.add_attribute(self.wep_cell, 'stock-id', 5)
135 self.plist.append_column(self.icons_col)
136 # The AP column
137 self.ap_cell = gtk.CellRendererText()
138 self.ap_col = gtk.TreeViewColumn("Access Point")
139 self.ap_col.pack_start(self.ap_cell, True)
140 self.ap_col.set_cell_data_func(self.ap_cell, self._set_ap_col_value)
141 self.plist.append_column(self.ap_col)
142 # The signal column
143 self.sig_cell = gtk.CellRendererPixbuf()
144 self.signal_col = gtk.TreeViewColumn("Signal")
145 self.signal_col.pack_start(self.sig_cell, True)
146 self.signal_col.add_attribute(self.sig_cell, 'pixbuf', 6)
147 self.plist.append_column(self.signal_col)
148 # The mode column
149 self.mode_cell = gtk.CellRendererText()
150 self.mode_col = gtk.TreeViewColumn("Mode")
151 self.mode_col.pack_start(self.mode_cell, True)
152 self.mode_col.add_attribute(self.mode_cell, 'text', 7)
153 self.plist.append_column(self.mode_col)
154 # The protocol column
155 self.prot_cell = gtk.CellRendererText()
156 self.protocol_col = gtk.TreeViewColumn("802.11")
157 self.protocol_col.pack_start(self.prot_cell, True)
158 self.protocol_col.add_attribute(self.prot_cell, 'text', 8)
159 self.plist.append_column(self.protocol_col)
160 # The channel column
161 self.channel_cell = gtk.CellRendererText()
162 self.channel_col = gtk.TreeViewColumn("Channel")
163 self.channel_col.pack_start(self.channel_cell, True)
164 self.channel_col.add_attribute(self.channel_cell, 'text', 9)
165 self.plist.append_column(self.channel_col)
166 # DnD Ordering
167 self.plist.set_reorderable(True)
168 # detect d-n-d of AP in round-about way, since rows-reordered does not work as advertised
169 self.pstore.connect('row-deleted', self.update_auto_profile_order)
170 # enable/disable buttons based on the selected network
171 self.selected_network = self.plist.get_selection()
172 self.selected_network.connect('changed', self.on_network_selection, None)
173 # the list scroll bar
174 sb = gtk.VScrollbar(self.plist.get_vadjustment())
175 sb.show()
176 self.plist.show()
177 # Add New button
178 self.new_button = gtk.Button("_New")
179 self.new_button.connect('clicked', self.create_new_profile)
180 self.new_button.show()
181 # Add Configure button
182 self.edit_button = gtk.Button("C_onfigure")
183 self.edit_button.connect('clicked', self.request_profile_edit)
184 self.edit_button.show()
185 self.edit_button.set_sensitive(False)
186 # Add Delete button
187 self.delete_button = gtk.Button("_Delete")
188 self.delete_button.connect('clicked', self.request_profile_delete)
189 self.delete_button.show()
190 self.delete_button.set_sensitive(False)
191 # Add Connect button
192 self.connect_button = gtk.Button("Co_nnect")
193 self.connect_button.connect('clicked', self.connect_profile, None)
194 # Add Disconnect button
195 self.disconnect_button = gtk.Button("D_isconnect")
196 self.disconnect_button.connect('clicked', self.disconnect_profile, None)
197 # lets add our widgets
198 rows = gtk.VBox(False, 3)
199 net_list = gtk.HBox(False, 0)
200 listcols = gtk.HBox(False, 0)
201 prows = gtk.VBox(False, 0)
202 # lets start packing
203 # the network list
204 net_list.pack_start(self.plist, True, True, 0)
205 net_list.pack_start(sb, False, False, 0)
206 # the rows level
207 rows.pack_start(net_list , True, True, 0)
208 rows.pack_start(self.current_network, False, True, 0)
209 # the list columns
210 listcols.pack_start(rows, True, True, 0)
211 listcols.pack_start(prows, False, False, 5)
212 # the list buttons
213 prows.pack_start(self.new_button, False, False, 2)
214 prows.pack_start(self.edit_button, False, False, 2)
215 prows.pack_start(self.delete_button, False, False, 2)
216 prows.pack_end(self.connect_button, False, False, 2)
217 prows.pack_end(self.disconnect_button, False, False, 2)
219 self.window.action_area.pack_start(self.about_button)
220 self.window.action_area.pack_start(self.preferences_button)
221 self.window.action_area.pack_start(self.close_button)
223 rows.show()
224 prows.show()
225 listcols.show()
226 self.window.vbox.add(listcols)
227 self.window.vbox.set_spacing(3)
228 self.window.show_all()
230 # Now, immediately hide these two. The proper one will be
231 # displayed later, based on interface state. -BEF-
232 self.disconnect_button.hide()
233 self.connect_button.hide()
234 self.connect_button.set_sensitive(False)
236 # set up status window for later use
237 self.status_window = transients.StatusWindow(self)
238 self.status_window.cancel_button.connect('clicked', self.disconnect_profile, "cancel")
240 self._running = True
241 # Check for incoming messages every 25 ms, a.k.a. 40 Hz.
242 glib.timeout_add(25, self.run)
244 with gtk.gdk.lock:
245 gtk.main()
247 def run(self):
248 """ Watch for incoming messages.
250 if self.msg_pipe.poll():
251 try:
252 msg = self.msg_pipe.recv()
253 except (EOFError, IOError) as e:
254 # This is bad, really bad.
255 logger.critical('read on closed ' +
256 'Pipe ({}), failing...'.format(rfd))
257 raise misc.PipeError(e)
258 else:
259 self._check_message(msg)
260 return self._running
262 def _check_message(self, msg):
263 """ Process incoming messages.
265 if msg.topic == 'EXIT':
266 self.delete_event()
267 elif msg.topic == 'CONFIG-UPDATE':
268 # Replace configuration manager with the one in msg.details.
269 self.config = msg.details
270 elif msg.topic == 'PROFILE-EDIT':
271 with gtk.gdk.lock:
272 self.edit_profile(msg.details)
273 elif msg.topic == 'PROFILE-UPDATE':
274 with gtk.gdk.lock:
275 self.update_profile(msg.details)
276 elif msg.topic == 'PROFILE-UNLIST':
277 with gtk.gdk.lock:
278 self.delete_profile(msg.details)
279 elif msg.topic == 'PROFILE-MOVE':
280 new_position, profile = msg.details
281 with gtk.gdk.lock:
282 if profile['roaming']:
283 old_position = self.get_row_by_ap(profile['essid'])
284 else:
285 old_position = self.get_row_by_ap(profile['essid'],
286 profile['bssid'])
287 self.pstore.move_before(old_position, self.pstore[new_position].iter)
288 elif msg.topic == 'PREFS-EDIT':
289 with gtk.gdk.lock:
290 self.edit_preferences(msg.details)
291 elif msg.topic == 'ERROR':
292 with gtk.gdk.lock:
293 error_dlg = transients.ErrorDialog(self.window, msg.details)
294 del error_dlg
295 else:
296 logger.warning('unrecognized Message: "{}"'.format(msg))
298 def destroy(self, widget=None):
299 """ Quit the Gtk event loop. :data:`widget` is the widget
300 sending the signal, but it is ignored.
302 if self.status_window:
303 self.status_window.destroy()
304 gtk.main_quit()
306 def delete_event(self, widget=None, data=None):
307 """ Shutdown the application. :data:`widget` is the widget sending
308 the signal and :data:`data` is a list of arbitrary arguments,
309 both are ignored. Always returns False to not propigate the
310 signal which called :func:`delete_event`.
312 self._running = False
313 self.msg_pipe.send(Message('EXIT', ''))
314 self.msg_pipe.close()
315 self.window.hide()
316 # process GTK events so that window hides more quickly
317 if sys.modules.has_key("gtk"):
318 while gtk.events_pending():
319 gtk.main_iteration(False)
320 self.destroy()
321 return False
323 def update_network_info(self, profile=None, ip=None):
324 """ Update the current ip and essid shown to the user.
326 if (profile is None) and (ip is None):
327 self.current_network.set_text("Not Connected.")
328 else:
329 self.current_network.set_text('Connected to {}\nIP Address {}'.format(profile, ip))
331 def update_connect_buttons(self, connected=False):
332 """ Set the state of connect/disconnect buttons to reflect the
333 current connected state.
335 if connected:
336 self.connect_button.hide()
337 self.disconnect_button.show()
338 else:
339 self.disconnect_button.hide()
340 self.connect_button.show()
342 def _set_ap_col_value(self, column, cell, model, iter):
343 """ Set the text attribute of :data:`column` to the first two
344 :data:`model` values joined by a newline. This is for
345 displaying the :data:`essid` and :data:`bssid` in a single
346 cell column.
348 essid = model.get_value(iter, 0)
349 bssid = model.get_value(iter, 1)
350 cell.set_property('text', '\n'.join([essid, bssid]))
352 def get_row_by_ap(self, essid, bssid=' Multiple APs'):
353 """ Returns a :class:`gtk.TreeIter` for the row which holds
354 :data:`essid` and :data:`bssid`.
356 :data:`bssid` is optional. If not given, :func:`get_row_by_ap`
357 will try to match a roaming profile with the given :data:`essid`.
359 If no match is found, it returns None.
361 for row in self.pstore:
362 if (row[0] == essid) and (row[1] == bssid):
363 return row.iter
364 return None
366 def on_network_selection(self, widget=None, data=None):
367 """ Enable/disable buttons based on the selected network.
368 :data:`widget` is the widget sending the signal and :data:`data`
369 is a list of arbitrary arguments, both are ignored.
371 store, selected_iter = self.selected_network.get_selected()
372 if selected_iter is None:
373 # No row is selected, disable all buttons except New.
374 # This occurs after a drag-and-drop.
375 self.edit_button.set_sensitive(False)
376 self.delete_button.set_sensitive(False)
377 self.connect_button.set_sensitive(False)
378 else:
379 # One row is selected, so enable or disable buttons.
380 self.connect_button.set_sensitive(True)
381 if store.get_value(selected_iter, 3):
382 # Known profile.
383 self.edit_button.set_sensitive(True)
384 self.delete_button.set_sensitive(True)
385 else:
386 # Unknown profile.
387 self.edit_button.set_sensitive(True)
388 self.delete_button.set_sensitive(False)
390 def show_about_info(self, widget=None, data=None):
391 """ Handle the life-cycle of the About dialog. :data:`widget` is
392 the widget sending the signal and :data:`data` is a list of
393 arbitrary arguments, both are ignored.
395 about = transients.AboutDialog()
396 about.run()
397 about.destroy()
399 def request_preferences_edit(self, widget=None, data=None):
400 """ Respond to a request to edit the application preferences.
401 :data:`widget` is the widget sending the signal and :data:`data`
402 is a list of arbitrary arguments, both are ignored.
404 self.msg_pipe.send(Message('PREFS-EDIT-REQUEST', ''))
406 def edit_preferences(self, config):
407 """ Allow the user to edit :data:`config`.
409 # get raw strings from config file
410 config.raw = True
411 prefs_editor = prefs.PreferencesEditor(self, config)
412 response = prefs_editor.run()
413 if response == gtk.RESPONSE_ACCEPT:
414 prefs_editor.save()
415 prefs_editor.destroy()
416 # get cooked strings from config file
417 config.raw = False
418 self.msg_pipe.send(Message('PREFS-UPDATE', config))
420 def update_profile(self, profile):
421 """ Updates the display of :data:`profile`.
423 if profile['roaming']:
424 prow_iter = self.get_row_by_ap(profile['essid'])
425 else:
426 prow_iter = self.get_row_by_ap(profile['essid'], profile['bssid'])
428 if prow_iter is None:
429 # the AP is not in the list of APs on the screen
430 self._add_profile(profile)
431 else:
432 # the AP is in the list of APs on the screen
433 self._update_row(profile, prow_iter)
435 def _add_profile(self, profile):
436 """ Add :data:`profile` to the list of APs shown to the user.
438 if profile['roaming']:
439 profile['bssid'] = ' Multiple APs'
441 wep = None
442 if profile['encrypted']:
443 wep = gtk.STOCK_DIALOG_AUTHENTICATION
445 self.pstore.append([profile['essid'], profile['bssid'],
446 known_profile_icon, profile['known'], profile['available'],
447 wep, signal_none_pb, profile['mode'], profile['protocol'],
448 profile['channel']])
450 def _update_row(self, profile, row_iter):
451 """ Change the values displayed in :data:`row_iter` (a
452 :class:`gtk.TreeIter`) using :data:`profile`.
454 wep = None
455 if profile['encrypted']:
456 wep = gtk.STOCK_DIALOG_AUTHENTICATION
457 # Update the Gtk objects.
458 self.pstore.set_value(row_iter, 2, pixbuf_from_known(profile['known']))
459 self.pstore.set_value(row_iter, 3, profile['known'])
460 self.pstore.set_value(row_iter, 4, profile['available'])
461 self.pstore.set_value(row_iter, 5, wep)
462 self.pstore.set_value(row_iter, 6, pixbuf_from_signal(profile['signal']))
463 self.pstore.set_value(row_iter, 7, profile['mode'])
464 self.pstore.set_value(row_iter, 8, profile['protocol'])
465 self.pstore.set_value(row_iter, 9, profile['channel'])
467 def create_new_profile(self, widget=None, profile=None, data=None):
468 """ Respond to a user request to create a new AP profile.
469 :data:`widget` is the widget sending the signal. :data:profile`
470 is an AP profile to use as the basis for the new profile. It
471 is likely empty or mostly empty. :data:`data` is a list of
472 arbitrary arguments. :data:`widget` and "data"`data` are both
473 ignored.
475 The order of parameters is important. Because when this method
476 is called from a signal handler, :data:`widget` is always the
477 first argument.
479 if profile is None:
480 profile = misc.get_new_profile()
482 profile_editor = profile_ed.ProfileEditor(self, profile)
483 try:
484 edited_profile = profile_editor.run()
485 except ValueError:
486 self.msg_pipe.send(Message('ERROR', 'Cannot save empty ESSID'))
487 else:
488 if profile:
489 self.msg_pipe.send(Message('PROFILE-EDITED', (edited_profile, profile)))
490 finally:
491 profile_editor.destroy()
493 def request_profile_edit(self, widget=None, data=None):
494 """ Respond to a request to edit an AP profile. :data:`widget`
495 is the widget sending the signal and :data:`data` is a list
496 of arbitrary arguments, both are ignored.
498 store, selected_iter = self.plist.get_selection().get_selected()
499 if selected_iter is not None:
500 essid = self.pstore.get_value(selected_iter, 0)
501 bssid = self.pstore.get_value(selected_iter, 1)
502 if bssid == ' Multiple APs':
503 # AP list says this is a roaming profile
504 bssid = ''
505 self.msg_pipe.send(Message('PROFILE-EDIT-REQUEST', (essid, bssid)))
507 def edit_profile(self, profile):
508 """ Allow the user to edit :data:`profile`.
510 profile_editor = profile_ed.ProfileEditor(self, profile)
511 edited_profile = profile_editor.run()
512 profile_editor.destroy()
514 if edited_profile is not None:
515 # Replace old profile.
516 self.msg_pipe.send(Message('PROFILE-EDITED',
517 (edited_profile, profile)))
519 def request_profile_delete(self, widget=None, data=None):
520 """ Respond to a request to delete an AP profile (i.e. make the
521 profile unknown). Trying to delete an AP which is not configured
522 is a NOOP. Check with the user before deleting the profile.
523 :data:`widget` is the widget sending the signal and :data:`data`
524 is a list of arbitrary arguments, both are ignored.
526 store, selected_iter = self.plist.get_selection().get_selected()
527 if selected_iter is not None:
528 if store.get_value(selected_iter, 3):
529 # The selected AP is configured (a.k.a. 'known').
530 essid = self.pstore.get_value(selected_iter, 0)
531 bssid = self.pstore.get_value(selected_iter, 1)
532 if bssid == ' Multiple APs':
533 # AP list says this is a roaming profile
534 bssid = ''
535 profile_name = essid
536 else:
537 profile_name = '{} ({})'.format(essid, bssid)
539 dialog = gtk.MessageDialog(self.window,
540 gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL,
541 gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO,
542 'Are you sure you want to delete the ' +
543 '{} profile?'.format(profile_name))
545 result = dialog.run()
546 dialog.destroy()
547 del dialog
549 if result == gtk.RESPONSE_YES:
550 apname = make_section_name(essid, bssid)
551 self.msg_pipe.send(Message('PROFILE-REMOVE', apname))
553 def delete_profile(self, profile):
554 """ Remove :data:`profile` from the list of APs shown to the user.
556 if profile['roaming']:
557 prow_iter = self.get_row_by_ap(profile['essid'])
558 else:
559 prow_iter = self.get_row_by_ap(profile['essid'], profile['bssid'])
560 if prow_iter is not None:
561 self.pstore.remove(prow_iter)
563 def connect_profile(self, widget, profile, data=None):
564 """ Respond to a request to connect to an AP.
566 Parameters:
568 'widget' -- gtk.Widget - The widget sending the event.
570 'profile' -- dictionary - The AP profile to which to connect.
572 'data' -- tuple - list of arbitrary arguments (not used)
574 Returns:
576 nothing
578 store, selected_iter = self.plist.get_selection().get_selected()
579 if selected_iter is None:
580 return
581 essid = self.pstore.get_value(selected_iter, 0)
582 bssid = self.pstore.get_value(selected_iter, 1)
583 known = store.get_value(selected_iter, 3)
584 if not known:
585 dlg = gtk.MessageDialog(self.window, gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL, gtk.MESSAGE_QUESTION, gtk.BUTTONS_YES_NO, "This network does not have a profile configured.\n\nWould you like to create one now?")
586 res = dlg.run()
587 dlg.destroy()
588 del dlg
589 if res == gtk.RESPONSE_NO:
590 return
591 profile = misc.get_new_profile()
592 profile['essid'] = essid
593 profile['bssid'] = bssid
594 if not self.create_new_profile(widget, profile, data):
595 return
596 else:
597 # Check for roaming profile.
598 ap_name = make_section_name(essid, '')
599 profile = self.config.get_profile(ap_name)
600 if not profile:
601 # Check for normal profile.
602 ap_name = make_section_name(essid, bssid)
603 profile = self.config.get_profile(ap_name)
604 if not profile:
605 # No configured profile
606 return
607 profile['bssid'] = self.access_points[ap_name]['bssid']
608 profile['channel'] = self.access_points[ap_name]['channel']
609 self.msg_pipe.send(Message('CONNECT', profile))
611 def disconnect_profile(self, widget=None, data=None):
612 """ Respond to a request to disconnect by sending a message to
613 ConnectionManager. :data:`widget` is the widget sending the
614 signal and :data:`data` is a list of arbitrary arguments, both
615 are ignored.
617 self.msg_pipe.send(Message('DISCONNECT', ''))
618 if data == "cancel":
619 self.status_window.update_message("Canceling connection...")
620 if sys.modules.has_key("gtk"):
621 while gtk.events_pending():
622 gtk.main_iteration(False)
624 def profile_order_updater(self, model, path, iter, auto_profile_order):
627 if model.get_value(iter, 3) is True:
628 essid = self.pstore.get_value(iter, 0)
629 bssid = self.pstore.get_value(iter, 1)
630 if bssid == ' Multiple APs':
631 bssid = ''
632 apname = make_section_name(essid, bssid)
633 auto_profile_order.append(apname)
635 def update_auto_profile_order(self, widget=None, data=None, data2=None):
636 """ Update the config file auto profile order from the on-screen
637 order. :data:`widget` is the widget sending the signal and
638 :data:`data` and :data:`data2` is a list of arbitrary arguments,
639 all are ignored.
641 # recreate the auto_profile_order
642 auto_profile_order = []
643 self.pstore.foreach(self.profile_order_updater, auto_profile_order)
644 self.msg_pipe.send(Message('PROFILE-ORDER-UPDATE', auto_profile_order))
647 # Make so we can be imported
648 if __name__ == "__main__":
649 pass