Extend settings to GTK scanner
[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
80         hbox = gtk.HBox(homogeneous=False, spacing=0)
81         top_frame.add(hbox)
82
83         # Bottom frame creation
84         bottom_frame = gtk.Frame()
85         self.vbox.pack_end(bottom_frame, expand=False)
86
87         self.vbox.pack_end(top_frame)
88
89         bottom_box = gtk.HBox(homogeneous=False, spacing=0)
90         bottom_frame.add( bottom_box )
91
92         # Top frame population
93         notebook = gtk.Notebook()
94         hbox.pack_start( notebook )
95
96         scrollview = gtk.ScrolledWindow()
97         notebook.append_page( scrollview , gtk.Label("Scanning") )
98         self.map = MapWindow()
99         notebook.append_page( self.map , gtk.Label("Map") )
100
101         buttons = gtk.VBox(homogeneous=False, spacing=0)
102         hbox.pack_end(buttons, expand=False)
103
104         textview = self.TextView( "Scan results ..." )
105         scrollview.add( textview )
106         scrollview.set_policy( gtk.POLICY_NEVER , gtk.POLICY_AUTOMATIC )
107
108         # Buttons creation
109         button = self.Button( "Switch GPS On")
110         button._id = button.connect("clicked", global_start, _scanner)
111         buttons.pack_start(button, expand=False)
112
113         button_scan = self.Button( "Start scanning")
114         button_scan._id = button_scan.connect("clicked", start_scan, _scanner)
115         buttons.pack_start(button_scan, expand=False)
116
117         toggle_button = self.CheckButton( "Use Assisted GPS" )
118         toggle_button.connect("toggled", enable_agps)
119         buttons.pack_start(toggle_button, expand=False)
120
121         # Bottom frame population
122         status = gtk.Label( "status bar ..." )
123         _scanner.status = status
124         _scanner.buffer = textview.get_buffer() 
125         _scanner.map = self.map
126         bottom_box.pack_start( status , expand=False , padding=20 )
127
128     def run ( self ) :
129         gtk.main()
130
131 def settings_cb ( widget , config ) :
132     wifimap.config.SettingsWindow( config )
133
134
135 if hildon :
136
137     class MapWindow ( gtk.Frame ) :
138
139         def __init__(self):
140             gtk.Frame.__init__( self )
141
142             self.config = wifimap.config.Configuration()
143             self.config.zoom = 16
144             self.add( wifimap.simpleMapWidget( self.config ) )
145
146     class Wifiscanner ( AbstractWifiscanner , hildon.StackableWindow ) :
147
148         def __init__ ( self ) :
149             hildon.StackableWindow.__init__( self )
150             self.set_title( "Wifihood Scanner" )
151             program = hildon.Program.get_instance()
152             program.add_window(self)
153
154             AbstractWifiscanner.__init__( self )
155             self.add(self.vbox)
156
157             self.create_menu( )
158
159             self.show_all()
160
161         def TextView ( self , placeholder=None ) :
162             textview = hildon.TextView()
163             if  placeholder :
164                 textview.set_placeholder(  placeholder )
165             textview.set_editable( False )
166             textview.set_cursor_visible( False )
167             textview.modify_font( pango.FontDescription("Courier 12") )
168             return textview
169  
170         def Button ( self , label="" ) :
171             button = hildon.Button(gtk.HILDON_SIZE_AUTO_WIDTH | gtk.HILDON_SIZE_FINGER_HEIGHT, hildon.BUTTON_ARRANGEMENT_VERTICAL, label)
172             return button
173
174         def CheckButton ( self , label=None ) :
175             toggle_button = hildon.CheckButton( gtk.HILDON_SIZE_AUTO_WIDTH | gtk.HILDON_SIZE_FINGER_HEIGHT )
176             if label :
177                 toggle_button.set_label( label )
178             return toggle_button
179
180         def create_menu ( self ) :
181
182             menubar = hildon.AppMenu()
183             self.set_app_menu( menubar )
184
185             settings = hildon.Button(gtk.HILDON_SIZE_AUTO,
186                                      hildon.BUTTON_ARRANGEMENT_VERTICAL,
187                                      "Settings",
188                                      None)
189             settings.connect( "clicked", settings_cb , self.map.config )
190             menubar.append( settings )
191
192             menubar.show_all()
193
194 else :
195
196     class MapWindow ( gtk.Frame ) :
197
198         def __init__(self):
199             gtk.Frame.__init__( self )
200
201             self.config = wifimap.config.Configuration()
202             self.config.zoom = 16
203             self.add( wifimap.simpleMapWidget( self.config , (640,400) ) )
204
205     class Wifiscanner ( AbstractWifiscanner , gtk.Window ) :
206
207         def __init__ ( self ) :
208             gtk.Window.__init__( self )
209             self.resize(640,400)
210
211             AbstractWifiscanner.__init__( self )
212             self.add(self.vbox)
213
214             self.create_menu()
215
216             self.show_all()
217
218         def TextView ( self , placeholder=None ) :
219             textview = gtk.TextView()
220             if placeholder :
221                 textview.get_buffer().set_text( placeholder )
222             textview.set_editable( False )
223             textview.set_cursor_visible( False )
224             textview.modify_font( pango.FontDescription("Courier 12") )
225             return textview
226  
227         def Button ( self , label="" ) :
228             button = gtk.Button( label )
229             return button
230
231         def CheckButton ( self , label=None ) :
232             toggle_button = gtk.CheckButton()
233             if label :
234                 toggle_button.set_label( label )
235             return toggle_button
236
237         def create_menu ( self ) :
238
239             menubar = gtk.MenuBar()
240             self.vbox.pack_start( menubar )
241
242             settings = gtk.MenuItem( "Settings" )
243             settings.connect( "activate", settings_cb , self.map.config )
244             menubar.append( settings )
245
246             menubar.show_all()
247
248 window = Wifiscanner()
249 window.run()
250