/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* $Id: rbgdkglpixmap.c,v 1.3 2003/08/20 22:36:02 isambart Exp $ */ /* Gdk::GLPixmap Widget * Copyright (C) 2003 Vincent Isambart * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "rbgtkglext.h" #define _GL_PIXMAP(i) GDK_GL_PIXMAP(RVAL2GOBJ(i)) #define _GL_CONFIG(i) GDK_GL_CONFIG(RVAL2GOBJ(i)) #define _PIXMAP(i) GDK_PIXMAP(RVAL2GOBJ(i)) #define _SELF(i) _GL_PIXMAP(i) static VALUE glpixmap_initialize(self, glconfig, pixmap) VALUE self, glconfig, pixmap; { G_INITIALIZE(self, gdk_gl_pixmap_new(_GL_CONFIG(glconfig), _PIXMAP(pixmap), NULL)); return Qnil; } static VALUE glpixmap_destroy(self) VALUE self; { gdk_gl_pixmap_destroy(_SELF(self)); return Qnil; } static VALUE glpixmap_get_pixmap(self) VALUE self; { return GOBJ2RVAL(gdk_gl_pixmap_get_pixmap(_SELF(self))); } void Init_gtkglext_gdk_glpixmap(void) { /* Gdk::GLPixmap */ VALUE GLPixmap = G_DEF_CLASS(GDK_TYPE_GL_PIXMAP, "GLPixmap", mGdk); rb_define_method(GLPixmap, "initialize", glpixmap_initialize, 3); rb_define_method(GLPixmap, "destroy", glpixmap_destroy, 0); rb_define_method(GLPixmap, "pixmap", glpixmap_get_pixmap, 0); }