gtk.PrintOperationPreview — an interface for printing preview (new in PyGTK 2.10)
| class gtk.PrintOperationPreview(gobject.GInterface): | 
| "got-page-size |     def callback( | 
| "ready |     def callback( | 
gtk.PrintOperationPreview
    is an interface implemented by gtk.PrintOperation
    for previewing pages before printing.
    def render_page(page_nr)| page_nr: | the number of the page to be previewed | 
This method is available in PyGTK 2.10 and above.
    def callback(printoperationpreview, printcontext, user_param1, ...)| printoperationpreview: | |
| printcontext: | the print context | 
| user_param1: | the first user parameter (if any) specified
          with the connect() | 
| ...: | additional user parameters (if any) | 
This signal is available in GTK+ 2.10 and above.
    def callback(printoperationpreview, printcontext, pagesetup, user_param1, ...)| printoperationpreview: | |
| printcontext: | the print context | 
| pagesetup: | the page setup | 
| user_param1: | the first user parameter (if any) specified
          with the connect() | 
| ...: | additional user parameters (if any) | 
This signal is available in GTK+ 2.10 and above.