|
|
|
@ -66,6 +66,7 @@ sub on_cancel
@@ -66,6 +66,7 @@ sub on_cancel
|
|
|
|
|
{ |
|
|
|
|
my ($self) = @_; |
|
|
|
|
|
|
|
|
|
$self->packPropagate(1); |
|
|
|
|
$self->{status}->packForget; |
|
|
|
|
$self->{controls}->pack(-expand => 1, -fill => 'both'); |
|
|
|
|
|
|
|
|
@ -113,21 +114,21 @@ sub init
@@ -113,21 +114,21 @@ sub init
|
|
|
|
|
$self->{sn_entry}->focus; |
|
|
|
|
|
|
|
|
|
# create the password widget |
|
|
|
|
$self->{controls}->Label(-text => 'Password:', -anchor => 'w')-> |
|
|
|
|
$self->{controls}->Label(-text => 'Password:', -anchor => 'w', -takefocus => 0)-> |
|
|
|
|
pack(-side => 'top', -expand => 1, -fill => 'both', -padx => 7); |
|
|
|
|
$self->{pass_entry} = $self->{controls}->Component('Entry' => 'pass', -background => 'white', -width => 16, -textvariable => \$self->{pass}, -show => '*', -insertwidth => 1)-> |
|
|
|
|
$self->{pass_entry} = $self->{controls}->Component('Entry' => 'pass', -background => 'white', -width => 16, -textvariable => \$self->{pass}, -show => '*', -insertwidth => 1, -takefocus => 1)-> |
|
|
|
|
pack(-side => 'top', -expand => 1, -fill => 'both', -padx => 5); |
|
|
|
|
|
|
|
|
|
$self->{controls}->Label(-text => $slogan, -anchor => 'c', -justify => 'center', -wraplength => 250)->pack(-expand =>1, -fill => 'both'); |
|
|
|
|
$self->{controls}->Label(-text => $slogan, -anchor => 'c', -justify => 'center', -wraplength => 250, -takefocus => 0)->pack(-expand =>1, -fill => 'both'); |
|
|
|
|
|
|
|
|
|
# create the status frame |
|
|
|
|
$self->{status_label} = $self->{status}->Label(-text => "Connecting to login.oscar.aol.com...")->pack; |
|
|
|
|
$self->{status}->Button(-text => "Cancel", -takefocus => 0, command => [$self, "on_cancel"])->pack(-pady => 5); |
|
|
|
|
$self->{status}->Button(-text => "Cancel", -takefocus => 0, -command => [$self, "on_cancel"])->pack(-pady => 5); |
|
|
|
|
|
|
|
|
|
$self->{logon_button} = $self->{controls}->Button(-text => 'log on', -takefocus => 0, -command => [$self, "on_logon"], |
|
|
|
|
-height => 0.5, -borderwidth => 1)-> |
|
|
|
|
-height => 0.5, -borderwidth => 1, -takefocus => 0)-> |
|
|
|
|
pack(-pady => 7, -padx => 3, -expand => 0, -side => 'left'); |
|
|
|
|
$self->{controls}->Button(-text => 'about', -command => sub { hook("show_about") }, |
|
|
|
|
$self->{controls}->Button(-text => 'about', -command => sub { hook("show_about") }, -takefocus => 0, |
|
|
|
|
-height => 0.5)-> |
|
|
|
|
pack(-pady => 7, -padx => 3, -expand => 0, -side => 'right'); |
|
|
|
|
# WIDGET CREATION END |
|
|
|
|