Prima::Calendar - standard calendar widget |
Prima::Calendar - standard calendar widget
Provides interactive selection of a date between 1900 and 2099 years. The main property, date, is a three-integer array, day, month, and year, if the format of perl localtime ( see localtime in the perlfunc manpage ) - day can be in range from 0 to 30,month from 0 to 11, year from 0 to 199.
use Prima::Calendar; my $cal = Prima::Calendar-> create( useLocale => 1, onChange => sub { print $_[0]-> date_as_string, "\n"; }, ); $cal-> date_from_time( localtime( time)); $cal-> month( 5);
localtime
.
DAY can be from 0 to 30, MONTH from 0 to 11, YEAR from 0 to 199.
Default value: today's date.
POSIX::strftime
. If invoking POSIX module
is failed, the property is automatically assigned to 0.
If 0, the English names of months and days of week are used.
Default value: 1
See also: date_as_string
strftime
.
localtime
or gmtime
result. This helper method
allows the following syntax:
$calendar-> date_from_time( localtime( time));
Dmitry Karasik, <dmitry@karasik.eu.org>.
Prima, the Prima::Widget manpage, the POSIX manpage, localtime in the perlfunc manpage, time in the perlfunc manpage, examples/calendar.pl.
Prima::Calendar - standard calendar widget |