]>
git.zerfleddert.de Git - snom-frontend/blob - snom.pl
8062aaf9bc06af56fd8809713a6353512c105199
2 #$Id: snom.pl,v 1.22 2006-05-21 23:07:19 michael Exp $
4 PATH
=/opt/csw
/bin:/opt
/local/bin
:/usr/bin
:/bin
exec perl
-w
-x
"$0" "$@"
9 use warnings FATAL
=> 'all';
11 use Glib qw
/TRUE FALSE/;
13 use Gtk2
::Gdk
::Keysyms
;
15 #use Config::IniFiles;
18 my $ua = LWP
::UserAgent
->new;
20 open(INIFILE
,"<$ENV{HOME}/.snomrc") || die("can't open config: $ENV{HOME}/.snomrc: $!");
28 if (m/^\s*\[(.*)\]\s*$/) {
34 for my $var (qw(host login password)) {
35 if (m/^\s*${var}\s*=\s*(.*)\s*$/) {
36 ${$Config{$sections[$#sections]}}{$var} = $1;
44 for my $section (@sections) {
45 for my $val (keys(%{$Config{$section}})) {
46 print "$section: $val: <" . ${$Config{$section}}{$val}.">\n";
47 #for my $val (qw(host login password)) {
48 # if (defined($cfg->val($section, $val))) {
49 # print "$val: <" . $cfg->val($section, $val) . ">\n";
58 #$ua->credentials("${ARGV[0]}:80","snom","root","geheim");
64 $key='%23' if ($key eq '#');
65 my $req = HTTP
::Request
->new(GET
=> "http://${ARGV[0]}/command.htm?key=${key}");
71 my $req = HTTP
::Request
->new(GET
=> "http://${ARGV[0]}/command.htm?number=${number}");
78 my $homogeneous = shift;
79 my $row_spacing = shift;
80 my $col_spacing = shift;
83 my $table = Gtk2
::Table
->new($rows, $cols, $homogeneous);
84 $table->set_row_spacings($row_spacing);
85 $table->set_col_spacings($col_spacing);
88 foreach my $key (@
$keys) {
90 $g_key{$key} = Gtk2
::Button
->new("${key}");
91 $g_key{$key}->signal_connect(clicked
=> \
&KeyPressed
, $key);
92 $table->attach_defaults($g_key{$key}, (($n)%$cols), (($n)%$cols)+1, int(($n)/$cols), int((($n)/$cols)+1));
103 if (!defined($ARGV[0])) {
104 print STDERR
"Usage: ${0} snom.phone.address\n";
108 my $window = Gtk2
::Window
->new('toplevel');
109 $window->set_title("snom");
110 $window->signal_connect(delete_event
=> \
&CloseAppWindow
);
111 $window->signal_connect(destroy
=> sub { Gtk2
->main_quit; });
112 my $kphandler = $window->signal_connect(key_press_event
=> \
&KBDInput
);
113 $window->set_border_width(15);
114 $window->set_resizable(FALSE
);
116 my $keypad = gen_table
(4, 3, TRUE
, 2, 2, [1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#']);
118 my $fkeys = gen_table
(6, 2, TRUE
, 2, 2,
119 ['_Redial', 'S_ettings', 'Director_y', 'Hel_p', 'Men_u', 'snom', '_', '_',
120 '_Conference', '_Transfer', 'H_old', '_DND']);
122 my $pkeys = gen_table
(6, 2, TRUE
, 2, 2, ['P1', 'P7', 'P2', 'P8', 'P3', 'P9', 'P4',
123 'P10', 'P5', 'P11', 'P6', 'P12']);
125 my $softkeys = gen_table
(1, 4, FALSE
, 0, 6, ['F1', 'F2', 'F3', 'F4']);
127 my $navi = gen_table
(3, 5, FALSE
, 0, 0,
128 ['_', '_', '^', '_', '_', 'X', '<', '_', '>', 'OK', '_', '_', 'V', '_', '_']);
130 my $output = gen_table
(2, 3, FALSE
, 2, 2, ['-', '+', '_', '_Mute', '_Speaker', '_Headset']);
132 my $special = gen_table
(1, 2, FALSE
, 0, 2, ['Record', 'Retrieve']);
134 my $display = Gtk2
::Entry
->new();
135 $display->signal_connect(activate
=> \
&DialNumber
);
136 my $kph_blocked = FALSE
;
137 $display->signal_connect(enter_notify_event
=> \
&DisplayMouseOver
, TRUE
);
138 $display->signal_connect(leave_notify_event
=> \
&DisplayMouseOver
, FALSE
);
141 my $host = Gtk2
::ComboBox
->new();
142 # my $combobox = Gtk2::Ex::ComboBox->new($host);
143 # $combobox->set_list(\@sections);
146 my $dispbox = Gtk2
::VBox
->new(0, 5);
147 $dispbox->pack_start($display, 0, 0, 0);
148 $dispbox->pack_start($softkeys, 0, 0, 0);
149 $dispbox->pack_start($navi, 0, 0, 0);
152 my $outbox = Gtk2
::VBox
->new(0, 0);
153 $outbox->pack_start($host, 0, 0, 0);
154 $outbox->pack_end($output, 0, 0, 0);
157 my $specialbox = Gtk2
::VBox
->new(0, 0);
158 $specialbox->pack_end($special, 0, 0, 0);
161 my $ubox = Gtk2
::HBox
->new(0, 30);
162 $ubox->pack_start($outbox, 0, 0, 0);
163 $ubox->pack_start($dispbox, 0, 0, 0);
164 $ubox->pack_start($specialbox, 0, 0, 0);
168 my $kbbox = Gtk2
::HBox
->new(0, 30);
169 $kbbox->pack_start($keypad, 1, 1, 0);
170 $kbbox->pack_start($fkeys, 0, 0, 0);
173 my $kvbox = Gtk2
::VBox
->new(0, 5);
174 $kvbox->pack_end($kbbox, 0, 0, 0);
177 my $lbox = Gtk2
::HBox
->new(0, 30);
178 $lbox->pack_start($kvbox, 1, 1, 0);
179 $lbox->pack_start($pkeys, 0, 0, 0);
182 my $mainbox = Gtk2
::VBox
->new(0,5);
183 $mainbox->pack_start($ubox, 0, 0, 0);
184 $mainbox->pack_start($lbox, 0, 0, 0);
187 $window->add($mainbox);
190 $g_key{OK
}->grab_focus();
195 # Should never get here
201 my ($button, $text) = @_;
203 foreach my $i (1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#',
204 'F1', 'F2', 'F3', 'F4',
205 'P1', 'P2', 'P3', 'P4', 'P5', 'P6',
206 'P7', 'P8', 'P9', 'P10', 'P11', 'P12') {
213 snom_key
("REDIAL") if ( $text eq "Redial" );
214 snom_key
("SETTINGS") if ( $text eq "Settings" );
215 snom_key
("F_ADR_BOOK") if ( $text eq "Directory" );
216 snom_key
("HELP") if ( $text eq "Help" );
217 snom_key
("MENU") if ( $text eq "Menu" );
218 snom_key
("SNOM") if ( $text eq "snom" );
219 snom_key
("CONFERENCE") if ( $text eq "Conference" );
220 snom_key
("TRANSFER") if ( $text eq "Transfer" );
221 snom_key
("F_R") if ( $text eq "Hold" );
222 snom_key
("DND") if ( $text eq "DND" );
224 snom_key
("MUTE") if ( $text eq "Mute" );
225 snom_key
("SPEAKER") if ( $text eq "Speaker" );
226 snom_key
("HEADSET") if ( $text eq "Headset" );
228 snom_key
("CANCEL") if ( $text eq "X" );
229 snom_key
("ENTER") if ( $text eq "OK" );
230 snom_key
("UP") if ( $text eq "^" );
231 snom_key
("DOWN") if ( $text eq "V" );
232 snom_key
("LEFT") if ( $text eq "<" );
233 snom_key
("RIGHT") if ( $text eq ">" );
235 snom_key
("F_REC") if ( $text eq "Record" );
236 snom_key
("F_RETRIEVE") if ( $text eq "Retrieve" );
238 snom_key
("VOLUME_UP") if ( $text eq "+" );
239 snom_key
("VOLUME_DOWN") if ( $text eq "-" );
247 snom_number
($entry->get_text());
253 my ($widget, $event, $active) = @_;
256 $widget->grab_focus();
258 $window->signal_handler_block($kphandler);
262 $g_key{OK
}->grab_focus();
264 $window->signal_handler_unblock($kphandler);
274 my ($widget, $event) = @_;
276 my $keyval = $event->keyval;
278 for (my $i=0; $i<10; $i++) {
279 if ($keyval == $Gtk2::Gdk
::Keysyms
{$i} || $keyval == $Gtk2::Gdk
::Keysyms
{"KP_${i}"}) {
285 if (!$event->state || $event->state eq 'shift-mask') {
286 if ($keyval == $Gtk2::Gdk
::Keysyms
{asterisk
}) {snom_key
('*'); return TRUE
;}
287 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Multiply
}) {snom_key
('*'); return TRUE
;}
288 if ($keyval == $Gtk2::Gdk
::Keysyms
{numbersign
}) {snom_key
('#'); return TRUE
;}
289 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Add
}) {snom_key
('VOLUME_UP'); return TRUE
;}
290 if ($keyval == $Gtk2::Gdk
::Keysyms
{plus
}) {snom_key
('VOLUME_UP'); return TRUE
;}
291 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Subtract
}) {snom_key
('VOLUME_DOWN'); return TRUE
;}
292 if ($keyval == $Gtk2::Gdk
::Keysyms
{minus
}) {snom_key
('VOLUME_DOWN'); return TRUE
;}
293 if ($keyval == $Gtk2::Gdk
::Keysyms
{Return
}) {snom_key
("ENTER"); return TRUE
;}
294 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Enter
}) {snom_key
("ENTER"); return TRUE
;}
295 if ($keyval == $Gtk2::Gdk
::Keysyms
{Escape
}) {snom_key
("CANCEL"); return TRUE
;}
296 if ($keyval == $Gtk2::Gdk
::Keysyms
{Left
}) {snom_key
("LEFT"); return TRUE
;}
297 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Left
}) {snom_key
("LEFT"); return TRUE
;}
298 if ($keyval == $Gtk2::Gdk
::Keysyms
{Right
}) {snom_key
("RIGHT"); return TRUE
;}
299 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Right
}) {snom_key
("RIGHT"); return TRUE
;}
300 if ($keyval == $Gtk2::Gdk
::Keysyms
{Up
}) {snom_key
("UP"); return TRUE
;}
301 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Up
}) {snom_key
("UP"); return TRUE
;}
302 if ($keyval == $Gtk2::Gdk
::Keysyms
{Down
}) {snom_key
("DOWN"); return TRUE
;}
303 if ($keyval == $Gtk2::Gdk
::Keysyms
{KP_Down
}) {snom_key
("DOWN"); return TRUE
;}
304 if ($keyval == $Gtk2::Gdk
::Keysyms
{M
}) {snom_key
('MUTE'); return TRUE
;}
305 if ($keyval == $Gtk2::Gdk
::Keysyms
{m
}) {snom_key
('MUTE'); return TRUE
;}
306 if ($keyval == $Gtk2::Gdk
::Keysyms
{S
}) {snom_key
('SPEAKER'); return TRUE
;}
307 if ($keyval == $Gtk2::Gdk
::Keysyms
{s
}) {snom_key
('SPEAKER'); return TRUE
;}
308 if ($keyval == $Gtk2::Gdk
::Keysyms
{H
}) {snom_key
('HEADSET'); return TRUE
;}
309 if ($keyval == $Gtk2::Gdk
::Keysyms
{h
}) {snom_key
('HEADSET'); return TRUE
;}
310 if ($keyval == $Gtk2::Gdk
::Keysyms
{C
}) {snom_key
('CONFERENCE'); return TRUE
;}
311 if ($keyval == $Gtk2::Gdk
::Keysyms
{c
}) {snom_key
('CONFERENCE'); return TRUE
;}
312 if ($keyval == $Gtk2::Gdk
::Keysyms
{T
}) {snom_key
('TRANSFER'); return TRUE
;}
313 if ($keyval == $Gtk2::Gdk
::Keysyms
{t
}) {snom_key
('TRANSFER'); return TRUE
;}
314 if ($keyval == $Gtk2::Gdk
::Keysyms
{O
}) {snom_key
('F_R'); return TRUE
;}
315 if ($keyval == $Gtk2::Gdk
::Keysyms
{o
}) {snom_key
('F_R'); return TRUE
;}
316 if ($keyval == $Gtk2::Gdk
::Keysyms
{D
}) {snom_key
('DND'); return TRUE
;}
317 if ($keyval == $Gtk2::Gdk
::Keysyms
{d
}) {snom_key
('DND'); return TRUE
;}
318 if ($keyval == $Gtk2::Gdk
::Keysyms
{R
}) {snom_key
('REDIAL'); return TRUE
;}
319 if ($keyval == $Gtk2::Gdk
::Keysyms
{r
}) {snom_key
('REDIAL'); return TRUE
;}
320 if ($keyval == $Gtk2::Gdk
::Keysyms
{E
}) {snom_key
('SETTINGS'); return TRUE
;}
321 if ($keyval == $Gtk2::Gdk
::Keysyms
{e
}) {snom_key
('SETTINGS'); return TRUE
;}
322 if ($keyval == $Gtk2::Gdk
::Keysyms
{Y
}) {snom_key
('F_ADR_BOOK'); return TRUE
;}
323 if ($keyval == $Gtk2::Gdk
::Keysyms
{y
}) {snom_key
('F_ADR_BOOK'); return TRUE
;}
324 if ($keyval == $Gtk2::Gdk
::Keysyms
{P
}) {snom_key
('HELP'); return TRUE
;}
325 if ($keyval == $Gtk2::Gdk
::Keysyms
{p
}) {snom_key
('HELP'); return TRUE
;}
326 if ($keyval == $Gtk2::Gdk
::Keysyms
{U
}) {snom_key
('MENU'); return TRUE
;}
327 if ($keyval == $Gtk2::Gdk
::Keysyms
{u
}) {snom_key
('MENU'); return TRUE
;}
330 if (!$event->state) {
331 for (my $i=1; $i<5; $i++) {
332 if ($keyval == $Gtk2::Gdk
::Keysyms
{"F${i}"}) {
338 if ($event->state eq 'mod1-mask') {
339 for (my $i=1; $i<13; $i++) {
340 if ($keyval == $Gtk2::Gdk
::Keysyms
{"F${i}"}) {
348 print "Unhandled: Modifier: ".$event->state.", Key: ";
349 foreach my $key (keys(%Gtk2::Gdk
::Keysyms
)) {
350 if ($keyval == $Gtk2::Gdk
::Keysyms
{$key}) {