aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kretzschmar <martink@src.gnome.org>2005-07-26 04:26:40 +0800
committerMartin Kretzschmar <martink@src.gnome.org>2005-07-26 04:26:40 +0800
commitf01ae4b51169460be1bdb8139ce60a56fb9269eb (patch)
tree28a87ea259974ccaa5626f3e4696345be5c2853a
parentc9b3fac5e7c55ac5295fa0a991b8d5bff33953af (diff)
downloadgsoc2013-epiphany-f01ae4b51169460be1bdb8139ce60a56fb9269eb.tar
gsoc2013-epiphany-f01ae4b51169460be1bdb8139ce60a56fb9269eb.tar.gz
gsoc2013-epiphany-f01ae4b51169460be1bdb8139ce60a56fb9269eb.tar.bz2
gsoc2013-epiphany-f01ae4b51169460be1bdb8139ce60a56fb9269eb.tar.lz
gsoc2013-epiphany-f01ae4b51169460be1bdb8139ce60a56fb9269eb.tar.xz
gsoc2013-epiphany-f01ae4b51169460be1bdb8139ce60a56fb9269eb.tar.zst
gsoc2013-epiphany-f01ae4b51169460be1bdb8139ce60a56fb9269eb.zip
(using_pdf_printer): new function.
(ephy_print_verify_postscript): print a less techy message if someone tries to print to PDF.
-rw-r--r--ChangeLog6
-rwxr-xr-xembed/print-dialog.c49
2 files changed, 45 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 1dd4dfe79..5432f0f6d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-07-25 Martin Kretzschmar <martink@gnome.org>
+
+ * embed/print-dialog.c (using_pdf_printer): new function.
+ (ephy_print_verify_postscript): print a less techy message if
+ someone tries to print to PDF.
+
2005-07-25 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-file-helpers.c: (ephy_file_launch_desktop_file):
diff --git a/embed/print-dialog.c b/embed/print-dialog.c
index ba3dadca2..a67db5f97 100755
--- a/embed/print-dialog.c
+++ b/embed/print-dialog.c
@@ -208,6 +208,25 @@ ephy_print_dialog_response_cb (GtkDialog *dialog,
}
static gboolean
+using_pdf_printer (GnomePrintConfig *config)
+{
+ const guchar *driver;
+
+ driver = gnome_print_config_get (
+ config, (const guchar *)"Settings.Engine.Backend.Driver");
+
+ if (driver)
+ {
+ if (!strcmp ((const gchar *)driver, "gnome-print-pdf"))
+ return TRUE;
+ else
+ return FALSE;
+ }
+
+ return FALSE;
+}
+
+static gboolean
using_postscript_printer (GnomePrintConfig *config)
{
const guchar *driver;
@@ -226,7 +245,7 @@ using_postscript_printer (GnomePrintConfig *config)
else
return FALSE;
}
- else if (transport)
+ else if (transport) /* these transports default to PostScript */
{
if (strcmp ((const gchar *)transport, "CUPS") == 0)
return TRUE;
@@ -248,15 +267,25 @@ ephy_print_verify_postscript (GnomePrintDialog *print_dialog)
if (using_postscript_printer (config))
return TRUE;
- dialog = gtk_message_dialog_new (
- GTK_WINDOW (print_dialog), GTK_DIALOG_MODAL,
- GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
- _("Printing is not supported on this printer."));
- gtk_message_dialog_format_secondary_text (
- GTK_MESSAGE_DIALOG (dialog),
- _("You were trying to print to a printer using the \"%s\" driver. This program requires a PostScript printer driver."),
- gnome_print_config_get (
- config, (guchar *)"Settings.Engine.Backend.Driver"));
+ if (using_pdf_printer (config))
+ {
+ dialog = gtk_message_dialog_new (
+ GTK_WINDOW (print_dialog), GTK_DIALOG_MODAL,
+ GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
+ _("Generating PDF is not supported"));
+ }
+ else
+ {
+ dialog = gtk_message_dialog_new (
+ GTK_WINDOW (print_dialog), GTK_DIALOG_MODAL,
+ GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
+ _("Printing is not supported on this printer."));
+ gtk_message_dialog_format_secondary_text (
+ GTK_MESSAGE_DIALOG (dialog),
+ _("You were trying to print to a printer using the \"%s\" driver. This program requires a PostScript printer driver."),
+ gnome_print_config_get (
+ config, (guchar *)"Settings.Engine.Backend.Driver"));
+ }
if (GTK_WINDOW (print_dialog)->group)
gtk_window_group_add_window (GTK_WINDOW (print_dialog)->group,