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