Initial implementation of settings window under hildon
[wifihood] / wifiscanner / wifiscanner
1 #!/usr/bin/python
2
3 import wifimap
4
5 import gtk , pango
6 try :
7     import hildon
8 except :
9     hildon = False
10
11 def global_start(button, scanner):
12     scanner.start()
13     if button._id :
14         button.disconnect( button._id )
15     button._id = button.connect("clicked", global_stop, scanner)
16     button.set_label("Switch GPS Off")
17
18 def global_stop(button, scanner):
19     scanner.stop()
20     if button._id :
21         button.disconnect( button._id )
22     button._id = button.connect("clicked", global_start, scanner)
23     button.set_label("Switch GPS On")
24
25 def enable_agps(button):
26     if button.get_active() :
27         print "%s state is active" % button
28
29 def start_scan(button, scanner):
30     # BUG : If gps is not started in advance, database is not opened and an exception happens
31     scanner.scan()
32     if button._id :
33         button.disconnect( button._id )
34     button._id = button.connect("clicked", stop_scan, scanner)
35     button.set_label("Stop scanning")
36
37 def stop_scan(button, scanner):
38     # FIXME : This method do not clear the scheduled scan
39     scanner.scan_timeout = 0
40     if button._id :
41         button.disconnect( button._id )
42     button._id = button.connect("clicked", start_scan, scanner)
43     button.set_label("Start scanning")
44
45
46 class scanner ( wifimap.Scanner ) :
47
48     def scan ( self ) :
49         wifimap.Scanner.scan( self )
50         self.report()
51
52     def report ( self ) :
53         self.status.set_label( wifimap.Scanner.report(self) )
54         start, end = self.buffer.get_bounds()
55         self.buffer.delete( start , end )
56         for mac,rss in self.scanlist.iteritems() :
57             self.buffer.insert_at_cursor( "%s %5d\n" % ( mac , rss ) )
58         if self.info[0] == "FIX" :
59             self.map.hide()
60             self.map.recenter( self.info[4:6] )
61             pixmap,mask = self.map.get_pixbuf().render_pixmap_and_mask()
62             self.map.plot( pixmap , ( float(self.info[4]) , float(self.info[5]) ) , "red" , 2 )
63             self.map.get_pixbuf().get_from_drawable( pixmap , pixmap.get_colormap() , 0, 0 , 0 , 0 , self.map.win_x, self.map.win_y )
64             self.map.show()
65
66
67 class AbstractWifiscanner :
68
69     def __init__ ( self ) :
70
71         _scanner = scanner( "wlan0" )
72
73         self.connect("delete_event", gtk.main_quit, None)
74
75         self.vbox = gtk.VBox(homogeneous=False, spacing=0)
76
77         # Top frame creation
78         top_frame = gtk.Frame()
79         self.vbox.pack_start(top_frame)
80
81         hbox = gtk.HBox(homogeneous=False, spacing=0)
82         top_frame.add(hbox)
83
84         # Bottom frame creation
85         bottom_frame = gtk.Frame()
86         self.vbox.pack_end(bottom_frame, expand=False)
87
88         bottom_box = gtk.HBox(homogeneous=False, spacing=0)
89         bottom_frame.add( bottom_box )
90
91         # Top frame population
92         notebook = gtk.Notebook()
93         hbox.pack_start( notebook )
94
95         scrollview = gtk.ScrolledWindow()
96         notebook.append_page( scrollview , gtk.Label("Scanning") )
97         self.map = MapWindow()
98         notebook.append_page( self.map , gtk.Label("Map") )
99
100         buttons = gtk.VBox(homogeneous=False, spacing=0)
101         hbox.pack_end(buttons, expand=False)
102
103         textview = self.TextView( "Scan results ..." )
104         scrollview.add( textview )
105         scrollview.set_policy( gtk.POLICY_NEVER , gtk.POLICY_AUTOMATIC )
106
107         # Buttons creation
108         button = self.Button( "Switch GPS On")
109         button._id = button.connect("clicked", global_start, _scanner)
110         buttons.pack_start(button, expand=False)
111
112         button_scan = self.Button( "Start scanning")
113         button_scan._id = button_scan.connect("clicked", start_scan, _scanner)
114         buttons.pack_start(button_scan, expand=False)
115
116         toggle_button = self.CheckButton( "Use Assisted GPS" )
117         toggle_button.connect("toggled", enable_agps)
118         buttons.pack_start(toggle_button, expand=False)
119
120         # Bottom frame population
121         status = gtk.Label( "status bar ..." )
122         _scanner.status = status
123         _scanner.buffer = textview.get_buffer() 
124         _scanner.map = self.map
125         bottom_box.pack_start( status , expand=False , padding=20 )
126
127     def run ( self ) :
128         gtk.main()
129
130 if hildon :
131
132     class MapWindow ( gtk.Frame ) :
133
134         def __init__(self):
135             gtk.Frame.__init__( self )
136
137             self.config = wifimap.config.Configuration()
138             self.config.zoom = 16
139             self.add( wifimap.simpleMapWidget( self.config ) )
140
141     class Wifiscanner ( AbstractWifiscanner , hildon.StackableWindow ) :
142
143         def __init__ ( self ) :
144             hildon.StackableWindow.__init__( self )
145             self.set_title( "Wifihood Scanner" )
146             program = hildon.Program.get_instance()
147             program.add_window(self)
148
149             AbstractWifiscanner.__init__( self )
150             self.add(self.vbox)
151
152             self.create_menu( )
153
154             self.show_all()
155
156         def TextView ( self , placeholder=None ) :
157             textview = hildon.TextView()
158             if  placeholder :
159                 textview.set_placeholder(  placeholder )
160             textview.set_editable( False )
161             textview.set_cursor_visible( False )
162             textview.modify_font( pango.FontDescription("Courier 12") )
163             return textview
164  
165         def Button ( self , label="" ) :
166             button = hildon.Button(gtk.HILDON_SIZE_AUTO_WIDTH | gtk.HILDON_SIZE_FINGER_HEIGHT, hildon.BUTTON_ARRANGEMENT_VERTICAL, label)
167             return button
168
169         def CheckButton ( self , label=None ) :
170             toggle_button = hildon.CheckButton( gtk.HILDON_SIZE_AUTO_WIDTH | gtk.HILDON_SIZE_FINGER_HEIGHT )
171             if label :
172                 toggle_button.set_label( label )
173             return toggle_button
174
175         def create_menu ( self ) :
176
177             menubar = hildon.AppMenu()
178             self.set_app_menu( menubar )
179
180             settings = hildon.Button(gtk.HILDON_SIZE_AUTO,
181                                      hildon.BUTTON_ARRANGEMENT_VERTICAL,
182                                      "Settings",
183                                      None)
184             settings.connect( "clicked", settings_cb , self.map.config )
185             menubar.append( settings )
186
187             menubar.show_all()
188
189     def settings_cb ( widget , config ) :
190         wifimap.config.SettingsWindow( config )
191
192
193 else :
194
195     class MapWindow ( gtk.Frame ) :
196
197         def __init__(self):
198             gtk.Frame.__init__( self )
199
200             self.config = wifimap.config.Configuration()
201             self.config.zoom = 16
202             self.add( wifimap.simpleMapWidget( self.config , (640,400) ) )
203
204     class Wifiscanner ( AbstractWifiscanner , gtk.Window ) :
205
206         def __init__ ( self ) :
207             gtk.Window.__init__( self )
208             self.resize(640,400)
209
210             AbstractWifiscanner.__init__( self )
211             self.add(self.vbox)
212
213             self.show_all()
214
215         def TextView ( self , placeholder=None ) :
216             textview = gtk.TextView()
217             if placeholder :
218                 textview.get_buffer().set_text( placeholder )
219             textview.set_editable( False )
220             textview.set_cursor_visible( False )
221             textview.modify_font( pango.FontDescription("Courier 12") )
222             return textview
223  
224         def Button ( self , label="" ) :
225             button = gtk.Button( label )
226             return button
227
228         def CheckButton ( self , label=None ) :
229             toggle_button = gtk.CheckButton()
230             if label :
231                 toggle_button.set_label( label )
232             return toggle_button
233
234 window = Wifiscanner()
235 window.run()
236