2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2006-04-21 15:09:32 +00:00
|
|
|
* gtkprintcontext.h: Print Context
|
|
|
|
* Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2006-04-21 15:09:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_PRINT_CONTEXT_H__
|
|
|
|
#define __GTK_PRINT_CONTEXT_H__
|
|
|
|
|
2008-10-30 16:34:16 +00:00
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2008-04-25 15:18:07 +00:00
|
|
|
#include <pango/pango.h>
|
2008-06-13 14:26:44 +00:00
|
|
|
#include <gtk/gtkpagesetup.h>
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2008-10-30 16:34:16 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GtkPrintContext GtkPrintContext;
|
|
|
|
|
|
|
|
#define GTK_TYPE_PRINT_CONTEXT (gtk_print_context_get_type ())
|
|
|
|
#define GTK_PRINT_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_CONTEXT, GtkPrintContext))
|
|
|
|
#define GTK_IS_PRINT_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_CONTEXT))
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2006-04-21 15:09:32 +00:00
|
|
|
GType gtk_print_context_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
|
|
|
|
/* Rendering */
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2006-05-31 13:38:10 +00:00
|
|
|
cairo_t *gtk_print_context_get_cairo_context (GtkPrintContext *context);
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2006-05-31 13:38:10 +00:00
|
|
|
GtkPageSetup *gtk_print_context_get_page_setup (GtkPrintContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-07-24 20:32:16 +00:00
|
|
|
double gtk_print_context_get_width (GtkPrintContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-07-24 20:32:16 +00:00
|
|
|
double gtk_print_context_get_height (GtkPrintContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-07-24 20:32:16 +00:00
|
|
|
double gtk_print_context_get_dpi_x (GtkPrintContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-07-24 20:32:16 +00:00
|
|
|
double gtk_print_context_get_dpi_y (GtkPrintContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2009-12-05 12:23:44 +00:00
|
|
|
gboolean gtk_print_context_get_hard_margins (GtkPrintContext *context,
|
2020-07-24 20:32:16 +00:00
|
|
|
double *top,
|
|
|
|
double *bottom,
|
|
|
|
double *left,
|
|
|
|
double *right);
|
2006-04-21 15:09:32 +00:00
|
|
|
|
|
|
|
/* Fonts */
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2006-05-31 13:38:10 +00:00
|
|
|
PangoFontMap *gtk_print_context_get_pango_fontmap (GtkPrintContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2006-05-31 13:38:10 +00:00
|
|
|
PangoContext *gtk_print_context_create_pango_context (GtkPrintContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2006-05-31 13:38:10 +00:00
|
|
|
PangoLayout *gtk_print_context_create_pango_layout (GtkPrintContext *context);
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2006-06-02 15:16:13 +00:00
|
|
|
/* Needed for preview implementations */
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2006-06-02 15:16:13 +00:00
|
|
|
void gtk_print_context_set_cairo_context (GtkPrintContext *context,
|
|
|
|
cairo_t *cr,
|
|
|
|
double dpi_x,
|
|
|
|
double dpi_y);
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2022-09-24 01:54:15 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkPrintContext, g_object_unref)
|
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_PRINT_CONTEXT_H__ */
|