forked from AuroraMiddleware/gtk
Set unix printer hard margins on print context
This commit is contained in:
parent
be686e2bad
commit
48cf7d9e7e
@ -140,6 +140,11 @@ void _gtk_print_context_set_page_setup (GtkPrintCon
|
||||
GtkPageSetup *page_setup);
|
||||
void _gtk_print_context_translate_into_margin (GtkPrintContext *context);
|
||||
void _gtk_print_context_rotate_according_to_orientation (GtkPrintContext *context);
|
||||
void _gtk_print_context_set_hard_margins (GtkPrintContext *context,
|
||||
gdouble top,
|
||||
gdouble bottom,
|
||||
gdouble left,
|
||||
gdouble right);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
@ -538,12 +538,16 @@ finish_print (PrintResponseData *rdata,
|
||||
GtkPrintOperation *op = rdata->op;
|
||||
GtkPrintOperationPrivate *priv = op->priv;
|
||||
GtkPrintJob *job;
|
||||
gdouble top, bottom, left, right;
|
||||
|
||||
if (rdata->do_print)
|
||||
{
|
||||
gtk_print_operation_set_print_settings (op, settings);
|
||||
priv->print_context = _gtk_print_context_new (op);
|
||||
|
||||
if (gtk_printer_get_hard_margins (printer, &top, &bottom, &left, &right))
|
||||
_gtk_print_context_set_hard_margins (priv->print_context, top, bottom, left, right);
|
||||
|
||||
if (page_setup != NULL &&
|
||||
(gtk_print_operation_get_default_page_setup (op) == NULL ||
|
||||
page_setup_set))
|
||||
|
Loading…
Reference in New Issue
Block a user