class Fox::FXGLObject
Basic OpenGL object.
Public Class Methods
Source
SWIGINTERN VALUE
_wrap_new_FXGLObject(int argc, VALUE *argv, VALUE self) {
FXGLObject *result = 0 ;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
{
result = (FXGLObject *)new_FXGLObject();
DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
if(rb_block_given_p()){
rb_yield(self);
}
}
return self;
fail:
return Qnil;
}
Source
# File rdoc-sources/FXGLObject.rb, line 9 def initialize # :yields: theGLObject end
Return an initialized FXGLObject instance.
Public Instance Methods
Source
SWIGINTERN VALUE
_wrap_FXGLObject_bounds(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
FXRangef result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject *","bounds", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
result = FXGLObject_bounds(arg1);
{
FXRangef* resultptr = new FXRangef(result);
vresult = FXRbGetRubyObj(resultptr, "FXRangef *");
}
return vresult;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_canDelete(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
FXbool result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject const *","canDelete", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
result = (FXbool)FXGLObject_canDelete((FXGLObject const *)arg1);
vresult = result ? Qtrue : Qfalse;
return vresult;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_canDrag(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
FXbool result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject const *","canDrag", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
result = (FXbool)FXGLObject_canDrag((FXGLObject const *)arg1);
vresult = result ? Qtrue : Qfalse;
return vresult;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_copy(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
FXGLObject *result = 0 ;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject *","copy", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
result = (FXGLObject *)FXGLObject_copy(arg1);
{
swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXGLObject, (void **) &result);
vresult = FXRbGetRubyObj(result, ty);
}
return vresult;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_drag(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
FXGLViewer *arg2 = (FXGLViewer *) 0 ;
FXint arg3 ;
FXint arg4 ;
FXint arg5 ;
FXint arg6 ;
void *argp1 = 0 ;
int res1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
FXbool result;
VALUE vresult = Qnil;
if ((argc < 5) || (argc > 5)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 5)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject *","drag", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXGLViewer, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXGLViewer *","drag", 2, argv[0] ));
}
arg2 = reinterpret_cast< FXGLViewer * >(argp2);
arg3 = NUM2INT(argv[1]);
arg4 = NUM2INT(argv[2]);
arg5 = NUM2INT(argv[3]);
arg6 = NUM2INT(argv[4]);
result = (FXbool)FXGLObject_drag(arg1,arg2,arg3,arg4,arg5,arg6);
vresult = result ? Qtrue : Qfalse;
return vresult;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_draw(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
FXGLViewer *arg2 = (FXGLViewer *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject *","draw", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXGLViewer, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXGLViewer *","draw", 2, argv[0] ));
}
arg2 = reinterpret_cast< FXGLViewer * >(argp2);
FXGLObject_draw(arg1,arg2);
return Qnil;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_hit(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
FXGLViewer *arg2 = (FXGLViewer *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject *","hit", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXGLViewer, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXGLViewer *","hit", 2, argv[0] ));
}
arg2 = reinterpret_cast< FXGLViewer * >(argp2);
FXGLObject_hit(arg1,arg2);
return Qnil;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_identify(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
FXuint *arg2 = (FXuint *) 0 ;
FXint arg3 ;
void *argp1 = 0 ;
int res1 = 0 ;
FXGLObject *result = 0 ;
VALUE vresult = Qnil;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject *","identify", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
{
Check_Type(argv[0], T_ARRAY);
FXMALLOC(&arg2,FXuint,RARRAY_LEN(argv[0]));
arg3=static_cast<FXint>(RARRAY_LEN(argv[0]));
for(FXint i=0; i<arg3; i++){
arg2[i]=NUM2UINT(rb_ary_entry(argv[0],i));
}
}
result = (FXGLObject *)FXGLObject_identify(arg1,arg2,arg3);
{
swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXGLObject, (void **) &result);
vresult = FXRbGetRubyObj(result, ty);
}
{
FXFREE(&arg2);
}
return vresult;
fail:
{
FXFREE(&arg2);
}
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_load(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
FXStream *arg2 = 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject *","load", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
res2 = SWIG_ConvertPtr(argv[0], &argp2, SWIGTYPE_p_FXStream, 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXStream &","load", 2, argv[0] ));
}
if (!argp2) {
SWIG_exception_fail(SWIG_ValueError, Ruby_Format_TypeError("invalid null reference ", "FXStream &","load", 2, argv[0]));
}
arg2 = reinterpret_cast< FXStream * >(argp2);
FXGLObject_load(arg1,*arg2);
return Qnil;
fail:
return Qnil;
}
Source
SWIGINTERN VALUE
_wrap_FXGLObject_save(int argc, VALUE *argv, VALUE self) {
FXGLObject *arg1 = (FXGLObject *) 0 ;
FXStream *arg2 = 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXGLObject, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXGLObject const *","save", 1, self ));
}
arg1 = reinterpret_cast< FXGLObject * >(argp1);
res2 = SWIG_ConvertPtr(argv[0], &argp2, SWIGTYPE_p_FXStream, 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXStream &","save", 2, argv[0] ));
}
if (!argp2) {
SWIG_exception_fail(SWIG_ValueError, Ruby_Format_TypeError("invalid null reference ", "FXStream &","save", 2, argv[0]));
}
arg2 = reinterpret_cast< FXStream * >(argp2);
FXGLObject_save((FXGLObject const *)arg1,*arg2);
return Qnil;
fail:
return Qnil;
}