webgui/lib/WebGUI/Form/IntSlider.pm
Wouter van Oijen 684f08649d Fixing stuff
2006-05-21 14:49:40 +00:00

150 lines
3.4 KiB
Perl

package WebGUI::Form::IntSlider;
=head1 LEGAL
-------------------------------------------------------------------
WebGUI is Copyright 2001-2006 Plain Black Corporation.
-------------------------------------------------------------------
Please read the legal notices (docs/legal.txt) and the license
(docs/license.txt) that came with this distribution before using
this software.
-------------------------------------------------------------------
http://www.plainblack.com info@plainblack.com
-------------------------------------------------------------------
=cut
use strict;
use base 'WebGUI::Form::Slider';
use WebGUI::International;
=head1 NAME
Package WebGUI::Form::IntSlider
=head1 DESCRIPTION
Creates a slider control that controls integer values.
=head1 SEE ALSO
This is a subclass of WebGUI::Form::Slider.
=head1 METHODS
The following methods are specifically available from this class. Check the superclass for additional methods.
=cut
#-------------------------------------------------------------------
=head2 definition ( [ additionalTerms ] )
See the super class for additional details.
=head3 additionalTerms
The following additional parameters have been added via this sub class.
=head4 size
The length of the input box.
=head4 profileEnabled
Flag that tells the User Profile system that this is a valid form element in a User Profile
=cut
sub definition {
my $class = shift;
my $session = shift;
my $definition = shift || [];
my $i18n = WebGUI::International->new($session);
push(@{$definition}, {
formName=>{
defaultValue=> $i18n->get("int slider")
},
size=>{
defaultValue=> "3",
},
profileEnabled=>{
defaultValue=>1
},
});
return $class->SUPER::definition($session, $definition);
}
#-------------------------------------------------------------------
=head2 getInputElement ( )
Returns the form element used for manual input.
=cut
sub getInputElement {
my $self = shift;
return WebGUI::Form::integer($self->session, {
name => $self->get('name'),
value => $self->get('value'),
size => $self->get('size'),
id => 'view-'.$self->get('id'),
});
}
#-------------------------------------------------------------------
=head2 getOnChangeInputElement ( )
Returns the javascript code to update the slider and other form elements on a
change of the imput element.
=cut
sub getOnChangeInputElement {
my $self = shift;
return $self->getSliderVariable.'.setValue(parseInt(this.value));'.
$self->getDisplayVariable.'.innerHTML = this.value;';
}
#-------------------------------------------------------------------
=head2 getOnChangeSlider ( )
Returns the javascript code to update the form on a change of slider position.
=cut
sub getOnChangeSlider {
my $self = shift;
return $self->getInputVariable.'.value = this.getValue();'.
$self->getDisplayVariable.'.innerHTML = this.getValue();';
}
#-------------------------------------------------------------------
=head2 getValueFromPost ( )
Retrieves a value from a form GET or POST and returns it. If the value comes back as undef, this method will return the defaultValue instead. Strip newlines/carriage returns from the value.
=cut
sub getValueFromPost {
my $self = shift;
my $properties = {
name => $self->get('name'),
value => $self->get('value'),
size => $self->get('size'),
id => 'view-'.$self->get('id'),
};
return WebGUI::Form::integer->new($self->session, $properties)->getValueFromPost;
}
1;