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