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