6 changed files with 113 additions and 94 deletions
@ -1,85 +1,85 @@ |
|||||||
# milkbone - profile dialog |
# milkbone - profile dialog |
||||||
|
|
||||||
package Milkbone::File; |
package Milkbone::File; |
||||||
|
|
||||||
use Milkbone; |
use Milkbone; |
||||||
|
|
||||||
our $VERSION = '1.0'; |
our $VERSION = '1.0'; |
||||||
|
|
||||||
use Tk::widgets qw(Frame); |
use Tk::widgets qw(Frame); |
||||||
use base qw(Tk::Toplevel); |
use base qw(Tk::Toplevel); |
||||||
use strict; |
use strict; |
||||||
use warnings; |
use warnings; |
||||||
|
|
||||||
Construct Tk::Widget 'MBFile'; |
Construct Tk::Widget 'MBFile'; |
||||||
|
|
||||||
sub ClassInit |
sub ClassInit |
||||||
{ |
{ |
||||||
my ($class, $mw) = @_; |
my ($class, $mw) = @_; |
||||||
$class->SUPER::ClassInit($mw); |
$class->SUPER::ClassInit($mw); |
||||||
} |
} |
||||||
|
|
||||||
sub init |
sub init |
||||||
{ |
{ |
||||||
my ($self, $mw, $data, $file, $type) = @_; |
my ($self, $mw, $data, $file, $type) = @_; |
||||||
|
|
||||||
$self->{text} = $self->Frame->pack(-expand => 1, -fill => 'both')->Scrolled( |
$self->{text} = $self->Frame->pack(-expand => 1, -fill => 'both')->Scrolled( |
||||||
"Text", -scrollbars => 'oe', -background => 'white', -wrap => 'word')-> |
"Text", -scrollbars => 'oe', -background => 'white', -wrap => 'word')-> |
||||||
pack(-expand => 1, -fill => 'both'); |
pack(-expand => 1, -fill => 'both'); |
||||||
|
|
||||||
$self->Button(-text => "Close", -command => [$self, "destroy"])->pack(-side => 'right'); |
$self->Button(-text => "Close", -command => [$self, "destroy"])->pack(-side => 'right'); |
||||||
$self->Button(-text => "Save", -command => [$self, "on_save"])->pack(-side => 'right'); |
$self->Button(-text => "Save", -command => [$self, "on_save"])->pack(-side => 'right'); |
||||||
|
|
||||||
$self->{text}->bind('<MouseWheel>', |
$self->{text}->bind('<MouseWheel>', |
||||||
[ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); |
[ sub { $_[0]->yview('scroll', -($_[1] / 120), 'units') }, Tk::Ev('D')]); |
||||||
|
|
||||||
$self->{text}->insert('0.0', $data); |
$self->{text}->insert('0.0', $data); |
||||||
|
|
||||||
$self->{type} = $type; |
$self->{type} = $type; |
||||||
$self->{file} = $file; |
$self->{file} = $file; |
||||||
|
|
||||||
if($type eq "profile") |
if($type eq "profile") |
||||||
{ |
{ |
||||||
$self->configure(-title => "Edit Profile"); |
$self->configure(-title => "Edit Profile"); |
||||||
} |
} |
||||||
else |
else |
||||||
{ |
{ |
||||||
$self->configure(-title => "Edit Away Message"); |
$self->configure(-title => "Edit Away Message"); |
||||||
} |
} |
||||||
|
|
||||||
$self->{text}->focus; |
$self->{text}->focus; |
||||||
hook("tk_seticon", -wnd => $self); |
hook("tk_seticon", -wnd => $self); |
||||||
} |
} |
||||||
|
|
||||||
sub on_save |
sub on_save |
||||||
{ |
{ |
||||||
my ($self) = @_; |
my ($self) = @_; |
||||||
my $text = $self->{text}->get('0.0', 'end'); |
my $text = $self->{text}->get('0.0', 'end'); |
||||||
|
|
||||||
$text = pre_save($text); |
$text = pre_save($text); |
||||||
|
|
||||||
open(OUT, ">" . $self->{file}) or die "couldn't open: $! " . $self->{file}; |
open(OUT, ">" . $self->{file}) or die "couldn't open: $! " . $self->{file}; |
||||||
print OUT $text; |
print OUT $text; |
||||||
close(OUT); |
close(OUT); |
||||||
|
|
||||||
if($self->{type} eq "profile") |
if($self->{type} eq "profile") |
||||||
{ |
{ |
||||||
hook("protocol_set_prof", -data => $text); |
hook("protocol_set_prof", -data => $text); |
||||||
} |
} |
||||||
elsif($self->{type} eq "away") |
elsif($self->{type} eq "away") |
||||||
{ |
{ |
||||||
hook("protocol_set_away", -data => $text); |
hook("protocol_set_away", -data => $text); |
||||||
} |
} |
||||||
|
|
||||||
$self->destroy; |
$self->destroy; |
||||||
} |
} |
||||||
|
|
||||||
sub pre_save |
sub pre_save |
||||||
{ |
{ |
||||||
my ($text) = @_; |
my ($text) = @_; |
||||||
|
|
||||||
$text =~ s/\n*$//g; |
$text =~ s/\n*$//g; |
||||||
$text =~ s/\n/<br>/gi; |
$text =~ s/\n/<br>/gi; |
||||||
|
|
||||||
return $text; |
return $text; |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue