class Fox::FXRulerView

Public Class Methods

new(*args) click to toggle source
SWIGINTERN VALUE
_wrap_new_FXRulerView(int argc, VALUE *argv, VALUE self) {
  FXComposite *arg1 = (FXComposite *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 = (FXSelector) 0 ;
  FXuint arg4 = (FXuint) 0 ;
  FXint arg5 = (FXint) 0 ;
  FXint arg6 = (FXint) 0 ;
  FXint arg7 = (FXint) 0 ;
  FXint arg8 = (FXint) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  FXRulerView *result = 0 ;
  
  if ((argc < 1) || (argc > 8)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(argv[0], &argp1,SWIGTYPE_p_FXComposite, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXComposite *","FXRulerView", 1, argv[0] )); 
  }
  arg1 = reinterpret_cast< FXComposite * >(argp1);
  if (argc > 1) {
    res2 = SWIG_ConvertPtr(argv[1], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
    if (!SWIG_IsOK(res2)) {
      SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","FXRulerView", 2, argv[1] )); 
    }
    arg2 = reinterpret_cast< FXObject * >(argp2);
  }
  if (argc > 2) {
    arg3 = NUM2UINT(argv[2]);
  }
  if (argc > 3) {
    arg4 = NUM2UINT(argv[3]);
  }
  if (argc > 4) {
    arg5 = NUM2INT(argv[4]);
  }
  if (argc > 5) {
    arg6 = NUM2INT(argv[5]);
  }
  if (argc > 6) {
    arg7 = NUM2INT(argv[6]);
  }
  if (argc > 7) {
    arg8 = NUM2INT(argv[7]);
  }
  {
    if (!arg1) {
      SWIG_exception(SWIG_ValueError,"Received a NULL pointer.");
    }
  }
  {
    result = (FXRulerView *)new_FXRulerView(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8);
    DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result);
    if(rb_block_given_p()){
      rb_yield(self);
    }
  }
  return self;
fail:
  return Qnil;
}
new(p, *args, &blk) click to toggle source
# File lib/fox16/kwargs.rb, line 713
def initialize(p, *args, &blk)
  argument_names = %w{target selector opts x y width height}
  default_params = { :target => nil, :selector => 0, :opts => 0, :x => 0, :y => 0, :width => 0, :height => 0 }
  params = {}
  params = args.pop if args.last.is_a? Hash
  args.each_with_index { |e, i| params[argument_names[i].intern] = e }
  params.keys.each { |key| raise ArgumentError, "Unrecognized parameter #{key}" unless default_params.keys.include?(key) }
  params = default_params.merge(params)
  old_initialize(p, params[:target], params[:selector], params[:opts], params[:x], params[:y], params[:width], params[:height], &blk)
end
Also aliased as: old_initialize

Public Instance Methods

arrowPosX(*args)
Alias for: getArrowPosX
arrowPosX=(*args)
Alias for: setArrowPosX
arrowPosY(*args)
Alias for: getArrowPosY
arrowPosY=(*args)
Alias for: setArrowPosY
canFocus(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_canFocus(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  bool 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","canFocus", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (bool)FXRulerView_canFocus((FXRulerView const *)arg1);
  vresult = SWIG_From_bool(static_cast< bool >(result));
  return vresult;
fail:
  return Qnil;
}
changeFocus(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_changeFocus(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXWindow *arg2 = (FXWindow *) 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","changeFocus", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXWindow, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXWindow *","changeFocus", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXWindow * >(argp2);
  FXRulerView_changeFocus(arg1,arg2);
  return Qnil;
fail:
  return Qnil;
}
clearShape(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_clearShape(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","clearShape", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_clearShape(arg1);
  return Qnil;
fail:
  return Qnil;
}
contains(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_contains(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXint arg3 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  bool result;
  VALUE vresult = Qnil;
  
  if ((argc < 2) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","contains", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  arg3 = NUM2INT(argv[1]);
  result = (bool)FXRulerView_contains((FXRulerView const *)arg1,arg2,arg3);
  vresult = SWIG_From_bool(static_cast< bool >(result));
  return vresult;
fail:
  return Qnil;
}
create(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_create(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","create", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_create(arg1);
  return Qnil;
fail:
  return Qnil;
}
destroy(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_destroy(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","destroy", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_destroy(arg1);
  return Qnil;
fail:
  return Qnil;
}
detach(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_detach(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","detach", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_detach(arg1);
  return Qnil;
fail:
  return Qnil;
}
disable(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_disable(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","disable", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_disable(arg1);
  return Qnil;
fail:
  return Qnil;
}
documentColor(*args)
Alias for: getDocumentColor
documentColor=(*args)
Alias for: setDocumentColor
documentHeight(*args)
Alias for: getDocumentHeight
documentHeight=(*args)
Alias for: setDocumentHeight
documentWidth(*args)
Alias for: getDocumentWidth
documentWidth=(*args)
Alias for: setDocumentWidth
documentX(*args)
Alias for: getDocumentX
documentY(*args)
Alias for: getDocumentY
doesSaveUnder(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  bool 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","doesSaveUnder", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (bool)FXRulerView_doesSaveUnder((FXRulerView const *)arg1);
  vresult = SWIG_From_bool(static_cast< bool >(result));
  return vresult;
fail:
  return Qnil;
}
dropDisable(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_dropDisable(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","dropDisable", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_dropDisable(arg1);
  return Qnil;
fail:
  return Qnil;
}
dropEnable(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_dropEnable(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","dropEnable", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_dropEnable(arg1);
  return Qnil;
fail:
  return Qnil;
}
enable(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_enable(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","enable", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_enable(arg1);
  return Qnil;
fail:
  return Qnil;
}
getArrowPosX(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getArrowPosX(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getArrowPosX", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getArrowPosX();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: arrowPosX
getArrowPosY(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getArrowPosY(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getArrowPosY", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getArrowPosY();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: arrowPosY
getContentHeight(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getContentHeight(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getContentHeight", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)FXRulerView_getContentHeight(arg1);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
getContentWidth(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getContentWidth(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getContentWidth", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)FXRulerView_getContentWidth(arg1);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
getDefaultHeight(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getDefaultHeight(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getDefaultHeight", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)FXRulerView_getDefaultHeight(arg1);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
getDefaultWidth(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getDefaultWidth(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getDefaultWidth", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)FXRulerView_getDefaultWidth(arg1);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
getDocumentColor(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getDocumentColor(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXColor 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getDocumentColor", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXColor)((FXRulerView const *)arg1)->getDocumentColor();
  vresult = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: documentColor
getDocumentHeight(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getDocumentHeight(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getDocumentHeight", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getDocumentHeight();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: documentHeight
getDocumentWidth(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getDocumentWidth(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getDocumentWidth", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getDocumentWidth();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: documentWidth
getDocumentX(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getDocumentX(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getDocumentX", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getDocumentX();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: documentX
getDocumentY(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getDocumentY(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getDocumentY", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getDocumentY();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: documentY
getHAlignment(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHAlignment(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXuint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHAlignment", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXuint)((FXRulerView const *)arg1)->getHAlignment();
  vresult = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hAlignment
getHEdgeSpacing(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHEdgeSpacing(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHEdgeSpacing", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getHEdgeSpacing();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hEdgeSpacing
getHMajorTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHMajorTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHMajorTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getHMajorTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hMajorTicks
getHMarginLower(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHMarginLower(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHMarginLower", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getHMarginLower();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hMarginLower
getHMarginUpper(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHMarginUpper(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHMarginUpper", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getHMarginUpper();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hMarginUpper
getHMediumTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHMediumTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHMediumTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getHMediumTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hMediumTicks
getHNumberTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHNumberTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHNumberTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getHNumberTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hNumberTicks
getHPixelsPerTick(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHPixelsPerTick(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXdouble 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHPixelPerTick", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXdouble)((FXRulerView const *)arg1)->getHPixelPerTick();
  vresult = SWIG_From_double(static_cast< double >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hPixelsPerTick
getHRulerFont(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHRulerFont(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXFont *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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHRulerFont", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXFont *)((FXRulerView const *)arg1)->getHRulerFont();
  {
    swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXFont, (void **) &result);
    vresult = FXRbGetRubyObj(result, ty);
  }
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hRulerFont
getHRulerStyle(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHRulerStyle(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXuint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHRulerStyle", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXuint)((FXRulerView const *)arg1)->getHRulerStyle();
  vresult = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hRulerStyle
getHTinyTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHTinyTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHTinyTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getHTinyTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: hTinyTicks
getHeightForWidth(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHeightForWidth(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint result;
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getHeightForWidth", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  result = (FXint)FXRulerView_getHeightForWidth(arg1,arg2);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
getHelpText(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getHelpText(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXString *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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getHelpText", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXString *) &((FXRulerView const *)arg1)->getHelpText();
  vresult = to_ruby(result->text());
  return vresult;
fail:
  return Qnil;
}
Also aliased as: helpText
getTipText(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getTipText(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXString *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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getTipText", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXString *) &((FXRulerView const *)arg1)->getTipText();
  vresult = to_ruby(result->text());
  return vresult;
fail:
  return Qnil;
}
Also aliased as: tipText
getVAlignment(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVAlignment(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXuint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVAlignment", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXuint)((FXRulerView const *)arg1)->getVAlignment();
  vresult = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vAlignment
getVEdgeSpacing(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVEdgeSpacing(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVEdgeSpacing", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getVEdgeSpacing();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vEdgeSpacing
getVMajorTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVMajorTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVMajorTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getVMajorTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vMajorTicks
getVMarginLower(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVMarginLower(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVMarginLower", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getVMarginLower();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vMarginLower
getVMarginUpper(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVMarginUpper(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVMarginUpper", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getVMarginUpper();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vMarginUpper
getVMediumTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVMediumTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVMediumTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getVMediumTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vMediumTicks
getVNumberTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVNumberTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVNumberTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getVNumberTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vNumberTicks
getVPixelsPerTick(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVPixelsPerTick(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXdouble 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVPixelPerTick", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXdouble)((FXRulerView const *)arg1)->getVPixelPerTick();
  vresult = SWIG_From_double(static_cast< double >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vPixelsPerTick
getVRulerFont(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVRulerFont(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXFont *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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVRulerFont", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXFont *)((FXRulerView const *)arg1)->getVRulerFont();
  {
    swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXFont, (void **) &result);
    vresult = FXRbGetRubyObj(result, ty);
  }
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vRulerFont
getVRulerStyle(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVRulerStyle(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXuint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVRulerStyle", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXuint)((FXRulerView const *)arg1)->getVRulerStyle();
  vresult = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vRulerStyle
getVTinyTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getVTinyTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","getVTinyTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)((FXRulerView const *)arg1)->getVTinyTicks();
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
Also aliased as: vTinyTicks
getViewportHeight(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getViewportHeight(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getViewportHeight", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)FXRulerView_getViewportHeight(arg1);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
getViewportWidth(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getViewportWidth(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getViewportWidth", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXint)FXRulerView_getViewportWidth(arg1);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
getWidthForHeight(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_getWidthForHeight(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXint result;
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","getWidthForHeight", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  result = (FXint)FXRulerView_getWidthForHeight(arg1,arg2);
  vresult = SWIG_From_int(static_cast< int >(result));
  return vresult;
fail:
  return Qnil;
}
hAlignment(*args)
Alias for: getHAlignment
hAlignment=(*args)
Alias for: setHAlignment
hEdgeSpacing(*args)
Alias for: getHEdgeSpacing
hEdgeSpacing=(*args)
Alias for: setHEdgeSpacing
hMajorTicks(*args)
Alias for: getHMajorTicks
hMajorTicks=(*args)
Alias for: setHMajorTicks
hMarginLower(*args)
Alias for: getHMarginLower
hMarginLower=(*args)
Alias for: setHMarginLower
hMarginUpper(*args)
Alias for: getHMarginUpper
hMarginUpper=(*args)
Alias for: setHMarginUpper
hMediumTicks(*args)
Alias for: getHMediumTicks
hMediumTicks=(*args)
Alias for: setHMediumTicks
hNumberTicks(*args)
Alias for: getHNumberTicks
hNumberTicks=(*args)
Alias for: setHNumberTicks
hPixelsPerTick(*args)
Alias for: getHPixelsPerTick
hPixelsPerTick=(*args)
Alias for: setHPixelsPerTick
hRulerFont(*args)
Alias for: getHRulerFont
hRulerFont=(*args)
Alias for: setHRulerFont
hRulerStyle(*args)
Alias for: getHRulerStyle
hRulerStyle=(*args)
Alias for: setHRulerStyle
hTinyTicks(*args)
Alias for: getHTinyTicks
hTinyTicks=(*args)
Alias for: setHTinyTicks
helpText(*args)
Alias for: getHelpText
helpText=(*args)
Alias for: setHelpText
hide(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_hide(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","hide", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_hide(arg1);
  return Qnil;
fail:
  return Qnil;
}
horizontalRuler(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_horizontalRuler(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXRuler *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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","horizontalRuler", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXRuler *)((FXRulerView const *)arg1)->horizontalRuler();
  vresult = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FXRuler, 0 |  0 );
  return vresult;
fail:
  return Qnil;
}
isComposite(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_isComposite(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  bool 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","isComposite", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (bool)FXRulerView_isComposite((FXRulerView const *)arg1);
  vresult = SWIG_From_bool(static_cast< bool >(result));
  return vresult;
fail:
  return Qnil;
}
killFocus(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_killFocus(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","killFocus", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_killFocus(arg1);
  return Qnil;
fail:
  return Qnil;
}
layout(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_layout(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","layout", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_layout(arg1);
  return Qnil;
fail:
  return Qnil;
}
load(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_load(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","load", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(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);
  FXRulerView_load(arg1,*arg2);
  return Qnil;
fail:
  return Qnil;
}
lower(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_lower(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","lower", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_lower(arg1);
  return Qnil;
fail:
  return Qnil;
}
move(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_move(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXint arg3 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 2) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","move", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  arg3 = NUM2INT(argv[1]);
  FXRulerView_move(arg1,arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
old_initialize(p, *args, &blk)
Alias for: new
onCmdGetHelp(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onCmdGetHelp(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  int res4 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onCmdGetHelp", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onCmdGetHelp", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  res4 = SWIG_ConvertPtr(argv[2],SWIG_as_voidptrptr(&arg4), 0, 0);
  if (!SWIG_IsOK(res4)) {
    SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","onCmdGetHelp", 4, argv[2] )); 
  }
  result = (long)(arg1)->onCmdGetHelp(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onCmdGetTip(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onCmdGetTip(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  int res4 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onCmdGetTip", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onCmdGetTip", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  res4 = SWIG_ConvertPtr(argv[2],SWIG_as_voidptrptr(&arg4), 0, 0);
  if (!SWIG_IsOK(res4)) {
    SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","onCmdGetTip", 4, argv[2] )); 
  }
  result = (long)(arg1)->onCmdGetTip(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onCmdSetHelp(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onCmdSetHelp(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  int res4 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onCmdSetHelp", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onCmdSetHelp", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  res4 = SWIG_ConvertPtr(argv[2],SWIG_as_voidptrptr(&arg4), 0, 0);
  if (!SWIG_IsOK(res4)) {
    SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","onCmdSetHelp", 4, argv[2] )); 
  }
  result = (long)(arg1)->onCmdSetHelp(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onCmdSetTip(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onCmdSetTip(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  int res4 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onCmdSetTip", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onCmdSetTip", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  res4 = SWIG_ConvertPtr(argv[2],SWIG_as_voidptrptr(&arg4), 0, 0);
  if (!SWIG_IsOK(res4)) {
    SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","onCmdSetTip", 4, argv[2] )); 
  }
  result = (long)(arg1)->onCmdSetTip(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onDocChanged(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onDocChanged(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  int res4 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onDocChanged", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onDocChanged", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  res4 = SWIG_ConvertPtr(argv[2],SWIG_as_voidptrptr(&arg4), 0, 0);
  if (!SWIG_IsOK(res4)) {
    SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","onDocChanged", 4, argv[2] )); 
  }
  result = (long)(arg1)->onDocChanged(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onMotion(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onMotion(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onMotion", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onMotion", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  arg4 = to_FXEvent(argv[2]);
  result = (long)(arg1)->onMotion(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onPaint(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onPaint(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onPaint", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onPaint", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  arg4 = to_FXEvent(argv[2]);
  result = (long)(arg1)->onPaint(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onQueryHelp(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onQueryHelp(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  int res4 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onQueryHelp", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onQueryHelp", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  res4 = SWIG_ConvertPtr(argv[2],SWIG_as_voidptrptr(&arg4), 0, 0);
  if (!SWIG_IsOK(res4)) {
    SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","onQueryHelp", 4, argv[2] )); 
  }
  result = (long)(arg1)->onQueryHelp(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
onQueryTip(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_onQueryTip(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXObject *arg2 = (FXObject *) 0 ;
  FXSelector arg3 ;
  void *arg4 = (void *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  int res4 ;
  long result;
  VALUE vresult = Qnil;
  
  if ((argc < 3) || (argc > 3)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","onQueryTip", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXObject, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXObject *","onQueryTip", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXObject * >(argp2);
  arg3 = NUM2UINT(argv[1]);
  res4 = SWIG_ConvertPtr(argv[2],SWIG_as_voidptrptr(&arg4), 0, 0);
  if (!SWIG_IsOK(res4)) {
    SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","onQueryTip", 4, argv[2] )); 
  }
  result = (long)(arg1)->onQueryTip(arg2,arg3,arg4);
  vresult = SWIG_From_long(static_cast< long >(result));
  return vresult;
fail:
  return Qnil;
}
position(*args) click to toggle source
SWIGINTERN VALUE _wrap_FXRulerView_position(int nargs, VALUE *args, VALUE self) {
  int argc;
  VALUE argv[6];
  int ii;
  
  argc = nargs + 1;
  argv[0] = self;
  if (argc > 6) SWIG_fail;
  for (ii = 1; (ii < argc); ++ii) {
    argv[ii] = args[ii-1];
  }
  if (argc == 1) {
    int _v;
    void *vptr = 0;
    int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRulerView, 0);
    _v = SWIG_CheckState(res);
    if (_v) {
      return _wrap_FXRulerView_position__SWIG_1(nargs, args, self);
    }
  }
  if (argc == 5) {
    int _v;
    void *vptr = 0;
    int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRulerView, 0);
    _v = SWIG_CheckState(res);
    if (_v) {
      {
        _v = (TYPE(argv[1]) == T_FIXNUM || TYPE(argv[1]) == T_BIGNUM) ? 1 : 0;
      }
      if (_v) {
        {
          _v = (TYPE(argv[2]) == T_FIXNUM || TYPE(argv[2]) == T_BIGNUM) ? 1 : 0;
        }
        if (_v) {
          {
            _v = (TYPE(argv[3]) == T_FIXNUM || TYPE(argv[3]) == T_BIGNUM) ? 1 : 0;
          }
          if (_v) {
            {
              _v = (TYPE(argv[4]) == T_FIXNUM || TYPE(argv[4]) == T_BIGNUM) ? 1 : 0;
            }
            if (_v) {
              return _wrap_FXRulerView_position__SWIG_0(nargs, args, self);
            }
          }
        }
      }
    }
  }
  
fail:
  Ruby_Format_OverloadedError( argc, 6, "position", 
    "    void position(FXint x, FXint y, FXint w, FXint h)\n"
    "    VALUE position()\n");
  
  return Qnil;
}
raiseWindow(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_raiseWindow(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","raise", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_raise(arg1);
  return Qnil;
fail:
  return Qnil;
}
recalc(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_recalc(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","recalc", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_recalc(arg1);
  return Qnil;
fail:
  return Qnil;
}
reparent(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_reparent(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXWindow *arg2 = (FXWindow *) 0 ;
  FXWindow *arg3 = (FXWindow *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  void *argp3 = 0 ;
  int res3 = 0 ;
  
  if ((argc < 2) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","reparent", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXWindow, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXWindow *","reparent", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXWindow * >(argp2);
  res3 = SWIG_ConvertPtr(argv[1], &argp3,SWIGTYPE_p_FXWindow, 0 |  0 );
  if (!SWIG_IsOK(res3)) {
    SWIG_exception_fail(SWIG_ArgError(res3), Ruby_Format_TypeError( "", "FXWindow *","reparent", 3, argv[1] )); 
  }
  arg3 = reinterpret_cast< FXWindow * >(argp3);
  FXRulerView_reparent(arg1,arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
resize(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_resize(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXint arg3 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 2) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","resize", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  arg3 = NUM2INT(argv[1]);
  FXRulerView_resize(arg1,arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
save(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_save(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","save", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(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);
  FXRulerView_save((FXRulerView const *)arg1,*arg2);
  return Qnil;
fail:
  return Qnil;
}
setArrowPosX(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setArrowPosX(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  void *argp1 = 0 ;
  int res1 = 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setArrowPosX", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  (arg1)->setArrowPosX(arg2);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: arrowPosX=
setArrowPosY(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setArrowPosY(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  void *argp1 = 0 ;
  int res1 = 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setArrowPosY", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  (arg1)->setArrowPosY(arg2);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: arrowPosY=
setBackColor(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setBackColor(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXColor arg2 ;
  void *argp1 = 0 ;
  int res1 = 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setBackColor", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = to_FXColor(argv[0]);
  FXRulerView_setBackColor(arg1,arg2);
  return Qnil;
fail:
  return Qnil;
}
setDefault(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setDefault(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXbool arg2 = (FXbool) 1 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 0) || (argc > 1)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setDefault", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  if (argc > 0) {
    arg2 = to_FXbool(argv[0]);
  }
  FXRulerView_setDefault(arg1,arg2);
  return Qnil;
fail:
  return Qnil;
}
setDocumentColor(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setDocumentColor(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXColor arg2 ;
  void *argp1 = 0 ;
  int res1 = 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setDocumentColor", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = to_FXColor(argv[0]);
  (arg1)->setDocumentColor(arg2);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: documentColor=
setDocumentHeight(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setDocumentHeight(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setDocumentHeight", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setDocumentHeight(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: documentHeight=
setDocumentWidth(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setDocumentWidth(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setDocumentWidth", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setDocumentWidth(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: documentWidth=
setFocus(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setFocus(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setFocus", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_setFocus(arg1);
  return Qnil;
fail:
  return Qnil;
}
setHAlignment(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHAlignment(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXuint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHAlignment", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2UINT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHAlignment(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hAlignment=
setHEdgeSpacing(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHEdgeSpacing(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHEdgeSpacing", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHEdgeSpacing(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hEdgeSpacing=
setHMajorTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHMajorTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHMajorTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHMajorTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hMajorTicks=
setHMarginLower(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHMarginLower(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHMarginLower", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHMarginLower(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hMarginLower=
setHMarginUpper(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHMarginUpper(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHMarginUpper", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHMarginUpper(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hMarginUpper=
setHMediumTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHMediumTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHMediumTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHMediumTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hMediumTicks=
setHNumberTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHNumberTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHNumberTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHNumberTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hNumberTicks=
setHPixelsPerTick(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHPixelsPerTick(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXdouble arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  double val2 ;
  int ecode2 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHPixelPerTick", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  ecode2 = SWIG_AsVal_double(argv[0], &val2);
  if (!SWIG_IsOK(ecode2)) {
    SWIG_exception_fail(SWIG_ArgError(ecode2), Ruby_Format_TypeError( "", "FXdouble","setHPixelPerTick", 2, argv[0] ));
  } 
  arg2 = static_cast< FXdouble >(val2);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHPixelPerTick(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hPixelsPerTick=
setHRulerFont(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHRulerFont(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXFont *arg2 = (FXFont *) 0 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHRulerFont", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXFont, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXFont *","setHRulerFont", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXFont * >(argp2);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHRulerFont(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hRulerFont=
setHRulerStyle(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHRulerStyle(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXuint arg2 ;
  void *argp1 = 0 ;
  int res1 = 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHRulerStyle", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2UINT(argv[0]);
  (arg1)->setHRulerStyle(arg2);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hRulerStyle=
setHTinyTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHTinyTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHTinyTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setHTinyTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: hTinyTicks=
setHelpText(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setHelpText(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXString *arg2 = 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  SwigValueWrapper< FXString > p2 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setHelpText", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  p2 = to_FXString(argv[0]); arg2 = &p2;
  (arg1)->setHelpText((FXString const &)*arg2);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: helpText=
setShape(*args) click to toggle source
SWIGINTERN VALUE _wrap_FXRulerView_setShape(int nargs, VALUE *args, VALUE self) {
  int argc;
  VALUE argv[3];
  int ii;
  
  argc = nargs + 1;
  argv[0] = self;
  if (argc > 3) SWIG_fail;
  for (ii = 1; (ii < argc); ++ii) {
    argv[ii] = args[ii-1];
  }
  if (argc == 2) {
    int _v;
    void *vptr = 0;
    int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRulerView, 0);
    _v = SWIG_CheckState(res);
    if (_v) {
      void *vptr = 0;
      int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_FXRegion, 0);
      _v = SWIG_CheckState(res);
      if (_v) {
        return _wrap_FXRulerView_setShape__SWIG_0(nargs, args, self);
      }
    }
  }
  if (argc == 2) {
    int _v;
    void *vptr = 0;
    int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRulerView, 0);
    _v = SWIG_CheckState(res);
    if (_v) {
      void *vptr = 0;
      int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_FXBitmap, 0);
      _v = SWIG_CheckState(res);
      if (_v) {
        return _wrap_FXRulerView_setShape__SWIG_1(nargs, args, self);
      }
    }
  }
  if (argc == 2) {
    int _v;
    void *vptr = 0;
    int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FXRulerView, 0);
    _v = SWIG_CheckState(res);
    if (_v) {
      void *vptr = 0;
      int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_FXIcon, 0);
      _v = SWIG_CheckState(res);
      if (_v) {
        return _wrap_FXRulerView_setShape__SWIG_2(nargs, args, self);
      }
    }
  }
  
fail:
  Ruby_Format_OverloadedError( argc, 3, "setShape", 
    "    void setShape(FXRegion const &region)\n"
    "    void setShape(FXBitmap *bitmap)\n"
    "    void setShape(FXIcon *icon)\n");
  
  return Qnil;
}
setTipText(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setTipText(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXString *arg2 = 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  SwigValueWrapper< FXString > p2 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setTipText", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  p2 = to_FXString(argv[0]); arg2 = &p2;
  (arg1)->setTipText((FXString const &)*arg2);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: tipText=
setVAlignment(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVAlignment(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXuint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVAlignment", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2UINT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVAlignment(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vAlignment=
setVEdgeSpacing(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVEdgeSpacing(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVEdgeSpacing", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVEdgeSpacing(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vEdgeSpacing=
setVMajorTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVMajorTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVMajorTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVMajorTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vMajorTicks=
setVMarginLower(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVMarginLower(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVMarginLower", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVMarginLower(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vMarginLower=
setVMarginUpper(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVMarginUpper(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVMarginUpper", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVMarginUpper(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vMarginUpper=
setVMediumTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVMediumTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVMediumTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVMediumTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vMediumTicks=
setVNumberTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVNumberTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVNumberTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVNumberTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vNumberTicks=
setVPixelsPerTick(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVPixelsPerTick(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXdouble arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  double val2 ;
  int ecode2 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVPixelPerTick", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  ecode2 = SWIG_AsVal_double(argv[0], &val2);
  if (!SWIG_IsOK(ecode2)) {
    SWIG_exception_fail(SWIG_ArgError(ecode2), Ruby_Format_TypeError( "", "FXdouble","setVPixelPerTick", 2, argv[0] ));
  } 
  arg2 = static_cast< FXdouble >(val2);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVPixelPerTick(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vPixelsPerTick=
setVRulerFont(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVRulerFont(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXFont *arg2 = (FXFont *) 0 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  void *argp2 = 0 ;
  int res2 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVRulerFont", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  res2 = SWIG_ConvertPtr(argv[0], &argp2,SWIGTYPE_p_FXFont, 0 |  0 );
  if (!SWIG_IsOK(res2)) {
    SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "FXFont *","setVRulerFont", 2, argv[0] )); 
  }
  arg2 = reinterpret_cast< FXFont * >(argp2);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVRulerFont(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vRulerFont=
setVRulerStyle(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVRulerStyle(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXuint arg2 ;
  void *argp1 = 0 ;
  int res1 = 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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVRulerStyle", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2UINT(argv[0]);
  (arg1)->setVRulerStyle(arg2);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vRulerStyle=
setVTinyTicks(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_setVTinyTicks(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXint arg2 ;
  FXbool arg3 = (FXbool) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","setVTinyTicks", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NUM2INT(argv[0]);
  if (argc > 1) {
    arg3 = to_FXbool(argv[1]);
  }
  (arg1)->setVTinyTicks(arg2,arg3);
  return Qnil;
fail:
  return Qnil;
}
Also aliased as: vTinyTicks=
show(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_show(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  
  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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView *","show", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  FXRulerView_show(arg1);
  return Qnil;
fail:
  return Qnil;
}
tipText(*args)
Alias for: getTipText
tipText=(*args)
Alias for: setTipText
tr(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_tr(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  FXchar *arg2 = (FXchar *) 0 ;
  FXchar *arg3 = (FXchar *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXchar *result = 0 ;
  VALUE vresult = Qnil;
  
  if ((argc < 1) || (argc > 2)) {
    rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
  }
  res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","tr", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  arg2 = NIL_P(argv[0]) ? 0 : StringValuePtr(argv[0]);
  if (argc > 1) {
    arg3 = NIL_P(argv[1]) ? 0 : StringValuePtr(argv[1]);
  }
  result = (FXchar *)FXRulerView_tr((FXRulerView const *)arg1,(char const *)arg2,(char const *)arg3);
  vresult = SWIG_FromCharPtr((const char *)result);
  return vresult;
fail:
  return Qnil;
}
vAlignment(*args)
Alias for: getVAlignment
vAlignment=(*args)
Alias for: setVAlignment
vEdgeSpacing(*args)
Alias for: getVEdgeSpacing
vEdgeSpacing=(*args)
Alias for: setVEdgeSpacing
vMajorTicks(*args)
Alias for: getVMajorTicks
vMajorTicks=(*args)
Alias for: setVMajorTicks
vMarginLower(*args)
Alias for: getVMarginLower
vMarginLower=(*args)
Alias for: setVMarginLower
vMarginUpper(*args)
Alias for: getVMarginUpper
vMarginUpper=(*args)
Alias for: setVMarginUpper
vMediumTicks(*args)
Alias for: getVMediumTicks
vMediumTicks=(*args)
Alias for: setVMediumTicks
vNumberTicks(*args)
Alias for: getVNumberTicks
vNumberTicks=(*args)
Alias for: setVNumberTicks
vPixelsPerTick(*args)
Alias for: getVPixelsPerTick
vPixelsPerTick=(*args)
Alias for: setVPixelsPerTick
vRulerFont(*args)
Alias for: getVRulerFont
vRulerFont=(*args)
Alias for: setVRulerFont
vRulerStyle(*args)
Alias for: getVRulerStyle
vRulerStyle=(*args)
Alias for: setVRulerStyle
vTinyTicks(*args)
Alias for: getVTinyTicks
vTinyTicks=(*args)
Alias for: setVTinyTicks
verticalRuler(*args) click to toggle source
SWIGINTERN VALUE
_wrap_FXRulerView_verticalRuler(int argc, VALUE *argv, VALUE self) {
  FXRulerView *arg1 = (FXRulerView *) 0 ;
  void *argp1 = 0 ;
  int res1 = 0 ;
  FXRuler *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_FXRulerView, 0 |  0 );
  if (!SWIG_IsOK(res1)) {
    SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "FXRulerView const *","verticalRuler", 1, self )); 
  }
  arg1 = reinterpret_cast< FXRulerView * >(argp1);
  result = (FXRuler *)((FXRulerView const *)arg1)->verticalRuler();
  vresult = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FXRuler, 0 |  0 );
  return vresult;
fail:
  return Qnil;
}