mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 14:59:20 +02:00
424 lines
12 KiB
Plaintext
424 lines
12 KiB
Plaintext
#!@PERL@
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Encode;
|
|
use Cairo;
|
|
use Pango;
|
|
use Getopt::Long;
|
|
|
|
my $VERSION = '@VERSION@';
|
|
|
|
use Remind::PDF;
|
|
|
|
my $media_to_size = {
|
|
"Letter" => [ 612, 792],
|
|
"Tabloid" => [ 792, 1224],
|
|
"Ledger" => [1224, 792],
|
|
"Legal" => [ 612, 1008],
|
|
"Statement" => [ 396, 612],
|
|
"Executive" => [ 540, 720],
|
|
"A3" => [ 842, 1190],
|
|
"A4" => [ 595, 842],
|
|
"A5" => [ 420, 595],
|
|
"B4" => [ 729, 1032],
|
|
"B5" => [ 519, 729],
|
|
"Folio" => [ 612, 936],
|
|
"Quarto" => [ 612, 780],
|
|
"10x14" => [ 720, 1008],
|
|
};
|
|
|
|
my $help = 0;
|
|
|
|
my $settings = {
|
|
landscape => 0,
|
|
numbers_on_left => 0,
|
|
small_calendars => 0,
|
|
fill_entire_page => 0,
|
|
|
|
media => 'Letter',
|
|
width => 0,
|
|
height => 0,
|
|
|
|
title_font => 'Helvetica',
|
|
header_font => 'Helvetica',
|
|
daynum_font => 'Helvetica Bold Oblique',
|
|
entry_font => 'Helvetica',
|
|
small_cal_font => 'Helvetica',
|
|
|
|
title_size => 14,
|
|
header_size => 14,
|
|
daynum_size => 14,
|
|
entry_size => 8,
|
|
|
|
border_size => 4,
|
|
line_thickness => 1,
|
|
|
|
margin_top => 36,
|
|
margin_bottom => 36,
|
|
margin_left => 36,
|
|
margin_right => 36,
|
|
};
|
|
|
|
my $me = $0;
|
|
$me =~ s/^.*\///;
|
|
|
|
set_default_media();
|
|
|
|
sub usage
|
|
{
|
|
print <<"EOF";
|
|
$me (version $VERSION): Convert Remind -pp output to a PDF calendar.
|
|
|
|
Usage: remind -pp [options] filename | $me [options] > out.pdf
|
|
|
|
Options:
|
|
|
|
--landscape, -l Print in landscape orientation
|
|
--small-calendars=N Choose location for small calendars
|
|
-c=N Synonym for --small-calendars=N
|
|
--left-numbers, -x Print day numbers on the left
|
|
--fill-page, -e Fill the entire page
|
|
--media=MEDIA, -m=MEDIA Size for specified media
|
|
--width=W, -w=W Specify media width in 1/72nds of an inch
|
|
--height=H, -h=H Specify media height in 1/72nds of an inch
|
|
--title-font=FONT Specify font for calendar title
|
|
--header-font=FONT Specify font for weekday names
|
|
--daynum-font=FONT Specify font for day numbers
|
|
--entry-font=FONT Specify font for calendar entries
|
|
--small-cal-font=FONT Specify font for small calendars
|
|
--title-size=S Specify size of font for calendar title in points
|
|
--header-size=S Specify size of font for weekday names
|
|
--daynum-size=S Specify size of font for day numbers
|
|
--entry-size=S Specify size of font for calendar entries
|
|
--border-size=S Specify size of gaps between items in 1/72nds of an inch
|
|
--line-thickness=S Specify line thickness in 1/72nds of an inch
|
|
--margin-top=S Specify top margin size in 1/72nds of an inch
|
|
--margin-bottom=S Specify bottom margin size in 1/72nds of an inch
|
|
--margin-left=S Specify left margin size in 1/72nds of an inch
|
|
--margin-right=S Specify right margin size in 1/72nds of an inch
|
|
--help Display this help
|
|
EOF
|
|
}
|
|
|
|
my $ret = GetOptions('landscape|l' => \$settings->{landscape},
|
|
'small-calendars|c=i' => \$settings->{small_calendars},
|
|
'left-numbers|x' => \$settings->{numbers_on_left},
|
|
'fill-page|e' => \$settings->{fill_entire_page},
|
|
'media|m=s' => \$settings->{media},
|
|
'width|w=i' => \$settings->{width},
|
|
'height|h=i' => \$settings->{height},
|
|
'title-font=s' => \$settings->{title_font},
|
|
'header-font=s' => \$settings->{header_font},
|
|
'daynum-font=s' => \$settings->{daynum_font},
|
|
'entry-font=s' => \$settings->{entry_font},
|
|
'small-cal-font=s' => \$settings->{small_cal_font},
|
|
'title-size=f' => \$settings->{title_size},
|
|
'header-size=f' => \$settings->{header_size},
|
|
'daynum-size=f' => \$settings->{daynum_size},
|
|
'entry-size=f' => \$settings->{entry_size},
|
|
'border-size=f' => \$settings->{border_size},
|
|
'line-thickness=f' => \$settings->{line_thickness},
|
|
'margin-top=f' => \$settings->{margin_top},
|
|
'margin-bottom=f' => \$settings->{margin_bottom},
|
|
'margin-left=f' => \$settings->{margin_left},
|
|
'margin-right=f' => \$settings->{margin_right},
|
|
'help' => \$help
|
|
);
|
|
if (!$ret) {
|
|
usage();
|
|
exit(1);
|
|
}
|
|
|
|
if ($help) {
|
|
usage();
|
|
exit(0);
|
|
}
|
|
|
|
if ($settings->{width} <= 0 ||
|
|
$settings->{height} <= 0) {
|
|
my $size = $media_to_size->{ucfirst($settings->{media})};
|
|
if (!$size) {
|
|
if (lc($settings->{media}) ne 'help') {
|
|
print STDERR "Unknown media " . $settings->{media} . "\n";
|
|
}
|
|
set_default_media();
|
|
printf("%-12s Size in 1/72 in\n", "Valid media:");
|
|
foreach my $m (sort { $a cmp $b } (keys(%$media_to_size))) {
|
|
if ($m eq $settings->{media}) {
|
|
print "* ";
|
|
} else {
|
|
print " ";
|
|
}
|
|
printf("%-12s %4d x %4d\n", $m,
|
|
$media_to_size->{$m}->[0],
|
|
$media_to_size->{$m}->[1]);
|
|
}
|
|
exit(1);
|
|
}
|
|
$settings->{width} = $size->[0];
|
|
$settings->{height} = $size->[1];
|
|
}
|
|
|
|
if ($settings->{landscape}) {
|
|
my $tmp = $settings->{width};
|
|
$settings->{width} = $settings->{height};
|
|
$settings->{height} = $tmp;
|
|
}
|
|
|
|
# Don't read from a terminal
|
|
if (-t STDIN) {
|
|
print STDERR "I can't read data from a terminal. Please run like this:\n";
|
|
print STDERR " remind -pp [options] filename | $me [options] > out.pdf\n";
|
|
exit(1);
|
|
}
|
|
|
|
my $done_one = 0;
|
|
|
|
my $errored_out = 0;
|
|
|
|
my $surface = Cairo::PdfSurface->create_for_stream(sub { print $_[1] unless $errored_out; }, undef,
|
|
$settings->{width}, $settings->{height});
|
|
|
|
$surface->set_metadata('title', 'Calendar');
|
|
$surface->set_metadata('author', 'Remind (https://dianne.skoll.ca/projects/remind/)');
|
|
$surface->set_metadata('creator', 'rem2pdf (https://dianne.skoll.ca/projects/remind/)');
|
|
$surface->set_metadata('subject', 'Calendar');
|
|
|
|
my $cr = Cairo::Context->create($surface);
|
|
$cr->set_line_width($settings->{line_thickness});
|
|
|
|
while(1) {
|
|
my ($obj, $err) = Remind::PDF->create_from_stream(*STDIN,
|
|
{color => 1,
|
|
shade => 1,
|
|
moon => 1,
|
|
pango => 1,
|
|
week => 1,});
|
|
|
|
if (!$obj) {
|
|
if (!$done_one) {
|
|
$errored_out = 1;
|
|
print STDERR "$me: $err\n";
|
|
exit(1);
|
|
}
|
|
last;
|
|
}
|
|
$done_one = 1;
|
|
$obj->render($cr, $settings);
|
|
}
|
|
|
|
$surface->finish();
|
|
|
|
sub set_default_media
|
|
{
|
|
my $paper;
|
|
$paper = $ENV{PAPERSIZE};
|
|
if ($paper && set_media(ucfirst($paper))) {
|
|
return 1;
|
|
}
|
|
if ($ENV{PAPERCONF}) {
|
|
if (set_media_from_file($ENV{PAPERCONF})) {
|
|
return 1;
|
|
}
|
|
}
|
|
if (set_media_from_file('/etc/papersize')) {
|
|
return 1;
|
|
}
|
|
return set_media('Letter');
|
|
}
|
|
|
|
sub set_media
|
|
{
|
|
my ($m) = @_;
|
|
|
|
return 0 unless $media_to_size->{$m};
|
|
$settings->{media} = $m;
|
|
return 1;
|
|
}
|
|
|
|
sub set_media_from_file
|
|
{
|
|
my ($fn) = @_;
|
|
if (!open(IN, '<', $fn)) {
|
|
return 0;
|
|
}
|
|
while(<IN>) {
|
|
chomp;
|
|
s/^\s+//;
|
|
s/\s+$//;
|
|
next if ($_ eq '');
|
|
next if ($_ =~ /^#/);
|
|
my $m = $_;
|
|
close(IN);
|
|
return set_media($m);
|
|
}
|
|
close(IN);
|
|
return 0;
|
|
}
|
|
|
|
__END__
|
|
|
|
=head1 NAME
|
|
|
|
rem2pdf - draw a PDF calendar from Remind output
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
remind -pp [options] file | rem2pdf [options] > output.pdf
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
B<rem2pdf> reads the standard input, which should be the results of
|
|
running B<remind> with the B<-pp> option. It emits PDF code that draws
|
|
a calendar to standard output.
|
|
|
|
=head1 OPTIONS
|
|
|
|
=over
|
|
|
|
=item --landscape, -l
|
|
|
|
Print the calendar in landscape orientation. Essentially, this swaps
|
|
the width and height of the output media.
|
|
|
|
=item --small-calendars=I<n>, -c=I<n>
|
|
|
|
Control the inclusion of small calendars for the previous and next
|
|
month. Possible values for I<n> are:
|
|
|
|
=over
|
|
|
|
=item Z<>0
|
|
|
|
Do not draw any small calendares
|
|
|
|
=item Z<>1
|
|
|
|
Place the small calendars at the bottom-right if there is room;
|
|
otherwise, place them at the top-left.
|
|
|
|
=item Z<>2
|
|
|
|
Place the small calendars at the top-left if there is room; otherwise,
|
|
place them at the bottom-right.
|
|
|
|
=item Z<>3
|
|
|
|
Place the previous month's small calendar at the top-left and the next
|
|
month's at the bottom-right if there is room; otherwise, follow
|
|
I<n>=1. A moment's thought reveals that an option which splits the
|
|
calendars if there is room and otherwise follows I<n>=2 yields the
|
|
same results.
|
|
|
|
=back
|
|
|
|
=item --left-numbers, -x
|
|
|
|
Draw the day numbers in the top-left corner of each day's box rather than
|
|
the default top-right.
|
|
|
|
=item --fill-page, -e
|
|
|
|
Make the calendar fill the available space on the page.
|
|
|
|
=item --media=I<media>, -m=I<media>
|
|
|
|
Specify the paper size (Letter, A4, etc.) For a list of valid media sizes,
|
|
run:
|
|
|
|
rem2pdf --media=help
|
|
|
|
The default media size will be marked with an asterisk.
|
|
|
|
=item --width=I<n>, -w=I<n>, --height=I<m>, -h=I<m>
|
|
|
|
Rather than specifying a named media size, directly specify the width
|
|
and height of the output in 1/72ths of an inch. You must specify both
|
|
width and height for the options to be respected.
|
|
|
|
=item --title-font=I<font>
|
|
|
|
Specify the font used for the calendar title. It can be any font that
|
|
the Pango library on your system can use. The default is Helvetica. If
|
|
you choose a font with spaces in its name, you may need to quote this
|
|
argument.
|
|
|
|
=item --header-font=I<font>
|
|
|
|
Specify the font used for the weekday names. The default is Helvetica.
|
|
|
|
=item --daynum-font=I<font>
|
|
|
|
Specify the font used for the day numbers. The default is
|
|
Helvetica Bold Oblique.
|
|
|
|
=item --entry-font=I<font>
|
|
|
|
Specify the font used for calendar entries. The default is Helvetica.
|
|
|
|
=item --small-cal-font=I<font>
|
|
|
|
Specify the font used for the small next- and previous-month
|
|
calendars. The default is Helvetica.
|
|
|
|
=item --title-size=I<n>
|
|
|
|
Specify the size of the title font in 1/72ths of an inch. The default
|
|
is 14. This size, and indeed all following sizes, may be specified as
|
|
floating-point numbers.
|
|
|
|
=item --header-size=I<n>
|
|
|
|
Specify the size of the header font in 1/72ths of an inch. The default is 14.
|
|
|
|
=item --daynum-size=I<n>
|
|
|
|
Specify the size of the day number font in 1/72ths of an inch. The
|
|
default is 14.
|
|
|
|
=item --entry-size=I<n>
|
|
|
|
Specify the size of the calendar entry font in 1/72ths of an inch.
|
|
The default is 8.
|
|
|
|
=item --border-size=I<n>
|
|
|
|
Specify the size of the blank border between the contents of a calendar
|
|
box and the centre of the lines surrounding it, in 1/72ths of an inch.
|
|
The default is 4.
|
|
|
|
=item --line-thickness=I<n>
|
|
|
|
Specify the thickness of the lines drawn on the calendar. The default is 1.
|
|
|
|
=item --margin-top=I<n>
|
|
|
|
The size of the margin at the top of the page in 1/72ths of an inch.
|
|
The default is 36.
|
|
|
|
=item --margin-bottom=I<n>
|
|
|
|
The size of the margin at the bottom of the page in 1/72ths of an inch.
|
|
The default is 36.
|
|
|
|
=item --margin-left=I<n>
|
|
|
|
The size of the margin at the left of the page in 1/72ths of an inch.
|
|
The default is 36.
|
|
|
|
=item --margin-right=I<n>
|
|
|
|
The size of the margin at the right of the page in 1/72ths of an inch.
|
|
The default is 36.
|
|
|
|
=back
|
|
|
|
=head1 AUTHOR
|
|
|
|
B<Rem2PDF> was written by Dianne Skoll <dianne@skoll.ca>
|
|
|
|
=head1 SEE ALSO
|
|
|
|
B<remind>, B<rem2ps>, B<rem2html>
|