]> git.zerfleddert.de Git - snom-frontend/blob - snom.pl
220c9d9e49dea4022f13c6828d74942beac491f0
[snom-frontend] / snom.pl
1 #!/bin/sh
2 #$Id: snom.pl,v 1.28 2006-05-22 11:22:30 michael Exp $
3
4 # http://developer.gnome.org/doc/API/2.2/gtk/gtk-migrating-GtkComboBox.html
5
6 PATH=/opt/csw/bin:/opt/local/bin:/usr/bin:/bin exec perl -w -x "$0" "$@"
7
8 #!perl
9
10 use strict;
11 use warnings FATAL => 'all';
12
13 use Glib qw/TRUE FALSE/;
14 use Gtk2 '-init';
15 use Gtk2::Gdk::Keysyms;
16 use LWP::UserAgent;
17
18 my %g_key = ();
19 my $g_host = Gtk2::ComboBox->new_text();
20 my $ua = LWP::UserAgent->new;
21
22 open(INIFILE,"<$ENV{HOME}/.snomrc") || die("can't open config: $ENV{HOME}/.snomrc: $!");
23 my %Config = ();
24 my @sections = ();
25 while(<INIFILE>) {
26 chomp;
27
28 next if (m/^#/);
29
30 if (m/^\s*\[(.*)\]\s*$/) {
31 push @sections, $1;
32 next;
33 }
34
35 if (@sections) {
36 if (m/^\s*(.+)\s*=\s*(.*)\s*$/) {
37 ${$Config{$sections[$#sections]}}{$1} = $2;
38 }
39 }
40 }
41 close(INIFILE);
42
43 for my $section (@sections) {
44 if (defined(${$Config{$section}}{host})) {
45 $g_host->append_text($section);
46 if (defined(${$Config{$section}}{login}) &&
47 defined(${$Config{$section}}{password})) {
48 $ua->credentials(${$Config{$section}}{host}.":80",
49 "snom",
50 ${$Config{$section}}{login},
51 ${$Config{$section}}{password});
52 }
53 }
54 }
55 $g_host->set_active(0);
56 UpdatePhoneInfo();
57 $g_host->signal_connect(changed => \&UpdatePhoneInfo);
58 $g_host->show();
59
60 set_locale Gtk2;
61
62 sub snom_key {
63 my $key = shift;
64 $key='%23' if ($key eq '#');
65 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?key=${key}");
66 $ua->request($req);
67 }
68
69 sub snom_number {
70 my $number = shift;
71 my $req = HTTP::Request->new(GET => "http://".${$Config{$sections[$g_host->get_active]}}{host}."/command.htm?number=${number}");
72 $ua->request($req);
73 }
74
75 sub gen_table {
76 my $rows = shift;
77 my $cols = shift;
78 my $homogeneous = shift;
79 my $row_spacing = shift;
80 my $col_spacing = shift;
81 my $keys = shift;
82
83 my $table = Gtk2::Table->new($rows, $cols, $homogeneous);
84 $table->set_row_spacings($row_spacing);
85 $table->set_col_spacings($col_spacing);
86
87 my $n = 0;
88 foreach my $key (@$keys) {
89 if ($key ne '_') {
90 $g_key{$key} = Gtk2::Button->new("${key}");
91 $g_key{$key}->signal_connect(clicked => \&KeyPressed, $key);
92 $table->attach_defaults($g_key{$key}, (($n)%$cols), (($n)%$cols)+1, int(($n)/$cols), int((($n)/$cols)+1));
93 $g_key{$key}->show();
94 }
95 $n++;
96 }
97
98 $table->show();
99
100 $table;
101 }
102
103 my $window = Gtk2::Window->new('toplevel');
104 $window->set_title("snom");
105 $window->signal_connect(delete_event => \&CloseAppWindow);
106 $window->signal_connect(destroy => sub { Gtk2->main_quit; });
107 my $kphandler = $window->signal_connect(key_press_event => \&KBDInput);
108 $window->set_border_width(15);
109 $window->set_resizable(FALSE);
110
111 my $keypad = gen_table(4, 3, TRUE, 2, 2, [1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#']);
112
113 my $fkeys = gen_table(6, 2, TRUE, 2, 2,
114 ['_Redial', 'S_ettings', 'Director_y', 'Hel_p', 'Men_u', 'snom', '_', '_',
115 '_Conference', '_Transfer', 'H_old', '_DND']);
116
117 my $pkeys = gen_table(6, 2, TRUE, 2, 2, ['P1', 'P7', 'P2', 'P8', 'P3', 'P9', 'P4',
118 'P10', 'P5', 'P11', 'P6', 'P12']);
119
120 my $softkeys = gen_table(1, 4, FALSE, 0, 6, ['F1', 'F2', 'F3', 'F4']);
121
122 my $navi = gen_table(3, 5, FALSE, 0, 0,
123 ['_', '_', '^', '_', '_', 'X', '<', '_', '>', 'OK', '_', '_', 'V', '_', '_']);
124
125 my $output = gen_table(2, 3, FALSE, 2, 2, ['-', '+', '_', '_Mute', '_Speaker', '_Headset']);
126
127 my $special = gen_table(1, 2, FALSE, 0, 2, ['Record', 'Retrieve']);
128
129 my $display = Gtk2::Entry->new();
130 $display->signal_connect(activate => \&DialNumber);
131 my $kph_blocked = FALSE;
132 $display->signal_connect(enter_notify_event => \&DisplayMouseOver, TRUE);
133 $display->signal_connect(leave_notify_event => \&DisplayMouseOver, FALSE);
134 $display->show();
135
136 my $dispbox = Gtk2::VBox->new(0, 5);
137 $dispbox->pack_start($display, 0, 0, 0);
138 $dispbox->pack_start($softkeys, 0, 0, 0);
139 $dispbox->pack_start($navi, 0, 0, 0);
140 $dispbox->show();
141
142 my $outbox = Gtk2::VBox->new(0, 0);
143 $outbox->pack_start($g_host, 0, 0, 0);
144 $outbox->pack_end($output, 0, 0, 0);
145 $outbox->show();
146
147 my $specialbox = Gtk2::VBox->new(0, 0);
148 $specialbox->pack_end($special, 0, 0, 0);
149 $specialbox->show();
150
151 my $ubox = Gtk2::HBox->new(0, 30);
152 $ubox->pack_start($outbox, 0, 0, 0);
153 $ubox->pack_start($dispbox, 0, 0, 0);
154 $ubox->pack_start($specialbox, 0, 0, 0);
155 $ubox->show();
156
157
158 my $kbbox = Gtk2::HBox->new(0, 30);
159 $kbbox->pack_start($keypad, 1, 1, 0);
160 $kbbox->pack_start($fkeys, 0, 0, 0);
161 $kbbox->show();
162
163 my $kvbox = Gtk2::VBox->new(0, 5);
164 $kvbox->pack_end($kbbox, 0, 0, 0);
165 $kvbox->show();
166
167 my $lbox = Gtk2::HBox->new(0, 30);
168 $lbox->pack_start($kvbox, 1, 1, 0);
169 $lbox->pack_start($pkeys, 0, 0, 0);
170 $lbox->show();
171
172 my $mainbox = Gtk2::VBox->new(0,5);
173 $mainbox->pack_start($ubox, 0, 0, 0);
174 $mainbox->pack_start($lbox, 0, 0, 0);
175 $mainbox->show();
176
177 $window->add($mainbox);
178 $window->show();
179
180 $g_key{OK}->grab_focus();
181
182 # Gtk2 event loop
183 Gtk2->main;
184
185 # Should never get here
186 exit( 0 );
187
188
189 sub KeyPressed
190 {
191 my ($button, $text) = @_;
192 $text=~ s/_//g;
193 foreach my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#',
194 'F1', 'F2', 'F3', 'F4',
195 'P1', 'P2', 'P3', 'P4', 'P5', 'P6',
196 'P7', 'P8', 'P9', 'P10', 'P11', 'P12') {
197 if ($i eq $text) {
198 snom_key($i);
199 return TRUE;
200 }
201 }
202
203 snom_key("REDIAL") if ( $text eq "Redial" );
204 snom_key("SETTINGS") if ( $text eq "Settings" );
205 snom_key("F_ADR_BOOK") if ( $text eq "Directory" );
206 snom_key("HELP") if ( $text eq "Help" );
207 snom_key("MENU") if ( $text eq "Menu" );
208 snom_key("SNOM") if ( $text eq "snom" );
209 snom_key("CONFERENCE") if ( $text eq "Conference" );
210 snom_key("TRANSFER") if ( $text eq "Transfer" );
211 snom_key("F_R") if ( $text eq "Hold" );
212 snom_key("DND") if ( $text eq "DND" );
213
214 snom_key("MUTE") if ( $text eq "Mute" );
215 snom_key("SPEAKER") if ( $text eq "Speaker" );
216 snom_key("HEADSET") if ( $text eq "Headset" );
217
218 snom_key("CANCEL") if ( $text eq "X" );
219 snom_key("ENTER") if ( $text eq "OK" );
220 snom_key("UP") if ( $text eq "^" );
221 snom_key("DOWN") if ( $text eq "V" );
222 snom_key("LEFT") if ( $text eq "<" );
223 snom_key("RIGHT") if ( $text eq ">" );
224
225 snom_key("F_REC") if ( $text eq "Record" );
226 snom_key("F_RETRIEVE") if ( $text eq "Retrieve" );
227
228 snom_key("VOLUME_UP") if ( $text eq "+" );
229 snom_key("VOLUME_DOWN") if ( $text eq "-" );
230 return TRUE;
231 }
232
233 sub DialNumber
234 {
235 my ($entry) = @_;
236
237 snom_number($entry->get_text());
238 return TRUE;
239 }
240
241 sub DisplayMouseOver
242 {
243 my ($widget, $event, $active) = @_;
244
245 if ($active) {
246 $widget->grab_focus();
247 if (!$kph_blocked) {
248 $window->signal_handler_block($kphandler);
249 $kph_blocked=TRUE;
250 }
251 } else {
252 $g_key{OK}->grab_focus();
253 if ($kph_blocked) {
254 $window->signal_handler_unblock($kphandler);
255 $kph_blocked=FALSE;
256 }
257 }
258
259 return TRUE;
260 }
261
262 sub KBDInput
263 {
264 my ($widget, $event) = @_;
265
266 my $keyval = $event->keyval;
267
268 for (my $i=0; $i<10; $i++) {
269 if ($keyval == $Gtk2::Gdk::Keysyms{$i} || $keyval == $Gtk2::Gdk::Keysyms{"KP_${i}"}) {
270 snom_key($i);
271 return TRUE;
272 }
273 }
274
275 if (!$event->state || $event->state eq 'shift-mask') {
276 if ($keyval == $Gtk2::Gdk::Keysyms{asterisk}) {snom_key('*'); return TRUE;}
277 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Multiply}) {snom_key('*'); return TRUE;}
278 if ($keyval == $Gtk2::Gdk::Keysyms{numbersign}) {snom_key('#'); return TRUE;}
279 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Add}) {snom_key('VOLUME_UP'); return TRUE;}
280 if ($keyval == $Gtk2::Gdk::Keysyms{plus}) {snom_key('VOLUME_UP'); return TRUE;}
281 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Subtract}) {snom_key('VOLUME_DOWN'); return TRUE;}
282 if ($keyval == $Gtk2::Gdk::Keysyms{minus}) {snom_key('VOLUME_DOWN'); return TRUE;}
283 if ($keyval == $Gtk2::Gdk::Keysyms{Return}) {snom_key("ENTER"); return TRUE;}
284 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Enter}) {snom_key("ENTER"); return TRUE;}
285 if ($keyval == $Gtk2::Gdk::Keysyms{Escape}) {snom_key("CANCEL"); return TRUE;}
286 if ($keyval == $Gtk2::Gdk::Keysyms{Left}) {snom_key("LEFT"); return TRUE;}
287 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Left}) {snom_key("LEFT"); return TRUE;}
288 if ($keyval == $Gtk2::Gdk::Keysyms{Right}) {snom_key("RIGHT"); return TRUE;}
289 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Right}) {snom_key("RIGHT"); return TRUE;}
290 if ($keyval == $Gtk2::Gdk::Keysyms{Up}) {snom_key("UP"); return TRUE;}
291 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Up}) {snom_key("UP"); return TRUE;}
292 if ($keyval == $Gtk2::Gdk::Keysyms{Down}) {snom_key("DOWN"); return TRUE;}
293 if ($keyval == $Gtk2::Gdk::Keysyms{KP_Down}) {snom_key("DOWN"); return TRUE;}
294 if ($keyval == $Gtk2::Gdk::Keysyms{M}) {snom_key('MUTE'); return TRUE;}
295 if ($keyval == $Gtk2::Gdk::Keysyms{m}) {snom_key('MUTE'); return TRUE;}
296 if ($keyval == $Gtk2::Gdk::Keysyms{S}) {snom_key('SPEAKER'); return TRUE;}
297 if ($keyval == $Gtk2::Gdk::Keysyms{s}) {snom_key('SPEAKER'); return TRUE;}
298 if ($keyval == $Gtk2::Gdk::Keysyms{H}) {snom_key('HEADSET'); return TRUE;}
299 if ($keyval == $Gtk2::Gdk::Keysyms{h}) {snom_key('HEADSET'); return TRUE;}
300 if ($keyval == $Gtk2::Gdk::Keysyms{C}) {snom_key('CONFERENCE'); return TRUE;}
301 if ($keyval == $Gtk2::Gdk::Keysyms{c}) {snom_key('CONFERENCE'); return TRUE;}
302 if ($keyval == $Gtk2::Gdk::Keysyms{T}) {snom_key('TRANSFER'); return TRUE;}
303 if ($keyval == $Gtk2::Gdk::Keysyms{t}) {snom_key('TRANSFER'); return TRUE;}
304 if ($keyval == $Gtk2::Gdk::Keysyms{O}) {snom_key('F_R'); return TRUE;}
305 if ($keyval == $Gtk2::Gdk::Keysyms{o}) {snom_key('F_R'); return TRUE;}
306 if ($keyval == $Gtk2::Gdk::Keysyms{D}) {snom_key('DND'); return TRUE;}
307 if ($keyval == $Gtk2::Gdk::Keysyms{d}) {snom_key('DND'); return TRUE;}
308 if ($keyval == $Gtk2::Gdk::Keysyms{R}) {snom_key('REDIAL'); return TRUE;}
309 if ($keyval == $Gtk2::Gdk::Keysyms{r}) {snom_key('REDIAL'); return TRUE;}
310 if ($keyval == $Gtk2::Gdk::Keysyms{E}) {snom_key('SETTINGS'); return TRUE;}
311 if ($keyval == $Gtk2::Gdk::Keysyms{e}) {snom_key('SETTINGS'); return TRUE;}
312 if ($keyval == $Gtk2::Gdk::Keysyms{Y}) {snom_key('F_ADR_BOOK'); return TRUE;}
313 if ($keyval == $Gtk2::Gdk::Keysyms{y}) {snom_key('F_ADR_BOOK'); return TRUE;}
314 if ($keyval == $Gtk2::Gdk::Keysyms{P}) {snom_key('HELP'); return TRUE;}
315 if ($keyval == $Gtk2::Gdk::Keysyms{p}) {snom_key('HELP'); return TRUE;}
316 if ($keyval == $Gtk2::Gdk::Keysyms{U}) {snom_key('MENU'); return TRUE;}
317 if ($keyval == $Gtk2::Gdk::Keysyms{u}) {snom_key('MENU'); return TRUE;}
318 }
319
320 if (!$event->state) {
321 for (my $i=1; $i<5; $i++) {
322 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
323 snom_key("F${i}");
324 return TRUE;
325 }
326 }
327 } else {
328 if ($event->state eq 'mod1-mask') {
329 for (my $i=1; $i<13; $i++) {
330 if ($keyval == $Gtk2::Gdk::Keysyms{"F${i}"}) {
331 snom_key("P${i}");
332 return TRUE;
333 }
334 }
335 }
336 }
337
338 print "Unhandled: Modifier: ".$event->state.", Key: ";
339 foreach my $key (keys(%Gtk2::Gdk::Keysyms)) {
340 if ($keyval == $Gtk2::Gdk::Keysyms{$key}) {
341 print "${key}\n";
342 return TRUE;
343 }
344 }
345 print "ERR\n";
346 return FALSE;
347 }
348
349 sub UpdatePhoneInfo
350 {
351 print "TODO: Update PhoneInfo from <".${$Config{$sections[$g_host->get_active]}}{host}."> here!\n";
352 }
353
354 sub CloseAppWindow
355 {
356 $window->destroy;
357 return TRUE;
358 }
Impressum, Datenschutz