diff options
author | Marek Kasik <mkasik@redhat.com> | 2009-06-08 15:37:32 +0200 |
---|---|---|
committer | Marek Kasik <mkasik@redhat.com> | 2009-06-08 15:37:32 +0200 |
commit | a12a583c99982a4072cb3ac8ae969a9ebd5cbd69 (patch) | |
tree | 74fafbcf4791378162fb3da35070aa08a77edd90 /gtk/gtkenums.h | |
parent | 9a4122a1302ae4d09610b3b86995095c877d8f95 (diff) | |
download | gtk+-a12a583c99982a4072cb3ac8ae969a9ebd5cbd69.tar.gz |
Add ability to print selection
Add a new radio button "Selection" to the print dialog. Its presence
depends on calling of functions gtk_print_operation_set_support_selection()
and gtk_print_dialog_unix_set_support_selection().
Sensitivity of the radio depends on calling of
functions gtk_print_operation_set_has_selection() and
gtk_print_dialog_unix_set_has_selection().
There are new properties GtkPrintUnixDialog::support-selection,
GtkPrintUnixDialog::has-selection, GtkPrintOperation::support-selection
and GtkPrintOperation::has-selection. Corresponding getters are
gtk_print_dialog_unix_get_support_selection(),
gtk_print_dialog_unix_get_has_selection(),
gtk_print_operation_get_support_selection() and
gtk_print_operation_get_has_selection().
Application has to set number of pages to which the selection will be formated
in GtkPrintOperation::begin-print's callback by the
gtk_print_operation_set_n_pages() function (bug #344519).
There is also new property GtkPrintUnixDialog::manual-capabilities controled by
gtk_print_unix_dialog_set_manual_capabilities() and
gtk_print_unix_dialog_get_manual_capabilities().
Diffstat (limited to 'gtk/gtkenums.h')
-rw-r--r-- | gtk/gtkenums.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkenums.h b/gtk/gtkenums.h index 1d9467b651..2dc9f8fcdc 100644 --- a/gtk/gtkenums.h +++ b/gtk/gtkenums.h @@ -494,7 +494,8 @@ typedef enum { GTK_PRINT_PAGES_ALL, GTK_PRINT_PAGES_CURRENT, - GTK_PRINT_PAGES_RANGES + GTK_PRINT_PAGES_RANGES, + GTK_PRINT_PAGES_SELECTION } GtkPrintPages; typedef enum |