X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/snom-frontend/blobdiff_plain/561ea20baeaff80e6d5e321cb59cc46bf13d7445..a9852b0b29e1783ca0e95c5b2a3cd71c2872f930:/snom.pl diff --git a/snom.pl b/snom.pl index 67cb292..03abbb7 100755 --- a/snom.pl +++ b/snom.pl @@ -1,19 +1,57 @@ #!/bin/sh -#$Id: snom.pl,v 1.12 2006-05-21 21:58:09 michael Exp $ +#$Id: snom.pl,v 1.26 2006-05-22 11:06:48 michael Exp $ + +# http://developer.gnome.org/doc/API/2.2/gtk/gtk-migrating-GtkComboBox.html PATH=/opt/csw/bin:/opt/local/bin:/usr/bin:/bin exec perl -w -x "$0" "$@" #!perl +use strict; +use warnings FATAL => 'all'; + use Glib qw/TRUE FALSE/; use Gtk2 '-init'; use Gtk2::Gdk::Keysyms; -use strict; - use LWP::UserAgent; + +my %g_key = (); my $ua = LWP::UserAgent->new; + +open(INIFILE,"<$ENV{HOME}/.snomrc") || die("can't open config: $ENV{HOME}/.snomrc: $!"); +my %Config = (); +my @sections = (); +while() { + chomp; + + next if (m/^#/); + + if (m/^\s*\[(.*)\]\s*$/) { + push @sections, $1; + next; + } + + if (@sections) { + if (m/^\s*(.+)\s*=\s*(.*)\s*$/) { + ${$Config{$sections[$#sections]}}{$1} = $2; + } + } +} +close(INIFILE); + + +for my $section (@sections) { + for my $val (qw(host login password)) { + if (defined(${$Config{$section}}{$val})) { + print "$section: $val: <" . ${$Config{$section}}{$val}.">\n"; + } + + } +} + + + #$ua->credentials("${ARGV[0]}:80","snom","root","geheim"); -my %g_key = (); set_locale Gtk2; @@ -96,6 +134,13 @@ $display->signal_connect(enter_notify_event => \&DisplayMouseOver, TRUE); $display->signal_connect(leave_notify_event => \&DisplayMouseOver, FALSE); $display->show(); +my $host = Gtk2::ComboBox->new_text(); +foreach my $phone (@sections) { + $host->append_text($phone); +} +$host->set_active(0); +$host->show(); + my $dispbox = Gtk2::VBox->new(0, 5); $dispbox->pack_start($display, 0, 0, 0); $dispbox->pack_start($softkeys, 0, 0, 0); @@ -103,6 +148,7 @@ $dispbox->pack_start($navi, 0, 0, 0); $dispbox->show(); my $outbox = Gtk2::VBox->new(0, 0); +$outbox->pack_start($host, 0, 0, 0); $outbox->pack_end($output, 0, 0, 0); $outbox->show();