/*********************************************************************** * FXRuby -- the Ruby language bindings for the FOX GUI toolkit. * Copyright (c) 2001-2009 by Lyle Johnson. All Rights Reserved. * * 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 * * For further information please contact the author by e-mail * at "lyle@lylejohnson.name". ***********************************************************************/ /*********************************************************************** * $Id: FXRbApp.h 2927 2008-12-29 19:16:57Z lyle $ ***********************************************************************/ #ifndef FXRBAPP_H #define FXRBAPP_H #define DECLARE_FXAPP_STUBS(cls) \ inline void cls ## _destroy(cls *self){ \ self->cls::destroy(); \ } \ inline void cls ## _detach(cls *self){ \ self->cls::detach(); \ } \ inline void cls ## _create(cls *self){ \ self->cls::create(); \ } \ static void cls ## _init(cls* self,VALUE ary,bool connect){ \ int i; \ char **argv; \ int argc=static_cast(1+RARRAY_LEN(ary)); \ if(FXMALLOC(&argv,char*,argc+1)){ \ argv[0]=const_cast("foo"); \ for(i=1;icls::init(argc,argv,connect); \ while(RARRAY_LEN(ary)!=0){ \ rb_ary_pop(ary); \ } \ for(i=1;icls::exit(code); \ } /** * For C/C++ applications, the argument count (argc) will always be at least * one, and the first element of the argument array (argv[0]) will contain * the program name. So if you type something like this: * * myprogram one two three * * then argc will be four (4) and argv will contain "myprogram", "one", * "two" and "three". * * For Ruby applications, the size and contents of the argument array (ARGV) * just correspond to the application arguments; so if you type something like * this: * * ruby myprogram.rb one two three * * then the ARGV will have three elements ("one", "two" and "three"). */ #define IMPLEMENT_FXAPP_STUBS(cls) \ void cls::create(){ \ FXRbCallVoidMethod(this,rb_intern("create")); \ } \ void cls::detach(){ \ FXRbCallVoidMethod(this,rb_intern("detach")); \ } \ void cls::destroy(){ \ FXRbCallVoidMethod(this,rb_intern("destroy")); \ } \ void cls::init(int& argc,char** argv,bool connect){ \ int i; \ VALUE ary=rb_ary_new(); \ for(i=1; i(RARRAY_LEN(ary)+1); \ for(i=1; i