summaryrefslogtreecommitdiff
path: root/gtk/gtkprinter.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2007-05-28 10:41:09 +0000
committerCarlos Garcia Campos <carlosgc@src.gnome.org>2007-05-28 10:41:09 +0000
commiteb7f97bb9bda3daf3b09f3035f10f6719749e69f (patch)
tree2a5306e0dd380c6349174dd910f41cdc2c8cd527 /gtk/gtkprinter.h
parente95f511143dc2c29ab13be04ed366047e1a4545d (diff)
downloadgtk+-eb7f97bb9bda3daf3b09f3035f10f6719749e69f.tar.gz
Add new capability GTK_PRINT_CAPABILITY_NUMBER_UP.
2007-05-28 Carlos Garcia Campos <carlosgc@gnome.org> * gtk/gtkprinter.[ch]: Add new capability GTK_PRINT_CAPABILITY_NUMBER_UP. * docs/reference/gtk/tmpl/gtkprintunixdialog.sgml: * gtk/gtkprintunixdialog.c: (update_dialog_from_capabilities): * modules/printbackends/file/gtkprintbackendfile.c: (file_printer_get_options), (file_printer_get_settings_from_options): * modules/printbackends/cups/gtkprintbackendcups.c: (cups_printer_get_capabilities): Add a new print capability to specify whether print dialog will offer printing multiple pages per sheet. (#398414) svn path=/trunk/; revision=17963
Diffstat (limited to 'gtk/gtkprinter.h')
-rw-r--r--gtk/gtkprinter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkprinter.h b/gtk/gtkprinter.h
index 85e15c49a4..2d8bec1f82 100644
--- a/gtk/gtkprinter.h
+++ b/gtk/gtkprinter.h
@@ -40,7 +40,8 @@ typedef enum
GTK_PRINT_CAPABILITY_SCALE = 1 << 4,
GTK_PRINT_CAPABILITY_GENERATE_PDF = 1 << 5,
GTK_PRINT_CAPABILITY_GENERATE_PS = 1 << 6,
- GTK_PRINT_CAPABILITY_PREVIEW = 1 << 7
+ GTK_PRINT_CAPABILITY_PREVIEW = 1 << 7,
+ GTK_PRINT_CAPABILITY_NUMBER_UP = 1 << 8
} GtkPrintCapabilities;
GType gtk_print_capabilities_get_type (void) G_GNUC_CONST;