milkbone57 22 years ago
parent
commit
7715b5c17f
  1. 2
      mb.conf
  2. 2
      plugins/Net-OSCAR/Net-OSCAR.pl
  3. 8
      plugins/Tk-BList/Milkbone/BList.pm
  4. 5
      plugins/Tk-GUI/Tk-GUI.pl
  5. 21
      plugins/Tk-GUI/Tk/BrowseEdit.pm

2
mb.conf

@ -4,7 +4,7 @@ Goodbye sorry, gotta, go
Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-Convo, Tk-Conf, Tk-AddBuddy Modules Tk-PluginsConf, Net-OSCAR, Tk-GUI, Tk-Logon, Tk-BList, Tk-Profile, Tk-File, Tk-About, Tk-Convo, Tk-Conf, Tk-AddBuddy
Plugins XAMP, Monitor, Counterstrike, Win32X, Win32-Tray Plugins XAMP, Monitor, Counterstrike, Win32X, Win32-Tray
Port 5190 Port 5190
HeavyLogging 0 HeavyLogging 1
SoundsWhileAway 0 SoundsWhileAway 0
AwayTimeout 60 AwayTimeout 60
TrayIcon 1 TrayIcon 1

2
plugins/Net-OSCAR/Net-OSCAR.pl

@ -138,7 +138,7 @@ sub signon
hook("error", hook("error",
-short => "You've exceeded one of AOL's rate limits. You will be alerted when the rate limit ends."); -short => "You've exceeded one of AOL's rate limits. You will be alerted when the rate limit ends.");
hook("rate_alert"); hook("rate_alert");
hook("tk_getmain")->after(10 * 1000, sub { hook("tk_getmain")->after($_[2], sub {
hook("error", -short => "Rate limit has expired."); hook("error", -short => "Rate limit has expired.");
}); });
} }

8
plugins/Tk-BList/Milkbone/BList.pm

@ -279,7 +279,7 @@ sub init
$self->{tree} = $self->Scrolled("MBTree" => $self->{tree} = $self->Scrolled("MBTree" =>
-scrollbars => 'oe', -scrollbars => 'oe',
-background => 'white', -font => hook("tk_get_default_font") . ' 9', -fg => 'black', -selectborderwidth => 0, -background => 'white', -font => hook("tk_get_default_font") . ' 10', -fg => 'black', -selectborderwidth => 0,
-itemtype => 'imagetext', -highlightthickness => 0, -drawbranch => 0, -indicator => 1, -itemtype => 'imagetext', -highlightthickness => 0, -drawbranch => 0, -indicator => 1,
-selectbackground => "darkblue", -selectforeground => "white", -ignoreinvoke => 1, -selectbackground => "darkblue", -selectforeground => "white", -ignoreinvoke => 1,
-selectmode => 'single', -itemtype => 'imagetext', -indent => 14, -selectmode => 'single', -itemtype => 'imagetext', -indent => 14,
@ -288,13 +288,13 @@ sub init
$self->{tree}->Subwidget("yscrollbar")->configure(-width => 15); $self->{tree}->Subwidget("yscrollbar")->configure(-width => 15);
$self->{group_style} = $self->{tree}->ItemStyle('imagetext', $self->{group_style} = $self->{tree}->ItemStyle('imagetext',
-background => 'white', -font => hook("tk_get_default_font") . ' 9 bold', -fg => 'black', -background => 'white', -font => hook("tk_get_default_font") . ' 11 bold', -fg => 'black',
-selectbackground => "white", -selectforeground => "white", -stylename => 'group'); -selectbackground => "white", -selectforeground => "white", -stylename => 'group');
$self->{changed_style} = $self->{tree}->ItemStyle('imagetext', $self->{changed_style} = $self->{tree}->ItemStyle('imagetext',
-background => 'white', -font => hook("tk_get_default_font") . ' 9', -fg => 'red', -background => 'white', -font => hook("tk_get_default_font") . ' 10', -fg => 'red',
-selectbackground => "darkblue", -selectforeground => "white", -stylename => 'changed'); -selectbackground => "darkblue", -selectforeground => "white", -stylename => 'changed');
$self->{normal_style} = $self->{tree}->ItemStyle('imagetext', $self->{normal_style} = $self->{tree}->ItemStyle('imagetext',
-background => 'white', -font => hook("tk_get_default_font") . ' 9', -fg => 'black', -background => 'white', -font => hook("tk_get_default_font") . ' 10', -fg => 'black',
-selectbackground => "darkblue", -selectforeground => "white", -stylename => 'normal'); -selectbackground => "darkblue", -selectforeground => "white", -stylename => 'normal');
$self->{away_button} = "Away Message"; $self->{away_button} = "Away Message";

5
plugins/Tk-GUI/Tk-GUI.pl

@ -19,10 +19,7 @@ my $mw = MainWindow->new();
$mw->withdraw(); $mw->withdraw();
$mw->OnDestroy(\&on_destroy); $mw->OnDestroy(\&on_destroy);
my %installed_fonts; if(win32())
$installed_fonts{lc($_)} = 1 for $mw->fontFamilies;
my $defaultFont;
if($installed_fonts{'tahoma'})
{ {
$defaultFont = 'tahoma'; $defaultFont = 'tahoma';
} }

21
plugins/Tk-GUI/Tk/BrowseEdit.pm

@ -20,6 +20,7 @@ sub Populate
-font => $self->Font(-family => 'times', -weight => 'bold', -size => '8'), -font => $self->Font(-family => 'times', -weight => 'bold', -size => '8'),
-command => [sub { -command => [sub {
my ($self) = @_; my ($self) = @_;
print "hit b\n";
$self->toggleTag('<b>'); $self->toggleTag('<b>');
}, $self] }, $self]
)->pack(-pady => 0, -side => 'left', -fill => 'both'); )->pack(-pady => 0, -side => 'left', -fill => 'both');
@ -50,7 +51,10 @@ $self]);
'DEFAULT' => $self->{text}, 'DEFAULT' => $self->{text},
'to_html' => $self, 'to_html' => $self,
); );
$self->after(200, [$self, "init"]); }
sub insert
{
shift->{text}->insert(@_);
} }
sub toggleTag sub toggleTag
{ {
@ -63,7 +67,7 @@ sub toggleTag
print "tag names gotten\n"; print "tag names gotten\n";
if ($cur_tag =~ /$tag/i) if ($cur_tag =~ /$tag/i)
{ {
# tag is defined for this range - remove it from the composite tag name and then add the resulting # tag is not defined for this range - add it from the composite tag name and then add the resulting
# tag, creating it if necessary # tag, creating it if necessary
return unless $cur_tag ne ""; return unless $cur_tag ne "";
$self->{text}->tagRemove($cur_tag, 'insert'); $self->{text}->tagRemove($cur_tag, 'insert');
@ -74,10 +78,11 @@ sub toggleTag
$self->insert('insert', '%%%ignore%%%', [$cur_tag, 'elide']); $self->insert('insert', '%%%ignore%%%', [$cur_tag, 'elide']);
$self->tagAdd($cur_tag, 'insert'); $self->tagAdd($cur_tag, 'insert');
$self->{$tag}->configure(-relief => 'flat'); $self->{$tag}->configure(-relief => 'flat');
print "done\n";
} }
else else
{ {
# tag not enabled for this range - add it # tag not enabled for this range - remove it
$self->{text}->tagRemove($cur_tag, 'insert'); $self->{text}->tagRemove($cur_tag, 'insert');
$cur_tag .= $tag; $cur_tag .= $tag;
$self->create_tag($cur_tag); $self->create_tag($cur_tag);
@ -129,7 +134,10 @@ sub create_tag
{ {
$fontparams{-slant} = 'italic'; $fontparams{-slant} = 'italic';
} }
$self->tagConfigure($tag, %tagparams, -font => $self->Font(%fontparams));
my $font = $self->Font(%fontparams);
$self->tagConfigure($tag, %tagparams, -font => $font);
$self->{created_tags}->{$tag} = 1;
} }
sub to_html sub to_html
{ {
@ -174,8 +182,5 @@ sub end_tag
$tag =~ s/^</<\//; $tag =~ s/^</<\//;
return $tag; return $tag;
} }
sub init
{
my ($self) = @_;
}
1; 1;

Loading…
Cancel
Save