Hoogle Search
Within LTS Haskell 24.37 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
printOperationSetUnit :: PrintOperationClass self => self -> Unit -> IO ()gtk Graphics.UI.Gtk.Printing.PrintOperation Sets up the transformation for the cairo context obtained from PrintContext in such a way that distances are measured in units of unit.
printOperationSetUseFullPage :: PrintOperationClass self => self -> Bool -> IO ()gtk Graphics.UI.Gtk.Printing.PrintOperation If fullPage is True, the transformation for the cairo context obtained from PrintContext puts the origin at the top left corner of the page (which may not be the top left corner of the sheet, depending on page orientation and the number of pages per sheet). Otherwise, the origin is at the top left corner of the imageable area (i.e. inside the margins).
printOperationShowProgress :: PrintOperationClass self => Attr self Boolgtk Graphics.UI.Gtk.Printing.PrintOperation Determines whether to show a progress dialog during the print operation. Default value: False Since 2.10
printOperationStatus :: PrintOperationClass self => ReadAttr self PrintStatusgtk Graphics.UI.Gtk.Printing.PrintOperation The status of the print operation. Default value: 'PrintStatusInitial' Since 2.10
printOperationStatusString :: (PrintOperationClass self, GlibString string) => ReadAttr self stringgtk Graphics.UI.Gtk.Printing.PrintOperation A string representation of the status of the print operation. The string is translated and suitable for displaying the print status e.g. in a Statusbar. See the printOperationStatus property for a status value that is suitable for programmatic use. Default value: "" Since 2.10
printOperationSupportSelection :: PrintOperationClass self => Attr self Boolgtk Graphics.UI.Gtk.Printing.PrintOperation If True, the print operation will support print of selection. This allows the print dialog to show a Selection button. Default value: False Since 2.18
printOperationTrackPrintStatus :: PrintOperationClass self => Attr self Boolgtk Graphics.UI.Gtk.Printing.PrintOperation If True, the print operation will try to continue report on the status of the print job in the printer queues and printer. This can allow your application to show things like "out of paper" issues, and when the print job actually reaches the printer. However, this is often implemented using polling, and should not be enabled unless needed. Default value: False Since 2.10
printOperationUnit :: PrintOperationClass self => Attr self Unitgtk Graphics.UI.Gtk.Printing.PrintOperation The transformation for the cairo context obtained from PrintContext is set up in such a way that distances are measured in units of unit. Default value: 'UnitPixel' Since 2.10
printOperationUseFullPage :: PrintOperationClass self => Attr self Boolgtk Graphics.UI.Gtk.Printing.PrintOperation If True, the transformation for the cairo context obtained from PrintContext puts the origin at the top left corner of the page (which may not be the top left corner of the sheet, depending on page orientation and the number of pages per sheet). Otherwise, the origin is at the top left corner of the imageable area (i.e. inside the margins). Default value: False Since 2.10
printOptBeginPrint :: PrintOperationClass self => Signal self (PrintContext -> IO ())gtk Graphics.UI.Gtk.Printing.PrintOperation Emitted after the user has finished changing print settings in the dialog, before the actual rendering starts. A typical use for 'begin-print' is to use the parameters from the PrintContext and paginate the document accordingly, and then set the number of pages with printOperationSetNPages.