/gtk2/ext/gtk2/rbgtkprintcontext.c
https://github.com/msakai/ruby-gnome2 · C · 132 lines · 87 code · 19 blank · 26 comment · 0 complexity · d7c5f4906ab1ebeaf3fc2334318e563e MD5 · raw file
- /* -*- 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 "global.h"
- #if GTK_CHECK_VERSION(2,10,0)
- #define RG_TARGET_NAMESPACE cPrintContext
- #define _SELF(s) (GTK_PRINT_CONTEXT(RVAL2GOBJ(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
- #endif
- void
- Init_gtk_print_context(void)
- {
- #if GTK_CHECK_VERSION(2,10,0)
- 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
- G_DEF_SETTERS(RG_TARGET_NAMESPACE);
- #endif
- }