diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-04-18 00:07:41 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2011-04-18 02:08:36 +0100 |
commit | 138409faaea83d42576d10adcfef0af75026474f (patch) | |
tree | c113f389a5051d83c86e6b28cada62c7b0e966c8 /gtk/gtkprinter.h | |
parent | 14f12a4b1b45f57c6cae0fa7f376be086d4a722f (diff) | |
download | gtk+-138409faaea83d42576d10adcfef0af75026474f.tar.gz |
Move documentation to inline comments: GtkPrintUnixDialog
Diffstat (limited to 'gtk/gtkprinter.h')
-rw-r--r-- | gtk/gtkprinter.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gtk/gtkprinter.h b/gtk/gtkprinter.h index f2c18c10c2..a9e8736d1c 100644 --- a/gtk/gtkprinter.h +++ b/gtk/gtkprinter.h @@ -34,6 +34,28 @@ G_BEGIN_DECLS /* Note, this type is manually registered with GObject in gtkprinter.c * If you add any flags, update the registration as well! */ +/** + * GtkPrintCapabilities: + * @GTK_PRINT_CAPABILITY_PAGE_SET: Print dialog will offer printing even/odd pages. + * @GTK_PRINT_CAPABILITY_COPIES: Print dialog will allow to print multiple copies. + * @GTK_PRINT_CAPABILITY_COLLATE: Print dialog will allow to collate multiple copies. + * @GTK_PRINT_CAPABILITY_REVERSE: Print dialog will allow to print pages in reverse order. + * @GTK_PRINT_CAPABILITY_SCALE: Print dialog will allow to scale the output. + * @GTK_PRINT_CAPABILITY_GENERATE_PDF: The program will send the document to + * the printer in PDF format + * @GTK_PRINT_CAPABILITY_GENERATE_PS: The program will send the document to + * the printer in Postscript format + * @GTK_PRINT_CAPABILITY_PREVIEW: Print dialog will offer a preview + * @GTK_PRINT_CAPABILITY_NUMBER_UP: Print dialog will offer printing multiple + * pages per sheet. Since 2.12 + * @GTK_PRINT_CAPABILITY_NUMBER_UP_LAYOUT: Print dialog will allow to rearrange + * pages when printing multiple pages per sheet. Since 2.14 + * + * An enum for specifying which features the print dialog should offer. + * If neither %GTK_PRINT_CAPABILITY_GENERATE_PDF nor + * %GTK_PRINT_CAPABILITY_GENERATE_PS is specified, GTK+ assumes that all + * formats are supported. + */ typedef enum { GTK_PRINT_CAPABILITY_PAGE_SET = 1 << 0, |