diff --git a/Milkbone.pm b/Milkbone.pm index 80c3ca8..dce202f 100644 --- a/Milkbone.pm +++ b/Milkbone.pm @@ -20,6 +20,8 @@ use Benchmark; our $VERSION = "0.355"; + + require Exporter; our @ISA = qw( Exporter ); diff --git a/plugins/Tk-GUI/Tk-GUI.pl b/plugins/Tk-GUI/Tk-GUI.pl index bd63e57..3e219e8 100644 --- a/plugins/Tk-GUI/Tk-GUI.pl +++ b/plugins/Tk-GUI/Tk-GUI.pl @@ -28,6 +28,9 @@ else $defaultFont = 'arial'; } +my %fonts; +map { $fonts{$_} = 1 } $mw->fontFamilies; + $mw->optionAdd("*font", "-*-$defaultFont-norma-r-*-*-*-120-*-*-*-*-*-*"); $mw->optionAdd("*borderWidth", 1); $mw->optionAdd("*highlightThickness", 0); @@ -41,59 +44,65 @@ register_hook("tk_get_default_font", sub { $defaultFont }); register_hook("tick", \&tick); register_hook("tk_getmain", sub { - return $mw; + return $mw; +}); +register_hook("tk_getfont". sub { + print "getfont called with" . $ARGS{-font}; + return $ARGS{-font} if exists($fonts{$ARGS{-font}}); + print "font doesn't exist - here's the default"; + return $defaultFont; }); register_hook("tk_bindwheel", sub { if($^O =~ /win32/i) { $ARGS{-window}->bind('', - [ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); + [ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); } else { $ARGS{-window}->bind('<4>' => sub { $_[0]->yview('scroll', -1, 'units') unless $Tk::strictMotif; - }); + }); $ARGS{-window}->bind('<5>' => sub { $_[0]->yview('scroll', 1, 'units') unless $Tk::strictMotif; - }); + }); } }); register_hook("after", sub { - $mw->after($ARGS{-time}, $ARGS{-code}); + $mw->after($ARGS{-time}, $ARGS{-code}); }); sub tick { - return unless $mw; + return unless $mw; - $mw->DoOneEvent(Tk::ALL_EVENTS); + $mw->DoOneEvent(Tk::ALL_EVENTS); } sub on_destroy { - abort(); + abort(); } register_hook("error", sub { - my $text = $ARGS{-short}; - ($text) = $text =~ m/^(.*?)\n/; - my $error_box = $mw->Toplevel(-title => "Milkbone Error"); - $error_box->Label(-text => $ARGS{-short}, -wraplength => 200)->pack; - $error_box->Button(-text => "OK", -command => [sub { - my ($self, $fatal) = @_; - $self->destroy; - hook("protocol_signoff") if $fatal; - $mw->destroy if $fatal && hook("protocol_signed_in"); - }, $error_box, $ARGS{-fatal}])->pack->focus; - hook("tk_seticon", -wnd => $error_box); - $error_box->withdraw; - $error_box->geometry("+" . int(($mw->screenwidth() / 2) - int($error_box->width() / 2)) . "+" . int(($mw->screenheight() / 2) - int($error_box->height() / 2)) ); - $error_box->deiconify; - $error_box->update; - $error_box->focus; + my $text = $ARGS{-short}; + ($text) = $text =~ m/^(.*?)\n/; + my $error_box = $mw->Toplevel(-title => "Milkbone Error"); + $error_box->Label(-text => $ARGS{-short}, -wraplength => 200)->pack; + $error_box->Button(-text => "OK", -command => [sub { + my ($self, $fatal) = @_; + $self->destroy; + hook("protocol_signoff") if $fatal; + $mw->destroy if $fatal && hook("protocol_signed_in"); + }, $error_box, $ARGS{-fatal}])->pack->focus; + hook("tk_seticon", -wnd => $error_box); + $error_box->withdraw; + $error_box->geometry("+" . int(($mw->screenwidth() / 2) - int($error_box->width() / 2)) . "+" . int(($mw->screenheight() / 2) - int($error_box->height() / 2)) ); + $error_box->deiconify; + $error_box->update; + $error_box->focus; }); diff --git a/plugins/Tk-GUI/Tk/Browser.pm b/plugins/Tk-GUI/Tk/Browser.pm index e3fbdba..ca5bfa0 100644 --- a/plugins/Tk-GUI/Tk/Browser.pm +++ b/plugins/Tk-GUI/Tk/Browser.pm @@ -1,211 +1,214 @@ -package Tk::Browser; - -use Tk; -use Tk::Font; -use base 'Tk::ROText'; -use Cwd qw(abs_path); - -use strict; -use warnings; - -Construct Tk::Widget 'Browser'; - -sub insertHTML -{ - my ($self, $pos, $html) = @_; - my @insert; - - $self->configure(-selectforeground => 'white', -selectbackground => 'black', -background => 'white'); - - $html =~ s/
/\n/gi; - $html =~ s/)/, $html; - - my $data = {}; - my $font = {-family => 'times'}; - - $self->begin($font); - - for(@items) - { - if(!/^/gi; - s/</{tags}}]; - } - else - { - my ($tagname) = /^<\/?(\w*)/; - my $func = /^<\// ? lc $tagname . "_end" : - lc $tagname . "_begin"; - $_ =~ s/^<\///; - $self->$func($_, $data, $font); - } - } - - $self->end; - - $self->insert($pos, @insert); -} - -sub begin -{ - my ($self, $font) = @_; - $self->configure(-font => $self->Font(%{$font})->Pattern); -} - -sub end -{ - my ($self) = @_; -} - -sub b_begin -{ - my ($self, $tag, $data, $font) = @_; - $font->{-weight} = 'bold'; - $data->{tags}->{''} = 1; - $self->tagConfigure('', -font => $self->Font(%{$font})->Pattern); -} - -sub b_end -{ - my ($self, $tag, $data, $font) = @_; - $font->{-weight} = 'normal'; - - delete $data->{tags}->{''}; -} - -sub i_begin -{ - my ($self, $tag, $data, $font) = @_; - $font->{-slant} = 'italic'; - $data->{tags}->{''} = 1; - $self->tagConfigure('', -font => $self->Font(%{$font})->Pattern); -} - -sub i_end -{ - my ($self, $tag, $data, $font) = @_; - $font->{-slant} = 'roman'; - - delete $data->{tags}->{''}; -} - -sub u_begin -{ - my ($self, $tag, $data, $font) = @_; - - $data->{tags}->{''} = 1; - $self->tagConfigure('', -underline => 1, -font => $self->Font(%{$font})->Pattern); -} - -sub u_end -{ - my ($self, $tag, $data, $font) = @_; - - delete $data->{tags}->{''}; -} - -sub a_begin -{ - # this assumes that no one will nest anchor tags ( a silly thing to do anyway ) - - my ($self, $tag, $data, $font) = @_; - - my ($href) = ($tag =~ m/href=\"(.*?)\"/i); - - $data->{tags}->{$tag} = 1; - $self->tagConfigure($tag, -foreground => "blue", -underline => 1, -font => $self->Font(%{$font})->Pattern); - - $self->tagBind($tag, '', [sub { - my $cmd; - $cmd = defined(option("Browser")) ? option("Browser") : "\"c:\\program files\\internet explorer\\iexplore.exe\"" if $^O =~ m/Win32/; - $cmd = defined(option("Browser")) ? option("Browser") : "opera" if $^O !~ m/Win32/; - if($^O !~ m/Win32/) - { - exec("$cmd $_[1]") unless fork; - } - else - { - eval 'use Win32::Process; use Win32; ' . - 'my ($obj, $cmd);' . - '$cmd = ' . "'" . 'C:\Progra~1\Intern~1\iexplore.exe' . "';" . - 'Win32::Process::Create($obj, "$cmd", "$cmd $_[1]", 0, 32, abs_path) or '. - 'die "eerr" . Win32::FormatMessage( Win32::GetLastError() );'; - warn "$@ $!" if $@; - } - }, $href]); - - $self->tagBind($tag, '', [sub { - shift->configure(-cursor => 'hand2'); - }, $self]); - - $self->tagBind($tag, '', [sub { - shift->configure(-cursor => 'xterm'); - }, $self]); - - push @{$data->{atags}}, $tag; -} - -sub a_end -{ - my ($self, $tag, $data, $font) = @_; - - $font->{-underline} = 0; - - delete $data->{tags}->{pop @{$data->{atags}}}; -} - -sub font_begin -{ - my ($self, $tag, $data, $font) = @_; - - my ($family) = ($tag =~ m/face=\"(.*?)\"/i); - my ($color) = ($tag =~ m/color=\"(.*?)\"/i); - my ($size) = ($tag =~ m/size=\"?([^> ]*)\"?/i); - my ($back) = ($tag =~ m/back=\"(.*?)\"/i); - - $size ||= 2; - - my $realsize; - - # Begin klugey OS hacks - - $realsize = int((8, 10, 12, 14, 18, 24, 38) [int($size) + 1]) + 2 if $size and $^O =~ /Win32/; - - $realsize = int((8, 10, 12, 14, 18, 24, 38) [int($size) + 1]) if $size and $^O !~ /Win32/; - - $font->{-family} = "{$family}" if $family; - $font->{-size} = $realsize if $size; - - my %opts; - $opts{-foreground} = $color if $color; - $opts{-background} = $back if $back; - - $data->{tags}->{$tag} = 1; - $self->tagConfigure($tag, %opts, -font => $self->Font(%{$font})->Pattern); - - push @{$data->{fonttags}}, $tag; -} - -sub font_end -{ - my ($self, $tag, $data, $font) = @_; - - delete $data->{tags}->{pop @{$data->{fonttags}}}; -} - -sub body_end -{ - my ($self, $tag, $data, $font) = @_; -} - -sub AUTOLOAD -{ -} - -1; +package Tk::Browser; + +use Tk; +use Tk::Font; +use base 'Tk::ROText'; +use Cwd qw(abs_path); + +use Milkbone; + +use strict; +use warnings; + +Construct Tk::Widget 'Browser'; + +sub insertHTML +{ + my ($self, $pos, $html) = @_; + my @insert; + + $self->configure(-selectforeground => 'white', -selectbackground => 'black'); + + $html =~ s/
/\n/gi; + $html =~ s/)/, $html; + + my $data = {}; + my $font = {-family => 'times'}; + + $self->begin($font); + + for(@items) + { + if(!/^/gi; + s/</{tags}}]; + } + else + { + my ($tagname) = /^<\/?(\w*)/; + my $func = /^<\// ? lc $tagname . "_end" : + lc $tagname . "_begin"; + $_ =~ s/^<\///; + $self->$func($_, $data, $font); + } + } + + $self->end; + + $self->insert($pos, @insert); +} + +sub begin +{ + my ($self, $font) = @_; + $self->configure(-font => $self->Font(%{$font})->Pattern); +} + +sub end +{ + my ($self) = @_; +} + +sub b_begin +{ + my ($self, $tag, $data, $font) = @_; + $font->{-weight} = 'bold'; + $data->{tags}->{''} = 1; + $self->tagConfigure('', -font => $self->Font(%{$font})->Pattern); +} + +sub b_end +{ + my ($self, $tag, $data, $font) = @_; + $font->{-weight} = 'normal'; + + delete $data->{tags}->{''}; +} + +sub i_begin +{ + my ($self, $tag, $data, $font) = @_; + $font->{-slant} = 'italic'; + $data->{tags}->{''} = 1; + $self->tagConfigure('', -font => $self->Font(%{$font})->Pattern); +} + +sub i_end +{ + my ($self, $tag, $data, $font) = @_; + $font->{-slant} = 'roman'; + + delete $data->{tags}->{''}; +} + +sub u_begin +{ + my ($self, $tag, $data, $font) = @_; + + $data->{tags}->{''} = 1; + $self->tagConfigure('', -underline => 1, -font => $self->Font(%{$font})->Pattern); +} + +sub u_end +{ + my ($self, $tag, $data, $font) = @_; + + delete $data->{tags}->{''}; +} + +sub a_begin +{ + # this assumes that no one will nest anchor tags ( a silly thing to do anyway ) + + my ($self, $tag, $data, $font) = @_; + + my ($href) = ($tag =~ m/href=\"(.*?)\"/i); + + $data->{tags}->{$tag} = 1; + $self->tagConfigure($tag, -foreground => "blue", -underline => 1, -font => $self->Font(%{$font})->Pattern); + + $self->tagBind($tag, '', [sub { + my $cmd; + $cmd = defined(option("Browser")) ? option("Browser") : "\"c:\\program files\\internet explorer\\iexplore.exe\"" if $^O =~ m/Win32/; + $cmd = defined(option("Browser")) ? option("Browser") : "opera" if $^O !~ m/Win32/; + if($^O !~ m/Win32/) + { + exec("$cmd $_[1]") unless fork; + } + else + { + eval 'use Win32::Process; use Win32; ' . + 'my ($obj, $cmd);' . + '$cmd = ' . "'" . 'C:\Progra~1\Intern~1\iexplore.exe' . "';" . + 'Win32::Process::Create($obj, "$cmd", "$cmd $_[1]", 0, 32, abs_path) or '. + 'die "eerr" . Win32::FormatMessage( Win32::GetLastError() );'; + warn "$@ $!" if $@; + } + }, $href]); + + $self->tagBind($tag, '', [sub { + shift->configure(-cursor => 'hand2'); + }, $self]); + + $self->tagBind($tag, '', [sub { + shift->configure(-cursor => 'xterm'); + }, $self]); + + push @{$data->{atags}}, $tag; +} + +sub a_end +{ + my ($self, $tag, $data, $font) = @_; + + $font->{-underline} = 0; + + delete $data->{tags}->{pop @{$data->{atags}}}; +} + +sub font_begin +{ + my ($self, $tag, $data, $font) = @_; + + my ($family) = ($tag =~ m/face=\"(.*?)\"/i); + my ($color) = ($tag =~ m/color=\"(.*?)\"/i); + my ($size) = ($tag =~ m/size=\"?([^> ]*)\"?/i); + my ($back) = ($tag =~ m/back=\"(.*?)\"/i); + + $size ||= 2; + + my $realsize; + + # Begin klugey OS hacks + + $realsize = int((8, 10, 12, 14, 18, 24, 38) [int($size) + 1]) + 2 if $size and $^O =~ /Win32/; + + $realsize = int((8, 10, 12, 14, 18, 24, 38) [int($size) + 1]) if $size and $^O !~ /Win32/; + + $font->{-family} = "{" . hook("tk_getfont", -font => $family) . "}" + if $family; + $font->{-size} = $realsize if $size; + + my %opts; + $opts{-foreground} = $color if $color; + $opts{-background} = $back if $back; + + $data->{tags}->{$tag} = 1; + $self->tagConfigure($tag, %opts, -font => $self->Font(%{$font})->Pattern); + + push @{$data->{fonttags}}, $tag; +} + +sub font_end +{ + my ($self, $tag, $data, $font) = @_; + + delete $data->{tags}->{pop @{$data->{fonttags}}}; +} + +sub body_end +{ + my ($self, $tag, $data, $font) = @_; +} + +sub AUTOLOAD +{ +} + +1; diff --git a/plugins/Tk-GUI/test.pl b/plugins/Tk-GUI/test.pl index 9fc8331..1152ae6 100644 --- a/plugins/Tk-GUI/test.pl +++ b/plugins/Tk-GUI/test.pl @@ -1,20 +1,10 @@ use Tk; -use Tk::Text; +use Tk::Browser; $mw = MainWindow->new; -$edit = $mw->TextUndo->pack; +$edit = $mw->Browser->pack; -$edit->insert('end', 't'); +$edit->insertHTML('end', "erererr"); -$edit->tagConfigure('', -font => $mw->Font(-family => 'times', -weight => 'bold')); -$edit->tagConfigure('elide', -elide => 1); - -$tag = ""; - -$mw->Button(-text => 'bold', -command => sub { - $edit->insert('insert', 'de', [$tag, 'elide']); - $edit->tagAdd($tag, 'insert'); -})->pack; - -MainLoop; \ No newline at end of file +MainLoop;