您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* GTK - The GIMP Toolkit
  2. * gtkprintcontext.h: Print Context
  3. * Copyright (C) 2006, Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18. * Boston, MA 02111-1307, USA.
  19. */
  20. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  21. #error "Only <gtk/gtk.h> can be included directly."
  22. #endif
  23. #ifndef __GTK_PRINT_CONTEXT_H__
  24. #define __GTK_PRINT_CONTEXT_H__
  25. #include <pango/pango.h>
  26. #include <gtk/gtkpagesetup.h>
  27. G_BEGIN_DECLS
  28. typedef struct _GtkPrintContext GtkPrintContext;
  29. #define GTK_TYPE_PRINT_CONTEXT (gtk_print_context_get_type ())
  30. #define GTK_PRINT_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_CONTEXT, GtkPrintContext))
  31. #define GTK_IS_PRINT_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_CONTEXT))
  32. GType gtk_print_context_get_type (void) G_GNUC_CONST;
  33. /* Rendering */
  34. cairo_t *gtk_print_context_get_cairo_context (GtkPrintContext *context);
  35. GtkPageSetup *gtk_print_context_get_page_setup (GtkPrintContext *context);
  36. gdouble gtk_print_context_get_width (GtkPrintContext *context);
  37. gdouble gtk_print_context_get_height (GtkPrintContext *context);
  38. gdouble gtk_print_context_get_dpi_x (GtkPrintContext *context);
  39. gdouble gtk_print_context_get_dpi_y (GtkPrintContext *context);
  40. gboolean gtk_print_context_get_hard_margins (GtkPrintContext *context,
  41. gdouble *top,
  42. gdouble *bottom,
  43. gdouble *left,
  44. gdouble *right);
  45. /* Fonts */
  46. PangoFontMap *gtk_print_context_get_pango_fontmap (GtkPrintContext *context);
  47. PangoContext *gtk_print_context_create_pango_context (GtkPrintContext *context);
  48. PangoLayout *gtk_print_context_create_pango_layout (GtkPrintContext *context);
  49. /* Needed for preview implementations */
  50. void gtk_print_context_set_cairo_context (GtkPrintContext *context,
  51. cairo_t *cr,
  52. double dpi_x,
  53. double dpi_y);
  54. G_END_DECLS
  55. #endif /* __GTK_PRINT_CONTEXT_H__ */