package Cdk::Alphalist; @ISA = qw (Cdk); # # This creates a new alphalist object. # sub new { my $type = shift; my %params = @_; my $self = {}; my $name = "${type}::new"; # Retain the type of the object. $self->{'Type'} = $type; # Set up the parameters passed in. my $list = Cdk::checkReq ($name, "List", $params{'List'}); my $height = Cdk::checkReq ($name, "Height", $params{'Height'}); my $width = Cdk::checkReq ($name, "Width", $params{'Width'}); my $label = Cdk::checkDef ($name, "Label", $params{'Label'}, ""); my $title = Cdk::checkDef ($name, "Title", $params{'Title'}, ""); my $hBar = Cdk::checkDef ($name, "Highlight", $params{'Highlight'}, "A_REVERSE"); my $filler = Cdk::checkDef ($name, "Filler", $params{'Filler'}, "."); my $xpos = Cdk::checkDef ($name, "Xpos", $params{'Xpos'}, "CENTER"); my $ypos = Cdk::checkDef ($name, "Ypos", $params{'Ypos'}, "CENTER"); my $box = Cdk::checkDef ($name, "Box", $params{'Box'}, "TRUE"); my $shadow = Cdk::checkDef ($name, "Shadow", $params{'Shadow'}, "FALSE"); # Create the thing. $self->{'Me'} = Cdk::Alphalist::New ($title, $label, $params{'List'}, $height, $width, $xpos, $ypos, $hBar, $filler, $box, $shadow); bless $self; } # # This activates the object # sub activate { my $self = shift; my %params = @_; my $name = "$self->{'Type'}::activate"; # Activate the object... if (defined $params{'Input'}) { $self->{'Info'} = Cdk::Alphalist::Activate ($self->{'Me'}, $params{'Input'}); } else { $self->{'Info'} = Cdk::Alphalist::Activate ($self->{'Me'}); } return ($self->{'Info'}); } # # This sets several parameters of the widget. # sub set { my $self = shift; my %params = @_; my $name = "$self->{'Type'}::set"; # # Check the parameters sent in. # if (defined $params{'Contents'}) { Cdk::Alphalist::SetContents ($self->{'Me'}, $params{'Contents'}); } if (defined $params{'FillerChar'}) { Cdk::Alphalist::SetFillerChar ($self->{'Me'}, $params{'FillerChar'}); } if (defined $params{'Highlight'}) { Cdk::Alphalist::SetHighlight ($self->{'Me'}, $params{'Highlight'}); } if (defined $params{'ULChar'}) { Cdk::Alphalist::SetULChar ($self->{'Me'}, $params{'ULChar'}); } if (defined $params{'URChar'}) { Cdk::Alphalist::SetURChar ($self->{'Me'}, $params{'URChar'}); } if (defined $params{'LLChar'}) { Cdk::Alphalist::SetLLChar ($self->{'Me'}, $params{'LLChar'}); } if (defined $params{'LRChar'}) { Cdk::Alphalist::SetLRChar ($self->{'Me'}, $params{'LRChar'}); } if (defined $params{'VChar'}) { Cdk::Alphalist::SetVerticalChar ($self->{'Me'}, $params{'VChar'}); } if (defined $params{'HChar'}) { Cdk::Alphalist::SetHorizontalChar ($self->{'Me'}, $params{'HChar'}); } if (defined $params{'BoxAttribute'}) { Cdk::Alphalist::SetBoxAttribute ($self->{'Me'}, $params{'BoxAttribute'}); } if (defined $params{'BGColor'}) { Cdk::Alphalist::SetBackgroundColor ($self->{'Me'}, $params{'BGColor'}); } if (defined $params{'Box'}) { Cdk::Alphalist::SetBox ($self->{'Me'}, $params{'Box'}); } } # # This allows us to bind a key to an action. # sub bind { my $self = shift; my %params = @_; my $name = "$self->{'Type'}::bind"; # Set the values. my $key = Cdk::checkReq ($name, "Key", $params{'Key'}); my $function = Cdk::checkReq ($name, "Function", $params{'Function'}); Cdk::Alphalist::Bind ($self->{'Me'}, $params{'Key'}, $params{'Function'}); } # # This allows us to set a pre-process function. # sub preProcess { my $self = shift; my %params = @_; my $name = "$self->{'Type'}::preProcess"; # Set the values. my $function = Cdk::checkReq ($name, "Function", $params{'Function'}); Cdk::Alphalist::PreProcess ($self->{'Me'}, $params{'Function'}); } # # This allows us to set a post-process function. # sub postProcess { my $self = shift; my %params = @_; my $name = "$self->{'Type'}::postProcess"; # Set the values. my $function = Cdk::checkReq ($name, "Function", $params{'Function'}); Cdk::Alphalist::PostProcess ($self->{'Me'}, $params{'Function'}); } # # This draws the object. # sub draw { my $self = shift; my %params = @_; my $name = "$self->{'Type'}::draw"; # Set the values. my $box = Cdk::checkDef ($name, "Box", $params{'Box'}, "TRUE"); # Draw the object. Cdk::Alphalist::Draw ($self->{'Me'}, $box); } # # This erases the object. # sub erase { my $self = shift; Cdk::Alphalist::Erase ($self->{'Me'}); } # # This function raises the object. # sub raise { my $self = shift; Cdk::Alphalist::Raise ($self->{'Me'}); } # # This function lowers the object. # sub lower { my $self = shift; Cdk::Alphalist::Lower ($self->{'Me'}); } # # This function registers the object. # sub register { my $self = shift; Cdk::Alphalist::Register ($self->{'Me'}); } # # This function unregisters the object. # sub unregister { my $self = shift; Cdk::Alphalist::Unregister ($self->{'Me'}); } # # This function returns the pointer to the window. # sub getwin { my $self = shift; Cdk::Alphalist::GetWindow ($self->{'Me'}); } 1;