|
|
@ -28,6 +28,9 @@ else |
|
|
|
$defaultFont = 'arial'; |
|
|
|
$defaultFont = 'arial'; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
my %fonts; |
|
|
|
|
|
|
|
map { $fonts{$_} = 1 } $mw->fontFamilies; |
|
|
|
|
|
|
|
|
|
|
|
$mw->optionAdd("*font", "-*-$defaultFont-norma-r-*-*-*-120-*-*-*-*-*-*"); |
|
|
|
$mw->optionAdd("*font", "-*-$defaultFont-norma-r-*-*-*-120-*-*-*-*-*-*"); |
|
|
|
$mw->optionAdd("*borderWidth", 1); |
|
|
|
$mw->optionAdd("*borderWidth", 1); |
|
|
|
$mw->optionAdd("*highlightThickness", 0); |
|
|
|
$mw->optionAdd("*highlightThickness", 0); |
|
|
@ -41,59 +44,65 @@ register_hook("tk_get_default_font", sub { $defaultFont }); |
|
|
|
|
|
|
|
|
|
|
|
register_hook("tick", \&tick); |
|
|
|
register_hook("tick", \&tick); |
|
|
|
register_hook("tk_getmain", sub { |
|
|
|
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 { |
|
|
|
register_hook("tk_bindwheel", sub { |
|
|
|
if($^O =~ /win32/i) |
|
|
|
if($^O =~ /win32/i) |
|
|
|
{ |
|
|
|
{ |
|
|
|
$ARGS{-window}->bind('<MouseWheel>', |
|
|
|
$ARGS{-window}->bind('<MouseWheel>', |
|
|
|
[ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); |
|
|
|
[ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
{ |
|
|
|
{ |
|
|
|
$ARGS{-window}->bind('<4>' => sub { $_[0]->yview('scroll', -1, 'units') unless $Tk::strictMotif; |
|
|
|
$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; |
|
|
|
$ARGS{-window}->bind('<5>' => sub { $_[0]->yview('scroll', 1, 'units') unless $Tk::strictMotif; |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
register_hook("after", sub { |
|
|
|
register_hook("after", sub { |
|
|
|
$mw->after($ARGS{-time}, $ARGS{-code}); |
|
|
|
$mw->after($ARGS{-time}, $ARGS{-code}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub tick |
|
|
|
sub tick |
|
|
|
{ |
|
|
|
{ |
|
|
|
return unless $mw; |
|
|
|
return unless $mw; |
|
|
|
|
|
|
|
|
|
|
|
$mw->DoOneEvent(Tk::ALL_EVENTS); |
|
|
|
$mw->DoOneEvent(Tk::ALL_EVENTS); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
sub on_destroy |
|
|
|
sub on_destroy |
|
|
|
{ |
|
|
|
{ |
|
|
|
abort(); |
|
|
|
abort(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
register_hook("error", sub { |
|
|
|
register_hook("error", sub { |
|
|
|
my $text = $ARGS{-short}; |
|
|
|
my $text = $ARGS{-short}; |
|
|
|
($text) = $text =~ m/^(.*?)\n/; |
|
|
|
($text) = $text =~ m/^(.*?)\n/; |
|
|
|
my $error_box = $mw->Toplevel(-title => "Milkbone Error"); |
|
|
|
my $error_box = $mw->Toplevel(-title => "Milkbone Error"); |
|
|
|
$error_box->Label(-text => $ARGS{-short}, -wraplength => 200)->pack; |
|
|
|
$error_box->Label(-text => $ARGS{-short}, -wraplength => 200)->pack; |
|
|
|
$error_box->Button(-text => "OK", -command => [sub { |
|
|
|
$error_box->Button(-text => "OK", -command => [sub { |
|
|
|
my ($self, $fatal) = @_; |
|
|
|
my ($self, $fatal) = @_; |
|
|
|
$self->destroy; |
|
|
|
$self->destroy; |
|
|
|
hook("protocol_signoff") if $fatal; |
|
|
|
hook("protocol_signoff") if $fatal; |
|
|
|
$mw->destroy if $fatal && hook("protocol_signed_in"); |
|
|
|
$mw->destroy if $fatal && hook("protocol_signed_in"); |
|
|
|
}, $error_box, $ARGS{-fatal}])->pack->focus; |
|
|
|
}, $error_box, $ARGS{-fatal}])->pack->focus; |
|
|
|
hook("tk_seticon", -wnd => $error_box); |
|
|
|
hook("tk_seticon", -wnd => $error_box); |
|
|
|
$error_box->withdraw; |
|
|
|
$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->geometry("+" . int(($mw->screenwidth() / 2) - int($error_box->width() / 2)) . "+" . int(($mw->screenheight() / 2) - int($error_box->height() / 2)) ); |
|
|
|
$error_box->deiconify; |
|
|
|
$error_box->deiconify; |
|
|
|
$error_box->update; |
|
|
|
$error_box->update; |
|
|
|
$error_box->focus; |
|
|
|
$error_box->focus; |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|