1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2011 Ruby-GNOME2 Project Team
* Copyright (C) 2006 Ruby-GNOME2 Project Team
*
* 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.1 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
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
#include "rbgtk3private.h"
#define RG_TARGET_NAMESPACE cPrintContext
#define _SELF(s) (RVAL2GTKPRINTCONTEXT(s))
#ifdef HAVE_RB_CAIRO_H
#include <rb_cairo.h>
/* Rendering */
static VALUE
rg_cairo_context(VALUE self)
{
return CRCONTEXT2RVAL(gtk_print_context_get_cairo_context(_SELF(self)));
}
#endif
static VALUE
rg_page_setup(VALUE self)
{
return GOBJ2RVAL(gtk_print_context_get_page_setup(_SELF(self)));
}
static VALUE
rg_width(VALUE self)
{
return rb_float_new(gtk_print_context_get_width(_SELF(self)));
}
static VALUE
rg_height(VALUE self)
{
return rb_float_new(gtk_print_context_get_height(_SELF(self)));
}
static VALUE
rg_dpi_x(VALUE self)
{
return rb_float_new(gtk_print_context_get_dpi_x(_SELF(self)));
}
static VALUE
rg_dpi_y(VALUE self)
{
return rb_float_new(gtk_print_context_get_dpi_y(_SELF(self)));
}
/* Fonts */
static VALUE
rg_pango_fontmap(VALUE self)
{
return GOBJ2RVAL(gtk_print_context_get_pango_fontmap(_SELF(self)));
}
static VALUE
rg_create_pango_context(VALUE self)
{
return GOBJ2RVALU(gtk_print_context_create_pango_context(_SELF(self)));
}
static VALUE
rg_create_pango_layout(VALUE self)
{
return GOBJ2RVALU(gtk_print_context_create_pango_layout(_SELF(self)));
}
/* Needed for preview implementations */
#ifdef HAVE_RB_CAIRO_H
static VALUE
rg_set_cairo_context(VALUE self, VALUE cr, VALUE dpi_x, VALUE dpi_y)
{
gtk_print_context_set_cairo_context(_SELF(self),
RVAL2CRCONTEXT(cr),
NUM2DBL(dpi_x),
NUM2DBL(dpi_y));
return self;
}
#endif
void
Init_gtk_print_context(VALUE mGtk)
{
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PRINT_CONTEXT,
"PrintContext", mGtk);
/* Rendering */
#ifdef HAVE_RB_CAIRO_H
RG_DEF_METHOD(cairo_context, 0);
#endif
RG_DEF_METHOD(page_setup, 0);
RG_DEF_METHOD(width, 0);
RG_DEF_METHOD(height, 0);
RG_DEF_METHOD(dpi_x, 0);
RG_DEF_METHOD(dpi_y, 0);
/* Fonts */
RG_DEF_METHOD(pango_fontmap, 0);
RG_DEF_METHOD(create_pango_context, 0);
RG_DEF_METHOD(create_pango_layout, 0);
/* Needed for preview implementations */
#ifdef HAVE_RB_CAIRO_H
RG_DEF_METHOD(set_cairo_context, 3);
#endif
}
|