/*********************************************************************** * FXRuby -- the Ruby language bindings for the FOX GUI toolkit. * Copyright (c) 2001-2003 by J. 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@users.sourceforge.net". ***********************************************************************/ /*********************************************************************** * $Id: FXRbApp.h 2335 2006-01-28 02:33:03Z 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=1+RARRAY(ary)->len; \ if(FXMALLOC(&argv,char*,argc+1)){ \ argv[0]="foo"; \ for(i=1;icls::init(argc,argv,connect); \ while(RARRAY(ary)->len!=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; ilen+1; \ for(i=1; i