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