ruby-iup 0.0.1-i386-mswin32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (138) hide show
  1. data/doc/README +10 -0
  2. data/doc/build_install.txt +77 -0
  3. data/examples/README +16 -0
  4. data/examples/ctrl/cbox.rb +221 -0
  5. data/examples/ctrl/checkboard.rb +33 -0
  6. data/examples/ctrl/degrade.rb +73 -0
  7. data/examples/ctrl/example1.rb +53 -0
  8. data/examples/ctrl/example2.rb +39 -0
  9. data/examples/ctrl/iupcolorbar.rb +95 -0
  10. data/examples/ctrl/iupcolorbrowser.rb +45 -0
  11. data/examples/ctrl/iupdial.rb +117 -0
  12. data/examples/ctrl/iupgauge.rb +242 -0
  13. data/examples/ctrl/iupgetcolor.rb +8 -0
  14. data/examples/ctrl/iupgetparam.rb +62 -0
  15. data/examples/ctrl/iupglcanvas.rb +172 -0
  16. data/examples/ctrl/iupmask.rb +15 -0
  17. data/examples/ctrl/iupmatrix.rb +39 -0
  18. data/examples/ctrl/iupplot2.rb +603 -0
  19. data/examples/ctrl/iuptabs.rb +22 -0
  20. data/examples/ctrl/iuptree.rb +190 -0
  21. data/examples/ctrl/iupval.rb +71 -0
  22. data/examples/ctrl/numbering.rb +46 -0
  23. data/examples/ctrl/sample.rb +166 -0
  24. data/examples/dlg/iupalarm.rb +14 -0
  25. data/examples/dlg/iupfiledlg.rb +19 -0
  26. data/examples/dlg/iupgetfile.rb +19 -0
  27. data/examples/dlg/iuplistdialog.rb +26 -0
  28. data/examples/dlg/iupmessage.rb +5 -0
  29. data/examples/dlg/iupscanf.rb +17 -0
  30. data/examples/elem/iupbutton.rb +197 -0
  31. data/examples/elem/iupcanvas.rb +27 -0
  32. data/examples/elem/iupcanvas2.rb +113 -0
  33. data/examples/elem/iupcanvas3.rb +62 -0
  34. data/examples/elem/iupdialog.rb +71 -0
  35. data/examples/elem/iupdialog2.rb +25 -0
  36. data/examples/elem/iupfill.rb +51 -0
  37. data/examples/elem/iupframe.rb +25 -0
  38. data/examples/elem/iuphbox.rb +68 -0
  39. data/examples/elem/iupimage.rb +113 -0
  40. data/examples/elem/iupitem.rb +60 -0
  41. data/examples/elem/iuplabel.rb +57 -0
  42. data/examples/elem/iuplist.rb +41 -0
  43. data/examples/elem/iuplist2.rb +125 -0
  44. data/examples/elem/iupmenu.rb +32 -0
  45. data/examples/elem/iupmultiline.rb +24 -0
  46. data/examples/elem/iupmultiline2.rb +156 -0
  47. data/examples/elem/iupradio.rb +32 -0
  48. data/examples/elem/iupseparator.rb +81 -0
  49. data/examples/elem/iupsubmenu.rb +85 -0
  50. data/examples/elem/iuptext.rb +61 -0
  51. data/examples/elem/iuptimer.rb +36 -0
  52. data/examples/elem/iuptoggle.rb +110 -0
  53. data/examples/elem/iupvbox.rb +87 -0
  54. data/examples/elem/iupzbox.rb +60 -0
  55. data/examples/elem/mdisample.rb +376 -0
  56. data/examples/elem/progressbar.rb +294 -0
  57. data/examples/elem/scrollbar.rb +66 -0
  58. data/examples/elem/tray.rb +90 -0
  59. data/examples/func/iupgetattribute.rb +32 -0
  60. data/examples/func/iupidle.rb +48 -0
  61. data/ext/extconf.rb +27 -0
  62. data/ext/iup-win32/cd.dll +0 -0
  63. data/ext/iup-win32/cd.lib +0 -0
  64. data/ext/iup-win32/cdcontextplus.dll +0 -0
  65. data/ext/iup-win32/cdcontextplus.lib +0 -0
  66. data/ext/iup-win32/cdlua51.lib +0 -0
  67. data/ext/iup-win32/cdluacontextplus51.lib +0 -0
  68. data/ext/iup-win32/cdluaim51.lib +0 -0
  69. data/ext/iup-win32/cdluapdf51.lib +0 -0
  70. data/ext/iup-win32/cdpdf.dll +0 -0
  71. data/ext/iup-win32/cdpdf.lib +0 -0
  72. data/ext/iup-win32/freetype6.dll +0 -0
  73. data/ext/iup-win32/freetype6.lib +0 -0
  74. data/ext/iup-win32/im.dll +0 -0
  75. data/ext/iup-win32/im_avi.dll +0 -0
  76. data/ext/iup-win32/im_capture.dll +0 -0
  77. data/ext/iup-win32/im_ecw.dll +0 -0
  78. data/ext/iup-win32/im_fftw.dll +0 -0
  79. data/ext/iup-win32/im_jp2.dll +0 -0
  80. data/ext/iup-win32/im_process.dll +0 -0
  81. data/ext/iup-win32/im_wmv.dll +0 -0
  82. data/ext/iup-win32/iup.dll +0 -0
  83. data/ext/iup-win32/iup.lib +0 -0
  84. data/ext/iup-win32/iup_pplot.dll +0 -0
  85. data/ext/iup-win32/iup_pplot.lib +0 -0
  86. data/ext/iup-win32/iupcd.dll +0 -0
  87. data/ext/iup-win32/iupcd.lib +0 -0
  88. data/ext/iup-win32/iupcontrols.dll +0 -0
  89. data/ext/iup-win32/iupcontrols.lib +0 -0
  90. data/ext/iup-win32/iupgl.dll +0 -0
  91. data/ext/iup-win32/iupgl.lib +0 -0
  92. data/ext/iup-win32/iupim.dll +0 -0
  93. data/ext/iup-win32/iupim.lib +0 -0
  94. data/ext/iup-win32/iupimglib.dll +0 -0
  95. data/ext/iup-win32/iupimglib.lib +0 -0
  96. data/ext/iup-win32/iuplua51.lib +0 -0
  97. data/ext/iup-win32/iuplua_pplot51.lib +0 -0
  98. data/ext/iup-win32/iupluacd51.lib +0 -0
  99. data/ext/iup-win32/iupluacontrols51.lib +0 -0
  100. data/ext/iup-win32/iupluagl51.lib +0 -0
  101. data/ext/iup-win32/iupluaim51.lib +0 -0
  102. data/ext/iup-win32/iupluaimglib51.lib +0 -0
  103. data/ext/iup-win32/iupluaole51.lib +0 -0
  104. data/ext/iup-win32/iupole.dll +0 -0
  105. data/ext/iup-win32/iupole.lib +0 -0
  106. data/ext/iup-win32/iupstub.lib +0 -0
  107. data/ext/iup-win32/pdflib.dll +0 -0
  108. data/ext/iup-win32/pdflib.lib +0 -0
  109. data/ext/iup.c +1261 -0
  110. data/ext/mkrf_conf.rb +72 -0
  111. data/ext/rb_cd.h +1525 -0
  112. data/ext/rb_iup.h +2446 -0
  113. data/ext/rb_iup_pplot.h +129 -0
  114. data/ext/rb_iupcb.h +13 -0
  115. data/ext/rb_iupcbox.h +40 -0
  116. data/ext/rb_iupcells.h +15 -0
  117. data/ext/rb_iupcolorbar.h +17 -0
  118. data/ext/rb_iupcompat.h +237 -0
  119. data/ext/rb_iupcontrols.h +28 -0
  120. data/ext/rb_iupdef.h +3 -0
  121. data/ext/rb_iupdial.h +24 -0
  122. data/ext/rb_iupgauge.h +15 -0
  123. data/ext/rb_iupgc.h +18 -0
  124. data/ext/rb_iupgetparam.h +72 -0
  125. data/ext/rb_iupgl.h +58 -0
  126. data/ext/rb_iupim.h +25 -0
  127. data/ext/rb_iupmask.h +189 -0
  128. data/ext/rb_iupmatrix.h +80 -0
  129. data/ext/rb_iupole.h +24 -0
  130. data/ext/rb_iupsbox.h +23 -0
  131. data/ext/rb_iupspeech.h +25 -0
  132. data/ext/rb_iupspin.h +29 -0
  133. data/ext/rb_iuptabs.h +29 -0
  134. data/ext/rb_iuptree.h +94 -0
  135. data/ext/rb_iupval.h +24 -0
  136. data/lib/README +1 -0
  137. data/lib/iup.so +0 -0
  138. metadata +187 -0
@@ -0,0 +1,129 @@
1
+ #include <ruby.h>
2
+ #include "iup.h"
3
+ #include "iup_pplot.h"
4
+
5
+ static int PPlotOpen = 0;
6
+ VALUE rb_IupPPlotOpen(VALUE self)
7
+ {
8
+ IupPPlotOpen();
9
+ return Qnil;
10
+ }
11
+
12
+ VALUE rb_IupPPlot(VALUE self)
13
+ {
14
+ extern VALUE rb_cIupPPlot;
15
+ Ihandle* v;
16
+ if(!PPlotOpen) {
17
+ IupPPlotOpen();
18
+ PPlotOpen = 1;
19
+ }
20
+ v = IupPPlot();
21
+ if(v)
22
+ return rb_funcall(rb_cIupPPlot,rb_intern("new"),1,UINT2NUM((unsigned)v));
23
+ return Qnil;
24
+ }
25
+
26
+ VALUE rb_IupPPlotBegin(VALUE node,VALUE v_strXdata)
27
+ {
28
+ int strXdata = NUM2INT(v_strXdata);
29
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
30
+ IupPPlotBegin((Ihandle*)NUM2UINT(v_ih),strXdata);
31
+ return Qnil;
32
+ }
33
+
34
+ VALUE rb_IupPPlotAdd(VALUE node,VALUE v_x,VALUE v_y)
35
+ {
36
+ float x,y;
37
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
38
+ if(TYPE(v_x)==T_FIXNUM)
39
+ x = NUM2INT(v_x);
40
+ else
41
+ x = RFLOAT(v_x)->value;
42
+ if(TYPE(v_y)==T_FIXNUM)
43
+ y = NUM2INT(v_y);
44
+ else
45
+ y = RFLOAT(v_y)->value;
46
+ IupPPlotAdd((Ihandle*)NUM2UINT(v_ih),x,y);
47
+ return Qnil;
48
+ }
49
+
50
+ VALUE rb_IupPPlotAddStr(VALUE node,VALUE v_x,VALUE v_y)
51
+ {
52
+ float y;
53
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
54
+ const char* x = RSTRING(v_x)->ptr;
55
+ if(TYPE(v_y)==T_FIXNUM)
56
+ y = NUM2INT(v_y);
57
+ else if(TYPE(v_y)==T_FLOAT)
58
+ y = RFLOAT(v_y)->value;
59
+ else
60
+ y = 0;
61
+
62
+ IupPPlotAddStr((Ihandle*)NUM2UINT(v_ih),x,y);
63
+ return Qnil;
64
+ }
65
+
66
+ VALUE rb_IupPPlotEnd(VALUE node)
67
+ {
68
+ int v;
69
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
70
+ v = IupPPlotEnd((Ihandle*)NUM2UINT(v_ih));
71
+ return INT2FIX(v);
72
+ }
73
+
74
+ VALUE rb_IupPPlotInsertStr(VALUE node,VALUE v_index,VALUE v_sample_index,VALUE v_x,VALUE v_y)
75
+ {
76
+ float y;
77
+ int index = NUM2INT(v_index);
78
+ int sample_index = NUM2INT(v_sample_index);
79
+ const char* x = RSTRING(v_x)->ptr;
80
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
81
+ y = RFLOAT(v_y)->value;
82
+ IupPPlotInsertStr((Ihandle*)NUM2UINT(v_ih),index,sample_index,x,y);
83
+ return Qnil;
84
+ }
85
+
86
+ VALUE rb_IupPPlotInsert(VALUE node,VALUE v_index,VALUE v_sample_index,VALUE v_x,VALUE v_y)
87
+ {
88
+ float x,y;
89
+ int index = NUM2INT(v_index);
90
+ int sample_index = NUM2INT(v_sample_index);
91
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
92
+ if(TYPE(v_x)==T_FIXNUM)
93
+ x = NUM2INT(v_x);
94
+ else
95
+ x = RFLOAT(v_x)->value;
96
+ if(TYPE(v_y)==T_FIXNUM)
97
+ y = NUM2INT(v_y);
98
+ else
99
+ y = RFLOAT(v_y)->value;
100
+ IupPPlotInsert((Ihandle*)NUM2UINT(v_ih),index,sample_index,x,y);
101
+ return Qnil;
102
+ }
103
+
104
+ VALUE rb_IupPPlotTransform(VALUE node,VALUE v_x,VALUE v_y)
105
+ {
106
+ float x,y;
107
+ int ix,iy;
108
+ VALUE v_r;
109
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
110
+ if(TYPE(v_x)==T_FIXNUM)
111
+ x = NUM2INT(v_x);
112
+ else
113
+ x = RFLOAT(v_x)->value;
114
+ if(TYPE(v_y)==T_FIXNUM)
115
+ y = NUM2INT(v_y);
116
+ else
117
+ y = RFLOAT(v_y)->value;
118
+ IupPPlotTransform((Ihandle*)NUM2UINT(v_ih),x,y,&ix,&iy);
119
+ v_r = rb_ary_new3(2,INT2FIX(ix),INT2FIX(iy));
120
+ return v_r;
121
+ }
122
+
123
+ VALUE rb_IupPPlotPaintTo(VALUE node,VALUE v_cnv)
124
+ {
125
+ void* cnv = (void*)NUM2UINT(v_cnv);
126
+ VALUE v_ih = rb_iv_get(node,"@ihandle");
127
+ IupPPlotPaintTo((Ihandle*)NUM2UINT(v_ih),cnv);
128
+ return Qnil;
129
+ }
data/ext/rb_iupcb.h ADDED
@@ -0,0 +1,13 @@
1
+ #include <ruby.h>
2
+ #include "iup.h"
3
+ #include "iupcb.h"
4
+
5
+ VALUE rb_IupColorBrowser(VALUE self)
6
+ {
7
+ extern VALUE rb_cIupColorBrowser;
8
+ Ihandle* v;
9
+ v = IupColorBrowser();
10
+ if(v)
11
+ return rb_funcall(rb_cIupColorBrowser,rb_intern("new"),1,UINT2NUM((unsigned)v));
12
+ return Qnil;
13
+ }
data/ext/rb_iupcbox.h ADDED
@@ -0,0 +1,40 @@
1
+ #include <ruby.h>
2
+ #include "iup.h"
3
+ #include "iupcbox.h"
4
+
5
+ VALUE rb_IupCboxv(int argc,VALUE *argv,VALUE self)
6
+ {
7
+ extern VALUE rb_cIupCbox;
8
+ Ihandle* v;
9
+ int i;
10
+ Ihandle *params[100];
11
+ VALUE v_params,v_hash;
12
+ VALUE node;
13
+ rb_scan_args(argc,argv,"11",&v_params,&v_hash);
14
+ for(i=0;i<RARRAY(v_params)->len;i++) {
15
+ node = RARRAY(v_params)->ptr[i];
16
+ params[i] = (Ihandle*)NUM2UINT(rb_iv_get(node,"@ihandle"));
17
+ }
18
+ params[i] = NULL;
19
+ v = IupCboxv(params);
20
+ if(TYPE(v_hash)==T_HASH)
21
+ rb_set_attribute(v,v_hash);
22
+ if(v)
23
+ return rb_funcall(rb_cIupCbox,rb_intern("new"),1,UINT2NUM((unsigned)v));
24
+ return Qnil;
25
+ }
26
+
27
+ VALUE rb_IupCboxBuilderv(VALUE self,VALUE v_params)
28
+ {
29
+ Ihandle* v;
30
+ int i;
31
+ Ihandle *params[100];
32
+ VALUE node;
33
+ for(i=0;i<RARRAY(v_params)->len;i++) {
34
+ node = RARRAY(v_params)->ptr[i];
35
+ params[i] = (Ihandle*)NUM2UINT(rb_iv_get(node,"@ihandle"));
36
+ }
37
+ params[i] = NULL;
38
+ v = IupCboxBuilderv(params);
39
+ return UINT2NUM((unsigned)v);
40
+ }
data/ext/rb_iupcells.h ADDED
@@ -0,0 +1,15 @@
1
+ #include <ruby.h>
2
+ #include "iup.h"
3
+ #include "iupcells.h"
4
+
5
+ VALUE rb_IupCells(int argc,VALUE *argv, VALUE self)
6
+ {
7
+ extern VALUE rb_cIupCells;
8
+ Ihandle* v;
9
+ v = IupCells();
10
+ if(argc==1 && TYPE(argv[0])==T_HASH)
11
+ rb_set_attribute(v,argv[0]);
12
+ if(v)
13
+ return rb_funcall(rb_cIupCells,rb_intern("new"),1,UINT2NUM((unsigned)v));
14
+ return Qnil;
15
+ }
@@ -0,0 +1,17 @@
1
+ #include <ruby.h>
2
+ #include "iup.h"
3
+ #include "iupcolorbar.h"
4
+
5
+ VALUE rb_IupColorbar(VALUE self)
6
+ {
7
+ extern char* iupGetEnv(Ihandle* n,const char* a);
8
+ unsigned *obj;
9
+ extern VALUE rb_cIupColorbar;
10
+ Ihandle* v;
11
+ v = IupColorbar();
12
+ obj = (unsigned*)iupGetEnv(v,"_IUPCOLORBAR_DATA");
13
+ obj[4] = 0; /* initialize cddbuffer to NULL */
14
+ if(v)
15
+ return rb_funcall(rb_cIupColorbar,rb_intern("new"),1,UINT2NUM((unsigned)v));
16
+ return Qnil;
17
+ }
@@ -0,0 +1,237 @@
1
+ #include <ruby.h>
2
+ #include "iup.h"
3
+ #include "iupcompat.h"
4
+
5
+ VALUE rb_iupdrvGetCharSize(VALUE self,VALUE v_n,VALUE v_w,VALUE v_h)
6
+ {
7
+ int w = NUM2INT(v_w);
8
+ int h = NUM2INT(v_h);
9
+ iupdrvGetCharSize(n,&w,&h);
10
+ return Qnil;
11
+ }
12
+
13
+ VALUE rb_iupdrvResizeObjects(VALUE self,VALUE v_n)
14
+ {
15
+ iupdrvResizeObjects(n);
16
+ return Qnil;
17
+ }
18
+
19
+ VALUE rb_iupdrvStringSize(VALUE self,VALUE v_n,VALUE v_text,VALUE v_w,VALUE v_h)
20
+ {
21
+ const char* text = RSTRING(v_text)->ptr;
22
+ int w = NUM2INT(v_w);
23
+ int h = NUM2INT(v_h);
24
+ iupdrvStringSize(n,text,&w,&h);
25
+ return Qnil;
26
+ }
27
+
28
+ VALUE rb_iupdrvGetScrollSize(VALUE self)
29
+ {
30
+ int v;
31
+ v = iupdrvGetScrollSize();
32
+ return INT2FIX((int)v);
33
+ }
34
+
35
+ VALUE rb_iupGetSize(VALUE self,VALUE v_n,VALUE v_w,VALUE v_h)
36
+ {
37
+ int w = NUM2INT(v_w);
38
+ int h = NUM2INT(v_h);
39
+ int v;
40
+ v = iupGetSize(n,&w,&h);
41
+ return INT2FIX((int)v);
42
+ }
43
+
44
+ VALUE rb_iupGetColor(VALUE self,VALUE v_n,VALUE v_a,VALUE v_r,VALUE v_g,VALUE v_b)
45
+ {
46
+ const char *a = RSTRING(v_a)->ptr;
47
+ unsigned int r = NUM2INT(v_r);
48
+ unsigned int g = NUM2INT(v_g);
49
+ unsigned int b = NUM2INT(v_b);
50
+ int v;
51
+ v = iupGetColor(n,a,&r,&g,&b);
52
+ return INT2FIX((int)v);
53
+ }
54
+
55
+ VALUE rb_iupGetRGB(VALUE self,VALUE v_color,VALUE v_r,VALUE v_g,VALUE v_b)
56
+ {
57
+ const char *color = RSTRING(v_color)->ptr;
58
+ unsigned int *r = NUM2INT(v_r);
59
+ unsigned int *g = NUM2INT(v_g);
60
+ unsigned int *b = NUM2INT(v_b);
61
+ int v;
62
+ v = iupGetRGB(color,r,g,b);
63
+ return INT2FIX((int)v);
64
+ }
65
+
66
+ VALUE rb_iupSetEnv(VALUE self,VALUE v_n,VALUE v_a,VALUE v_v)
67
+ {
68
+ const char* a = RSTRING(v_a)->ptr;
69
+ const char* v = RSTRING(v_v)->ptr;
70
+ iupSetEnv(n,a,v);
71
+ return Qnil;
72
+ }
73
+
74
+ VALUE rb_iupStoreEnv(VALUE self,VALUE v_n,VALUE v_a,VALUE v_v)
75
+ {
76
+ const char* a = RSTRING(v_a)->ptr;
77
+ const char* v = RSTRING(v_v)->ptr;
78
+ iupStoreEnv(n,a,v);
79
+ return Qnil;
80
+ }
81
+
82
+ VALUE rb_iupGetEnv(VALUE self,VALUE v_n,VALUE v_a)
83
+ {
84
+ const char* a = RSTRING(v_a)->ptr;
85
+ char* v;
86
+ v = iupGetEnv(n,a);
87
+ return rb_str_new2(v);
88
+ }
89
+
90
+ VALUE rb_iupGetEnvInt(VALUE self,VALUE v_n,VALUE v_a)
91
+ {
92
+ const char* a = RSTRING(v_a)->ptr;
93
+ int v;
94
+ v = iupGetEnvInt(n,a);
95
+ return INT2FIX((int)v);
96
+ }
97
+
98
+ VALUE rb_iupGetEnvRaw(VALUE self,VALUE v_n,VALUE v_a)
99
+ {
100
+ const char* a = RSTRING(v_a)->ptr;
101
+ char* v;
102
+ v = iupGetEnvRaw(n,a);
103
+ return rb_str_new2(v);
104
+ }
105
+
106
+ VALUE rb_iupCheck(VALUE self,VALUE v_n,VALUE v_a)
107
+ {
108
+ const char *a = RSTRING(v_a)->ptr;
109
+ int v;
110
+ v = iupCheck(n,a);
111
+ return INT2FIX((int)v);
112
+ }
113
+
114
+ VALUE rb_iupGetBgColor(VALUE self,VALUE v_self)
115
+ {
116
+ char v;
117
+ v = iupGetBgColor(self);
118
+ return INT2FIX((int)v);
119
+ }
120
+
121
+ VALUE rb_iupGetParentBgColor(VALUE self,VALUE v_self)
122
+ {
123
+ char v;
124
+ v = iupGetParentBgColor(self);
125
+ return INT2FIX((int)v);
126
+ }
127
+
128
+ VALUE rb_iupSetSize(VALUE self,VALUE v_root)
129
+ {
130
+ int v;
131
+ v = iupSetSize(root);
132
+ return INT2FIX((int)v);
133
+ }
134
+
135
+ VALUE rb_iupSetPosX(VALUE self,VALUE v_self,VALUE v_x)
136
+ {
137
+ int x = NUM2INT(v_x);
138
+ iupSetPosX(self,x);
139
+ return Qnil;
140
+ }
141
+
142
+ VALUE rb_iupSetPosY(VALUE self,VALUE v_self,VALUE v_y)
143
+ {
144
+ int y = NUM2INT(v_y);
145
+ iupSetPosY(self,y);
146
+ return Qnil;
147
+ }
148
+
149
+ VALUE rb_iupGetPosX(VALUE self,VALUE v_self)
150
+ {
151
+ int v;
152
+ v = iupGetPosX(self);
153
+ return INT2FIX((int)v);
154
+ }
155
+
156
+ VALUE rb_iupGetPosY(VALUE self,VALUE v_self)
157
+ {
158
+ int v;
159
+ v = iupGetPosY(self);
160
+ return INT2FIX((int)v);
161
+ }
162
+
163
+ VALUE rb_iupSetCurrentWidth(VALUE self,VALUE v_self,VALUE v_w)
164
+ {
165
+ int w = NUM2INT(v_w);
166
+ iupSetCurrentWidth(self,w);
167
+ return Qnil;
168
+ }
169
+
170
+ VALUE rb_iupSetCurrentHeight(VALUE self,VALUE v_self,VALUE v_h)
171
+ {
172
+ int h = NUM2INT(v_h);
173
+ iupSetCurrentHeight(self,h);
174
+ return Qnil;
175
+ }
176
+
177
+ VALUE rb_iupGetCurrentWidth(VALUE self,VALUE v_self)
178
+ {
179
+ int v;
180
+ v = iupGetCurrentWidth(self);
181
+ return INT2FIX((int)v);
182
+ }
183
+
184
+ VALUE rb_iupGetCurrentHeight(VALUE self,VALUE v_self)
185
+ {
186
+ int v;
187
+ v = iupGetCurrentHeight(self);
188
+ return INT2FIX((int)v);
189
+ }
190
+
191
+ VALUE rb_iupGetNativeHandle(VALUE self,VALUE v_self)
192
+ {
193
+ void* v;
194
+ v = iupGetNativeHandle(self);
195
+ return INT2FIX((int)v);
196
+ }
197
+
198
+ VALUE rb_iupSetNativeHandle(VALUE self,VALUE v_self,VALUE v_handle)
199
+ {
200
+ iupSetNativeHandle(self,handle);
201
+ return Qnil;
202
+ }
203
+
204
+ VALUE rb_iupSetNaturalWidth(VALUE self,VALUE v_self,VALUE v_w)
205
+ {
206
+ int w = NUM2INT(v_w);
207
+ iupSetNaturalWidth(self,w);
208
+ return Qnil;
209
+ }
210
+
211
+ VALUE rb_iupSetNaturalHeight(VALUE self,VALUE v_self,VALUE v_h)
212
+ {
213
+ int h = NUM2INT(v_h);
214
+ iupSetNaturalHeight(self,h);
215
+ return Qnil;
216
+ }
217
+
218
+ VALUE rb_iupGetNaturalWidth(VALUE self,VALUE v_self)
219
+ {
220
+ int v;
221
+ v = iupGetNaturalWidth(self);
222
+ return INT2FIX((int)v);
223
+ }
224
+
225
+ VALUE rb_iupGetNaturalHeight(VALUE self,VALUE v_self)
226
+ {
227
+ int v;
228
+ v = iupGetNaturalHeight(self);
229
+ return INT2FIX((int)v);
230
+ }
231
+
232
+ VALUE rb_iupGetImageData(VALUE self,VALUE v_self)
233
+ {
234
+ void* v;
235
+ v = iupGetImageData(self);
236
+ return INT2FIX((int)v);
237
+ }