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