| Gtk2-Ex-PrintDialog documentation | Contained in the Gtk2-Ex-PrintDialog distribution. |
ps2pdf command (recommended)
Gtk2::Ex::PrintDialog - a simple, pure Perl dialog for printing PostScript data in GTK+ applications.
use Gtk2::Ex::PrintDialog; my $dialog = Gtk2::Ex::PrintDialog->new; # a new dialog $dialog->set_data($postscript_data); # supply some postscript data $dialog->set_filename($postscript_file); # get postscript from a file $dialog->run; # show the dialog to the user
This module implements a dialog widget that can be used to print PostScript data. It is intended to be a lightweight and pure-perl alternative to the Gnome2::Print libraries.
This module uses a simple system of operating-system specific backends that are used to do the job of printing. Currently, only a generic Linux/Unix backend (implemented using Net::CUPS) is available, more will be added in the future.
The dialog itself is intended to comply with the GNOME Human Interface
Guidelines (HIG). It allows the user to print to any printer installed on the
system, or to an external command such as lpr, or to print a PostScript or
PDF file.
This module is UNSTABLE, the behaviour and API of its components may change in the future.
Glib::Object
+----Gtk2::Object
+----Gtk2::Widget
+----Gtk2::Container
+----Gtk2::Bin
+----Gtk2::Window
+----Gtk2::Dialog
+----Gtk2::Ex::PrintDialog
my $dialog = Gtk2::Ex::PrintDialog->new;
Returns an instance of Gtk2::Ex::PrintDialog. These dialogs are subclasse
of Gtk2::Dialog so all corresponding methods, signals and properties from
that class are also available.
The dialog will handle user actions itself so you will probably not need to connect to any signals.
$dialog->set_data($data);
This tells the dialog to use the PostScript data in $data. This might be
PostScript data you create yourself, or from another application. This data
can subsequently retrieved using get_data().
$dialog->set_filename($file);
This tells the dialog to use the PostScript data in $file. The file name
can be subsequently retrieved using get_filename(). The contents
of the file are read into memory when set_filename() is called, so any
subequent calls to get_data() will return the contents of $file.
If the Locale::gettext module is available on the system, and your
application uses it, all the strings used in the dialog will be automagically
translated, as long as these default values are translated in your .mo files.
Backends are Perl modules with names of the form
C<Gtk2::Ex::PrintDialog::$^O>
See perlvar for details of the $^O variable. The module must have the
following methods:
$backend = Gtk2::Ex::PrintDialog::$^O->newThe constructor.
$backend->get_printersReturns an array of printer names.
$backend->print_file($printer, $file)Prints the contents of $file to the printer named $file
$backend->get_default_print_commandReturns the path to the default print command, if applicable (eg 'lpr')
$backend->can_print_pdfReturns a true value if PDF printing is supported, undef otherwise.
$backend->print_to_pdf($data, $file)Prints the PostScript data in $data to the PDF file named $file.
Consult Gtk2::Ex::PrintDialog::Unix for an example. Please note that this interface may change in the future.
ps2pdf command (recommended)Gnome2::Print provides Perl bindings to the "offical" GNOME printing library. If you want a simple way to generate PostScript data, consider PostScript::Simple.
Gavin Brown (gavin dot brown at uk dot com)
(c) 2005 Gavin Brown. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Gtk2-Ex-PrintDialog documentation | Contained in the Gtk2-Ex-PrintDialog distribution. |
# $Id: PrintDialog.pm,v 1.12 2007/04/25 10:44:02 gavin Exp $ # Copyright (c) 2005 Gavin Brown. All rights reserved. This program is free # software; you can redistribute it and/or modify it under the same terms as # Perl itself. package Gtk2::Ex::PrintDialog; use Carp; use File::Basename qw(basename dirname); use File::Temp qw(tmpnam); use File::Spec; use Gtk2; use vars qw($VERSION $GETTEXT); use strict; our $VERSION = '0.03'; our $GETTEXT = 0; BEGIN { eval { require Locale::gettext; $GETTEXT = 1; }; } *new = \&Glib::Object::new; Glib::Type->register( Gtk2::Dialog::, __PACKAGE__, ); sub INIT_INSTANCE { my $self = shift; $self->{backend} = $self->get_backend; $self->add_buttons( 'gtk-cancel' => 'cancel', #'gtk-print-preview' => 0, not implemented just yet 'gtk-print' => 1, ); $self->signal_connect('response', sub { $self->response($_[1]) ; return 1 }); $self->set_title(_('Print')); $self->set_icon_name('stock_print'); $self->set_modal(1); $self->set_resizable(0); $self->{opts_label} = Gtk2::Label->new; $self->{opts_label}->set_use_markup(1); $self->{opts_label}->set_markup(sprintf('<span weight="bold">%s</span>', _('Print to:'))); $self->{opts_label}->set_alignment(0, 0); $self->{opt_print_printer} = Gtk2::RadioButton->new_with_label(undef, _('Printer:')); $self->{opt_print_command} = Gtk2::RadioButton->new_with_label($self->{opt_print_printer}, _('Command:')); $self->{opt_print_pdf} = Gtk2::RadioButton->new_with_label($self->{opt_print_printer}, _('PDF File:')); $self->{opt_print_file} = Gtk2::RadioButton->new_with_label($self->{opt_print_printer}, _('File:')); # populate the printer combo: $self->{opt_printer_combo} = Gtk2::ComboBox->new_text; my @printers = $self->backend->get_printers; # no printers, fall through to the command mode: if (scalar(@printers) < 1) { $self->{opt_print_printer}->set_sensitive(undef); $self->{opt_printer_combo}->set_sensitive(undef); $self->{opt_print_command}->set_active(1); } else { map { $self->{opt_printer_combo}->append_text($_) } @printers; $self->{opt_printer_combo}->set_active(0); } $self->{opt_command_entry} = Gtk2::Entry->new; $self->{opt_command_entry}->set_text($self->backend->get_default_print_command); $self->{opt_print_file}->set_active(1) if (!-x $self->backend->get_default_print_command && !$self->{opt_print_printer}->get_active); $self->{opt_pdf_label} = Gtk2::Label->new; $self->{opt_pdf_label}->set_selectable(1); $self->{opt_pdf_label}->set_alignment(0, 0.5); $self->{opt_pdf_label}->set_size_request(200, -1); $self->{opt_pdf_label}->set_ellipsize('middle'); $self->{opt_pdf_label}->set_text(File::Spec->catfile($self->get_default_dir, _('output.pdf'))); $self->{pdf_label_button} = Gtk2::Button->new_from_stock('gtk-open'); $self->{pdf_label_button}->signal_connect('clicked', sub { $self->choose_pdf_dialog }); $self->{pdf_label_box} = Gtk2::HBox->new; $self->{pdf_label_box}->set_spacing(6); $self->{pdf_label_box}->pack_start($self->{opt_pdf_label}, 1, 1, 0); $self->{pdf_label_box}->pack_start($self->{pdf_label_button}, 0, 0, 0); if (!$self->backend->can_print_pdf) { $self->{opt_print_pdf}->set_sensitive(undef); $self->{opt_pdf_label}->set_sensitive(undef); $self->{pdf_label_button}->set_sensitive(undef); } $self->{opt_file_label} = Gtk2::Label->new; $self->{opt_file_label}->set_selectable(1); $self->{opt_file_label}->set_alignment(0, 0.5); $self->{opt_file_label}->set_size_request(200, -1); $self->{opt_file_label}->set_ellipsize('middle'); $self->{opt_file_label}->set_text(File::Spec->catfile($self->get_default_dir, _('output.ps'))); $self->{file_label_button} = Gtk2::Button->new_from_stock('gtk-open'); $self->{file_label_button}->signal_connect('clicked', sub { $self->choose_file_dialog }); $self->{file_label_box} = Gtk2::HBox->new; $self->{file_label_box}->set_spacing(6); $self->{file_label_box}->pack_start($self->{opt_file_label}, 1, 1, 0); $self->{file_label_box}->pack_start($self->{file_label_button}, 0, 0, 0); $self->{opts_table} = Gtk2::Table->new(5, 2, 0); $self->{opts_table}->set_col_spacings(6); $self->{opts_table}->set_row_spacings(6); $self->{opts_table}->attach($self->{opt_print_printer}, 0, 1, 0, 1, 'fill', 'fill', 0, 0); $self->{opts_table}->attach($self->{opt_printer_combo}, 1, 2, 0, 1, 'fill', 'fill', 0, 0); $self->{opts_table}->attach($self->{opt_print_command}, 0, 1, 1, 2, 'fill', 'fill', 0, 0); $self->{opts_table}->attach($self->{opt_command_entry}, 1, 2, 1, 2, 'fill', 'fill', 0, 0); $self->{opts_table}->attach($self->{opt_print_pdf}, 0, 1, 2, 3, 'fill', 'fill', 0, 0); $self->{opts_table}->attach($self->{pdf_label_box}, 1, 2, 2, 3, 'fill', 'fill', 0, 0); $self->{opts_table}->attach($self->{opt_print_file}, 0, 1, 3, 4, 'fill', 'fill', 0, 0); $self->{opts_table}->attach($self->{file_label_box}, 1, 2, 3, 4, 'fill', 'fill', 0, 0); # these seems to be needed to fix the layout of the table... my $label = Gtk2::Label->new; $label->set_size_request(0, 0); $self->{opts_table}->attach($label, 0, 2, 3, 4, 'expand', 'fill', 0, 0); my $hbox = Gtk2::HBox->new; $hbox->pack_start(Gtk2::Label->new(' ' x 4), 0, 0, 0); $hbox->pack_start($self->{opts_table}, 1, 1, 0); $self->{vbox} = Gtk2::VBox->new; $self->{vbox}->set_border_width(6); $self->{vbox}->set_spacing(6); $self->{vbox}->pack_start($self->{opts_label}, 0, 0, 0); $self->{vbox}->pack_start($hbox, 1, 1, 0); $self->{vbox}->show_all; $self->vbox->pack_start($self->{vbox}, 1, 1, 0); } sub choose_file_dialog { my $self = shift; my $dialog = Gtk2::FileChooserDialog->new( _('Choose File'), $self, 'save', 'gtk-cancel' => 'cancel', 'gtk-ok' => 'ok', ); $dialog->set_local_only(1); $dialog->set_modal(1); $dialog->set_icon_name('stock_print'); $dialog->set_current_folder(dirname($self->{opt_file_label}->get_text)); $dialog->set_current_name(basename($self->{opt_file_label}->get_text)); $dialog->signal_connect('response', sub { $self->{opt_file_label}->set_text($dialog->get_filename) if ($_[1] eq 'ok'); $dialog->destroy; }); $dialog->run; } sub choose_pdf_dialog { my $self = shift; my $dialog = Gtk2::FileChooserDialog->new( _('Choose File'), $self, 'save', 'gtk-cancel' => 'cancel', 'gtk-ok' => 'ok', ); $dialog->set_local_only(1); $dialog->set_modal(1); $dialog->set_icon_name('stock_print'); $dialog->set_current_folder(dirname($self->{opt_pdf_label}->get_text)); $dialog->set_current_name(basename($self->{opt_pdf_label}->get_text)); $dialog->signal_connect('response', sub { $self->{opt_pdf_label}->set_text($dialog->get_filename) if ($_[1] eq 'ok'); $dialog->destroy; }); $dialog->run; } sub response { my ($self, $response) = @_; if ($response eq 'cancel') { $self->destroy; } elsif ($response == 0) { $self->preview; } elsif ($response == 1) { $self->print; $self->destroy; } else { carp("Unknown response ID '$response'"); } return 1; } sub preview { } sub print { my $self = shift; if ($self->{file} eq '' && $self->{data} eq '') { carp("Error: no data provided!"); return undef; } $self->set_sensitive(undef); $self->window->set_cursor(Gtk2::Gdk::Cursor->new('watch')); Gtk2->main_iteration while (Gtk2->events_pending); if ($self->{opt_print_printer}->get_active) { $self->print_to_printer; } elsif ($self->{opt_print_command}->get_active) { $self->print_to_command; } elsif ($self->{opt_print_pdf}->get_active) { $self->print_to_pdf; } elsif ($self->{opt_print_file}->get_active) { $self->print_to_file; } $self->set_sensitive(1); $self->window->set_cursor(Gtk2::Gdk::Cursor->new('left_ptr')); return 1; } sub print_to_printer { my $self = shift; my $filename = tmpnam(); open(TMPFILE, ">$filename"); print TMPFILE $self->get_data; close(TMPFILE); $self->backend->print_file($self->{opt_printer_combo}->get_active_text, $filename); unlink($filename); return 1; } sub print_to_pdf { my $self = shift; return $self->backend->print_to_pdf($self->get_data, $self->{opt_pdf_label}->get_text); } sub print_to_command { my $self = shift; return $self->_print_data_to_command($self->get_data, $self->{opt_command_entry}->get_text); } sub _print_data_to_command { my ($self, $data, $cmd) = @_; if (!open(CMD, "|$cmd")) { my $dialog = Gtk2::MessageDialog->new( undef, 'modal', 'error', 'ok', _('Error printing to command!'), ); $dialog->format_secondary_markup(sprintf(_("Cannot run '%s': %s"), $cmd, $!)); $dialog->signal_connect('response', sub { $dialog->destroy }); $dialog->run; } else { print CMD $data; close(CMD); return 1; } } sub print_to_file { my $self = shift; my $file = $self->{opt_file_label}->get_text; if (!open(DEST, ">$file")) { my $dialog = Gtk2::MessageDialog->new( $self, 'modal', 'error', 'ok', _('Error printing to file!'), ); $dialog->format_secondary_markup(_('Cannot write to %s: %s', $file, $!)); $dialog->signal_connect('response', sub { $dialog->destroy }); $dialog->run; } else { print DEST $self->get_data; close(DEST); return 1; } } sub set_filename { my ($self, $file) = @_; if (!open(FILE, $file)) { carp("Error opening '".$file."': $!"); return undef; } else { binmode(FILE); $self->{data} = ''; while (<FILE>) { $self->{data} .= $_; } close(FILE); } return 1; } sub get_filename { $_[0]->{file}; } sub set_data { $_[0]->{data} = $_[1]; } sub get_data { $_[0]->{data}; } sub backend { $_[0]->{backend}; } sub _ { my $text = shift; return ($GETTEXT == 1 ? Locale::gettext::gettext($text) : $text); } sub which { my $cmd = shift; foreach my $dir (split(/:/, $ENV{PATH})) { my $path = File::Spec->catfile($dir, $cmd); return $path if (-x $path); } return undef; } sub get_backend { my $self = shift; my $module = sprintf('%s::%s', ref($self), ucfirst($^O)); my $file = $module.'.pm'; $file =~ s!::!/!g; eval { require "$file"; }; if ($@) { carp(sprintf("Cannot find the %s backend!", $module)); return undef; } else { return $module->new; } } sub get_default_dir { my $self = shift; return File::Spec->catfile(Glib::get_home_dir, ($^O eq 'MSWin32' ? 'Desktop' : '')); } 1; __END__