ruby-iup 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (323) hide show
  1. data/Rakefile +97 -0
  2. data/doc/README +10 -0
  3. data/doc/build_install.txt +77 -0
  4. data/examples/README +16 -0
  5. data/examples/ctrl/cbox.rb +221 -0
  6. data/examples/ctrl/checkboard.rb +33 -0
  7. data/examples/ctrl/degrade.rb +73 -0
  8. data/examples/ctrl/example1.rb +53 -0
  9. data/examples/ctrl/example2.rb +39 -0
  10. data/examples/ctrl/iupcolorbar.rb +95 -0
  11. data/examples/ctrl/iupcolorbrowser.rb +45 -0
  12. data/examples/ctrl/iupdial.rb +117 -0
  13. data/examples/ctrl/iupgauge.rb +242 -0
  14. data/examples/ctrl/iupgetcolor.rb +8 -0
  15. data/examples/ctrl/iupgetparam.rb +62 -0
  16. data/examples/ctrl/iupglcanvas.rb +172 -0
  17. data/examples/ctrl/iupmask.rb +15 -0
  18. data/examples/ctrl/iupmatrix.rb +39 -0
  19. data/examples/ctrl/iupplot2.rb +603 -0
  20. data/examples/ctrl/iuptabs.rb +22 -0
  21. data/examples/ctrl/iuptree.rb +190 -0
  22. data/examples/ctrl/iupval.rb +71 -0
  23. data/examples/ctrl/numbering.rb +46 -0
  24. data/examples/ctrl/sample.rb +166 -0
  25. data/examples/dlg/iupalarm.rb +14 -0
  26. data/examples/dlg/iupfiledlg.rb +19 -0
  27. data/examples/dlg/iupgetfile.rb +19 -0
  28. data/examples/dlg/iuplistdialog.rb +26 -0
  29. data/examples/dlg/iupmessage.rb +5 -0
  30. data/examples/dlg/iupscanf.rb +17 -0
  31. data/examples/elem/iupbutton.rb +197 -0
  32. data/examples/elem/iupcanvas.rb +27 -0
  33. data/examples/elem/iupcanvas2.rb +113 -0
  34. data/examples/elem/iupcanvas3.rb +62 -0
  35. data/examples/elem/iupdialog.rb +71 -0
  36. data/examples/elem/iupdialog2.rb +25 -0
  37. data/examples/elem/iupfill.rb +51 -0
  38. data/examples/elem/iupframe.rb +25 -0
  39. data/examples/elem/iuphbox.rb +68 -0
  40. data/examples/elem/iupimage.rb +113 -0
  41. data/examples/elem/iupitem.rb +60 -0
  42. data/examples/elem/iuplabel.rb +57 -0
  43. data/examples/elem/iuplist.rb +41 -0
  44. data/examples/elem/iuplist2.rb +125 -0
  45. data/examples/elem/iupmenu.rb +32 -0
  46. data/examples/elem/iupmultiline.rb +24 -0
  47. data/examples/elem/iupmultiline2.rb +156 -0
  48. data/examples/elem/iupradio.rb +32 -0
  49. data/examples/elem/iupseparator.rb +81 -0
  50. data/examples/elem/iupsubmenu.rb +85 -0
  51. data/examples/elem/iuptext.rb +61 -0
  52. data/examples/elem/iuptimer.rb +36 -0
  53. data/examples/elem/iuptoggle.rb +110 -0
  54. data/examples/elem/iupvbox.rb +87 -0
  55. data/examples/elem/iupzbox.rb +60 -0
  56. data/examples/elem/mdisample.rb +376 -0
  57. data/examples/elem/progressbar.rb +294 -0
  58. data/examples/elem/scrollbar.rb +66 -0
  59. data/examples/elem/tray.rb +90 -0
  60. data/examples/func/iupgetattribute.rb +32 -0
  61. data/examples/func/iupidle.rb +48 -0
  62. data/ext/extconf.rb +27 -0
  63. data/ext/iup-linux/include/cd.h +494 -0
  64. data/ext/iup-linux/include/cd_canvas.hpp +358 -0
  65. data/ext/iup-linux/include/cd_old.h +158 -0
  66. data/ext/iup-linux/include/cd_private.h +362 -0
  67. data/ext/iup-linux/include/cdcgm.h +34 -0
  68. data/ext/iup-linux/include/cdclipbd.h +22 -0
  69. data/ext/iup-linux/include/cddbuf.h +23 -0
  70. data/ext/iup-linux/include/cddebug.h +24 -0
  71. data/ext/iup-linux/include/cddgn.h +23 -0
  72. data/ext/iup-linux/include/cddxf.h +22 -0
  73. data/ext/iup-linux/include/cdemf.h +22 -0
  74. data/ext/iup-linux/include/cdgdiplus.h +29 -0
  75. data/ext/iup-linux/include/cdimage.h +23 -0
  76. data/ext/iup-linux/include/cdirgb.h +30 -0
  77. data/ext/iup-linux/include/cdiup.h +22 -0
  78. data/ext/iup-linux/include/cdlua.h +39 -0
  79. data/ext/iup-linux/include/cdlua3_private.h +120 -0
  80. data/ext/iup-linux/include/cdlua5_private.h +141 -0
  81. data/ext/iup-linux/include/cdluaim.h +24 -0
  82. data/ext/iup-linux/include/cdluaiup.h +27 -0
  83. data/ext/iup-linux/include/cdluapdf.h +27 -0
  84. data/ext/iup-linux/include/cdmf.h +24 -0
  85. data/ext/iup-linux/include/cdmf_private.h +32 -0
  86. data/ext/iup-linux/include/cdnative.h +26 -0
  87. data/ext/iup-linux/include/cdpdf.h +38 -0
  88. data/ext/iup-linux/include/cdpicture.h +22 -0
  89. data/ext/iup-linux/include/cdprint.h +23 -0
  90. data/ext/iup-linux/include/cdps.h +37 -0
  91. data/ext/iup-linux/include/cdwmf.h +22 -0
  92. data/ext/iup-linux/include/im.h +282 -0
  93. data/ext/iup-linux/include/im_attrib.h +116 -0
  94. data/ext/iup-linux/include/im_attrib_flat.h +39 -0
  95. data/ext/iup-linux/include/im_binfile.h +214 -0
  96. data/ext/iup-linux/include/im_capture.h +365 -0
  97. data/ext/iup-linux/include/im_color.h +465 -0
  98. data/ext/iup-linux/include/im_colorhsi.h +61 -0
  99. data/ext/iup-linux/include/im_complex.h +160 -0
  100. data/ext/iup-linux/include/im_convert.h +127 -0
  101. data/ext/iup-linux/include/im_counter.h +69 -0
  102. data/ext/iup-linux/include/im_dib.h +195 -0
  103. data/ext/iup-linux/include/im_file.h +111 -0
  104. data/ext/iup-linux/include/im_format.h +79 -0
  105. data/ext/iup-linux/include/im_format_all.h +576 -0
  106. data/ext/iup-linux/include/im_format_avi.h +87 -0
  107. data/ext/iup-linux/include/im_format_ecw.h +93 -0
  108. data/ext/iup-linux/include/im_format_jp2.h +78 -0
  109. data/ext/iup-linux/include/im_format_raw.h +64 -0
  110. data/ext/iup-linux/include/im_format_wmv.h +100 -0
  111. data/ext/iup-linux/include/im_image.h +403 -0
  112. data/ext/iup-linux/include/im_kernel.h +315 -0
  113. data/ext/iup-linux/include/im_lib.h +191 -0
  114. data/ext/iup-linux/include/im_math.h +368 -0
  115. data/ext/iup-linux/include/im_math_op.h +219 -0
  116. data/ext/iup-linux/include/im_palette.h +172 -0
  117. data/ext/iup-linux/include/im_plus.h +73 -0
  118. data/ext/iup-linux/include/im_process.h +35 -0
  119. data/ext/iup-linux/include/im_process_ana.h +221 -0
  120. data/ext/iup-linux/include/im_process_glo.h +170 -0
  121. data/ext/iup-linux/include/im_process_loc.h +577 -0
  122. data/ext/iup-linux/include/im_process_pon.h +712 -0
  123. data/ext/iup-linux/include/im_raw.h +34 -0
  124. data/ext/iup-linux/include/im_util.h +277 -0
  125. data/ext/iup-linux/include/imlua.h +83 -0
  126. data/ext/iup-linux/include/iup.h +255 -0
  127. data/ext/iup-linux/include/iup_pplot.h +40 -0
  128. data/ext/iup-linux/include/iupcb.h +25 -0
  129. data/ext/iup-linux/include/iupcbox.h +23 -0
  130. data/ext/iup-linux/include/iupcbs.h +42 -0
  131. data/ext/iup-linux/include/iupcells.h +130 -0
  132. data/ext/iup-linux/include/iupcolorbar.h +126 -0
  133. data/ext/iup-linux/include/iupcompat.h +62 -0
  134. data/ext/iup-linux/include/iupcontrols.h +40 -0
  135. data/ext/iup-linux/include/iupcpi.h +76 -0
  136. data/ext/iup-linux/include/iupdef.h +520 -0
  137. data/ext/iup-linux/include/iupdial.h +64 -0
  138. data/ext/iup-linux/include/iupgauge.h +57 -0
  139. data/ext/iup-linux/include/iupgc.h +20 -0
  140. data/ext/iup-linux/include/iupgetparam.h +27 -0
  141. data/ext/iup-linux/include/iupgl.h +101 -0
  142. data/ext/iup-linux/include/iupim.h +21 -0
  143. data/ext/iup-linux/include/iupkey.h +290 -0
  144. data/ext/iup-linux/include/iuplua.h +41 -0
  145. data/ext/iup-linux/include/iuplua_pplot.h +26 -0
  146. data/ext/iup-linux/include/iupluacontrols.h +27 -0
  147. data/ext/iup-linux/include/iupluagl.h +26 -0
  148. data/ext/iup-linux/include/iupluaim.h +26 -0
  149. data/ext/iup-linux/include/iupluaole.h +26 -0
  150. data/ext/iup-linux/include/iupmask.h +52 -0
  151. data/ext/iup-linux/include/iupmatrix.h +69 -0
  152. data/ext/iup-linux/include/iupole.h +24 -0
  153. data/ext/iup-linux/include/iupsbox.h +20 -0
  154. data/ext/iup-linux/include/iupspeech.h +23 -0
  155. data/ext/iup-linux/include/iupspin.h +21 -0
  156. data/ext/iup-linux/include/iuptabs.h +79 -0
  157. data/ext/iup-linux/include/iuptree.h +93 -0
  158. data/ext/iup-linux/include/iupval.h +46 -0
  159. data/ext/iup-linux/include/lauxlib.h +174 -0
  160. data/ext/iup-linux/include/lua.h +388 -0
  161. data/ext/iup-linux/include/lua.hpp +9 -0
  162. data/ext/iup-linux/include/luaconf.h +763 -0
  163. data/ext/iup-linux/include/lualib.h +53 -0
  164. data/ext/iup-linux/include/old_im.h +59 -0
  165. data/ext/iup-linux/include/wd.h +78 -0
  166. data/ext/iup-linux/include/wd_old.h +85 -0
  167. data/ext/iup-linux/libcd.so +0 -0
  168. data/ext/iup-linux/libcdcontextplus.so +0 -0
  169. data/ext/iup-linux/libcdluacontextplus51.so +0 -0
  170. data/ext/iup-linux/libcdpdf.so +0 -0
  171. data/ext/iup-linux/libfreetype.so +0 -0
  172. data/ext/iup-linux/libim.so +0 -0
  173. data/ext/iup-linux/libim_fftw.so +0 -0
  174. data/ext/iup-linux/libim_jp2.so +0 -0
  175. data/ext/iup-linux/libim_process.so +0 -0
  176. data/ext/iup-linux/libiup.so +0 -0
  177. data/ext/iup-linux/libiup_pplot.so +0 -0
  178. data/ext/iup-linux/libiupcd.so +0 -0
  179. data/ext/iup-linux/libiupcontrols.so +0 -0
  180. data/ext/iup-linux/libiupgl.so +0 -0
  181. data/ext/iup-linux/libiupim.so +0 -0
  182. data/ext/iup-linux/libiupimglib.so +0 -0
  183. data/ext/iup-linux/libpdflib.so +0 -0
  184. data/ext/iup-win32/cd.dll +0 -0
  185. data/ext/iup-win32/cd.lib +0 -0
  186. data/ext/iup-win32/cdcontextplus.dll +0 -0
  187. data/ext/iup-win32/cdcontextplus.lib +0 -0
  188. data/ext/iup-win32/cdlua51.lib +0 -0
  189. data/ext/iup-win32/cdluacontextplus51.lib +0 -0
  190. data/ext/iup-win32/cdluaim51.lib +0 -0
  191. data/ext/iup-win32/cdluapdf51.lib +0 -0
  192. data/ext/iup-win32/cdpdf.dll +0 -0
  193. data/ext/iup-win32/cdpdf.lib +0 -0
  194. data/ext/iup-win32/freetype6.dll +0 -0
  195. data/ext/iup-win32/freetype6.lib +0 -0
  196. data/ext/iup-win32/im.dll +0 -0
  197. data/ext/iup-win32/im_avi.dll +0 -0
  198. data/ext/iup-win32/im_capture.dll +0 -0
  199. data/ext/iup-win32/im_ecw.dll +0 -0
  200. data/ext/iup-win32/im_fftw.dll +0 -0
  201. data/ext/iup-win32/im_jp2.dll +0 -0
  202. data/ext/iup-win32/im_process.dll +0 -0
  203. data/ext/iup-win32/im_wmv.dll +0 -0
  204. data/ext/iup-win32/include/cd.h +494 -0
  205. data/ext/iup-win32/include/cd_canvas.hpp +358 -0
  206. data/ext/iup-win32/include/cd_old.h +158 -0
  207. data/ext/iup-win32/include/cd_private.h +362 -0
  208. data/ext/iup-win32/include/cdcgm.h +34 -0
  209. data/ext/iup-win32/include/cdclipbd.h +22 -0
  210. data/ext/iup-win32/include/cddbuf.h +23 -0
  211. data/ext/iup-win32/include/cddebug.h +24 -0
  212. data/ext/iup-win32/include/cddgn.h +23 -0
  213. data/ext/iup-win32/include/cddxf.h +22 -0
  214. data/ext/iup-win32/include/cdemf.h +22 -0
  215. data/ext/iup-win32/include/cdgdiplus.h +29 -0
  216. data/ext/iup-win32/include/cdimage.h +23 -0
  217. data/ext/iup-win32/include/cdirgb.h +30 -0
  218. data/ext/iup-win32/include/cdiup.h +22 -0
  219. data/ext/iup-win32/include/cdlua.h +39 -0
  220. data/ext/iup-win32/include/cdlua3_private.h +120 -0
  221. data/ext/iup-win32/include/cdlua5_private.h +141 -0
  222. data/ext/iup-win32/include/cdluaim.h +24 -0
  223. data/ext/iup-win32/include/cdluaiup.h +27 -0
  224. data/ext/iup-win32/include/cdluapdf.h +27 -0
  225. data/ext/iup-win32/include/cdmf.h +24 -0
  226. data/ext/iup-win32/include/cdmf_private.h +32 -0
  227. data/ext/iup-win32/include/cdnative.h +26 -0
  228. data/ext/iup-win32/include/cdpdf.h +38 -0
  229. data/ext/iup-win32/include/cdpicture.h +22 -0
  230. data/ext/iup-win32/include/cdprint.h +23 -0
  231. data/ext/iup-win32/include/cdps.h +37 -0
  232. data/ext/iup-win32/include/cdwmf.h +22 -0
  233. data/ext/iup-win32/include/iup.h +255 -0
  234. data/ext/iup-win32/include/iup_pplot.h +40 -0
  235. data/ext/iup-win32/include/iupcb.h +25 -0
  236. data/ext/iup-win32/include/iupcbox.h +23 -0
  237. data/ext/iup-win32/include/iupcbs.h +42 -0
  238. data/ext/iup-win32/include/iupcells.h +130 -0
  239. data/ext/iup-win32/include/iupcolorbar.h +126 -0
  240. data/ext/iup-win32/include/iupcompat.h +62 -0
  241. data/ext/iup-win32/include/iupcontrols.h +40 -0
  242. data/ext/iup-win32/include/iupcpi.h +76 -0
  243. data/ext/iup-win32/include/iupdef.h +520 -0
  244. data/ext/iup-win32/include/iupdial.h +64 -0
  245. data/ext/iup-win32/include/iupgauge.h +57 -0
  246. data/ext/iup-win32/include/iupgc.h +20 -0
  247. data/ext/iup-win32/include/iupgetparam.h +27 -0
  248. data/ext/iup-win32/include/iupgl.h +101 -0
  249. data/ext/iup-win32/include/iupim.h +21 -0
  250. data/ext/iup-win32/include/iupkey.h +290 -0
  251. data/ext/iup-win32/include/iuplua.h +41 -0
  252. data/ext/iup-win32/include/iuplua_pplot.h +26 -0
  253. data/ext/iup-win32/include/iupluacontrols.h +27 -0
  254. data/ext/iup-win32/include/iupluagl.h +26 -0
  255. data/ext/iup-win32/include/iupluaim.h +26 -0
  256. data/ext/iup-win32/include/iupluaole.h +26 -0
  257. data/ext/iup-win32/include/iupmask.h +52 -0
  258. data/ext/iup-win32/include/iupmatrix.h +69 -0
  259. data/ext/iup-win32/include/iupole.h +24 -0
  260. data/ext/iup-win32/include/iupsbox.h +20 -0
  261. data/ext/iup-win32/include/iupspeech.h +23 -0
  262. data/ext/iup-win32/include/iupspin.h +21 -0
  263. data/ext/iup-win32/include/iuptabs.h +79 -0
  264. data/ext/iup-win32/include/iuptree.h +93 -0
  265. data/ext/iup-win32/include/iupval.h +46 -0
  266. data/ext/iup-win32/include/wd.h +78 -0
  267. data/ext/iup-win32/include/wd_old.h +85 -0
  268. data/ext/iup-win32/iup.dll +0 -0
  269. data/ext/iup-win32/iup.lib +0 -0
  270. data/ext/iup-win32/iup_pplot.dll +0 -0
  271. data/ext/iup-win32/iup_pplot.lib +0 -0
  272. data/ext/iup-win32/iupcd.dll +0 -0
  273. data/ext/iup-win32/iupcd.lib +0 -0
  274. data/ext/iup-win32/iupcontrols.dll +0 -0
  275. data/ext/iup-win32/iupcontrols.lib +0 -0
  276. data/ext/iup-win32/iupgl.dll +0 -0
  277. data/ext/iup-win32/iupgl.lib +0 -0
  278. data/ext/iup-win32/iupim.dll +0 -0
  279. data/ext/iup-win32/iupim.lib +0 -0
  280. data/ext/iup-win32/iupimglib.dll +0 -0
  281. data/ext/iup-win32/iupimglib.lib +0 -0
  282. data/ext/iup-win32/iuplua51.lib +0 -0
  283. data/ext/iup-win32/iuplua_pplot51.lib +0 -0
  284. data/ext/iup-win32/iupluacd51.lib +0 -0
  285. data/ext/iup-win32/iupluacontrols51.lib +0 -0
  286. data/ext/iup-win32/iupluagl51.lib +0 -0
  287. data/ext/iup-win32/iupluaim51.lib +0 -0
  288. data/ext/iup-win32/iupluaimglib51.lib +0 -0
  289. data/ext/iup-win32/iupluaole51.lib +0 -0
  290. data/ext/iup-win32/iupole.dll +0 -0
  291. data/ext/iup-win32/iupole.lib +0 -0
  292. data/ext/iup-win32/iupstub.lib +0 -0
  293. data/ext/iup-win32/pdflib.dll +0 -0
  294. data/ext/iup-win32/pdflib.lib +0 -0
  295. data/ext/iup.c +1261 -0
  296. data/ext/mkrf_conf.rb +72 -0
  297. data/ext/rb_cd.h +1525 -0
  298. data/ext/rb_iup.h +2446 -0
  299. data/ext/rb_iup_pplot.h +129 -0
  300. data/ext/rb_iupcb.h +13 -0
  301. data/ext/rb_iupcbox.h +40 -0
  302. data/ext/rb_iupcells.h +15 -0
  303. data/ext/rb_iupcolorbar.h +17 -0
  304. data/ext/rb_iupcompat.h +237 -0
  305. data/ext/rb_iupcontrols.h +28 -0
  306. data/ext/rb_iupdef.h +3 -0
  307. data/ext/rb_iupdial.h +24 -0
  308. data/ext/rb_iupgauge.h +15 -0
  309. data/ext/rb_iupgc.h +18 -0
  310. data/ext/rb_iupgetparam.h +72 -0
  311. data/ext/rb_iupgl.h +58 -0
  312. data/ext/rb_iupim.h +25 -0
  313. data/ext/rb_iupmask.h +189 -0
  314. data/ext/rb_iupmatrix.h +80 -0
  315. data/ext/rb_iupole.h +24 -0
  316. data/ext/rb_iupsbox.h +23 -0
  317. data/ext/rb_iupspeech.h +25 -0
  318. data/ext/rb_iupspin.h +29 -0
  319. data/ext/rb_iuptabs.h +29 -0
  320. data/ext/rb_iuptree.h +94 -0
  321. data/ext/rb_iupval.h +24 -0
  322. data/lib/README +1 -0
  323. metadata +391 -0
@@ -0,0 +1,40 @@
1
+ /** \file
2
+ * \brief initializes iupdial, iupgauge, iuptabs, iupcb, iupgc and iupval controls.
3
+ *
4
+ * See Copyright Notice in iup.h
5
+ */
6
+
7
+ #ifndef __IUPCONTROLS_H
8
+ #define __IUPCONTROLS_H
9
+
10
+ #include "iupdial.h"
11
+ #include "iupgauge.h"
12
+ #include "iuptabs.h"
13
+ #include "iupval.h"
14
+ #include "iupmatrix.h"
15
+ #include "iuptree.h"
16
+ #include "iupsbox.h"
17
+ #include "iupmask.h"
18
+ #include "iupgc.h"
19
+ #include "iupcb.h"
20
+ #include "iupspin.h"
21
+ #include "iupcolorbar.h"
22
+ #include "iupgetparam.h"
23
+ #include "iupcbox.h"
24
+ #include "iupcells.h"
25
+
26
+ #ifdef __cplusplus
27
+ extern "C" {
28
+ #endif
29
+
30
+ int IupControlsOpen(void);
31
+ void IupControlsClose(void);
32
+
33
+ void IupImageLibOpen (void);
34
+ void IupImageLibClose (void);
35
+
36
+ #ifdef __cplusplus
37
+ }
38
+ #endif
39
+
40
+ #endif
@@ -0,0 +1,76 @@
1
+ /** \file
2
+ * \brief Control Creation Interface.
3
+ *
4
+ * See Copyright Notice in iup.h
5
+ */
6
+
7
+ #ifndef __IUPCPI_H
8
+ #define __IUPCPI_H
9
+
10
+ #ifdef __cplusplus
11
+ extern "C" {
12
+ #endif
13
+
14
+ typedef struct Iclass_ Iclass;
15
+ typedef void (*Imethod)(Ihandle *, ...);
16
+
17
+ /* Method names */
18
+ #define ICPI_SETNATURALSIZE "SETNATURALSIZE"
19
+ #define ICPI_SETCURRENTSIZE "SETCURRENTSIZE"
20
+ #define ICPI_GETSIZE "GETSIZE"
21
+ #define ICPI_SETPOSITION "SETPOSITION"
22
+ #define ICPI_CREATE "CREATE"
23
+ #define ICPI_DESTROY "DESTROY"
24
+ #define ICPI_MAP "MAP"
25
+ #define ICPI_UNMAP "UNMAP"
26
+ #define ICPI_SETATTR "SETATTR"
27
+ #define ICPI_GETATTR "GETATTR"
28
+ #define ICPI_GETDEFAULTATTR "GETDEFAULTATTR"
29
+ #define ICPI_POPUP "POPUP"
30
+
31
+ int iupCpiDefaultSetNaturalSize (Ihandle* self);
32
+ void iupCpiDefaultSetCurrentSize (Ihandle* self, int w, int h);
33
+ int iupCpiDefaultGetSize (Ihandle* self, int* w, int* h);
34
+ void iupCpiDefaultSetPosition (Ihandle* self, int w, int h);
35
+ Ihandle* iupCpiDefaultCreate (Iclass* self, void** params);
36
+ void iupCpiDefaultDestroy (Ihandle* self);
37
+ void iupCpiDefaultMap (Ihandle* self, Ihandle* parent);
38
+ void iupCpiDefaultUnmap (Ihandle* self);
39
+ void iupCpiDefaultSetAttr (Ihandle* self, const char* attr, const char* value);
40
+ char* iupCpiDefaultGetAttr (Ihandle* self, const char* attr);
41
+ char* iupCpiDefaultGetDefaultAttr (Ihandle* self, const char* attr);
42
+
43
+ int iupCpiSetNaturalSize( Ihandle* self );
44
+ void iupCpiSetCurrentSize( Ihandle* self, int w, int h );
45
+ int iupCpiGetSize( Ihandle* self, int* w, int* h );
46
+ void iupCpiSetPosition ( Ihandle* self, int w, int h );
47
+ void iupCpiDestroy( Ihandle* self );
48
+ void iupCpiMap( Ihandle* self, Ihandle* parent );
49
+ void iupCpiUnmap( Ihandle* self );
50
+ void iupCpiSetAttribute( Ihandle* self, const char* attr, const char* value );
51
+ char* iupCpiGetAttribute( Ihandle* self, const char* attr );
52
+ char* iupCpiGetDefaultAttr( Ihandle* self, const char* attr );
53
+ int iupCpiPopup( Ihandle* self, int x, int y );
54
+ Ihandle *iupCpiCreate(Iclass *ic, void **params);
55
+
56
+ void iupCpiFinish(void);
57
+ void iupCpiInit(void);
58
+
59
+ char *iupCpiGetClassName(Iclass *ic);
60
+ Iclass* iupCpiGetClass(const char *name);
61
+ char *iupCpiGetClassFormat(Iclass *ic);
62
+ Imethod iupCpiGetClassMethod(Iclass *ic, const char *method);
63
+ int iupCpiSetClassMethod(Iclass *ic, const char *method, Imethod func);
64
+
65
+ Iclass *iupCpiCreateNewClass(const char *name, const char *format);
66
+ void iupCpiFreeClass(Iclass *a);
67
+
68
+ #ifdef va_start
69
+ Ihandle** iupGetParamList(Ihandle* first, va_list arglist);
70
+ #endif
71
+
72
+ #ifdef __cplusplus
73
+ }
74
+ #endif
75
+
76
+ #endif
@@ -0,0 +1,520 @@
1
+ /** \file
2
+ * \brief Callbacks, Attributes and Attribute Values definitions.
3
+ * Avoid using these definitions. Use the strings instead.
4
+ *
5
+ * See Copyright Notice in iup.h
6
+ */
7
+
8
+ #ifndef __IUPDEF_H
9
+ #define __IUPDEF_H
10
+
11
+ #define IUP_RUN "RUN"
12
+ #define IUP_ENGLISH "ENGLISH"
13
+ #define IUP_PORTUGUESE "PORTUGUESE"
14
+ #define IUP_SBH "SBH"
15
+ #define IUP_SBV "SBV"
16
+
17
+ /************************************************************************/
18
+ /* Acoes */
19
+ /************************************************************************/
20
+ #define IUP_DEFAULT_ACTION "DEFAULT_ACTION"
21
+ #define IUP_IDLE_ACTION "IDLE_ACTION"
22
+
23
+ #define IUP_ACTION "ACTION"
24
+ #define IUP_GETFOCUS_CB "GETFOCUS_CB"
25
+ #define IUP_KILLFOCUS_CB "KILLFOCUS_CB"
26
+ #define IUP_K_ANY "K_ANY"
27
+ #define IUP_KEYPRESS_CB "KEYPRESS_CB"
28
+ #define IUP_HELP_CB "HELP_CB"
29
+
30
+ #define IUP_SCROLL_CB "SCROLL_CB"
31
+ #define IUP_RESIZE_CB "RESIZE_CB"
32
+ #define IUP_MOTION_CB "MOTION_CB"
33
+ #define IUP_BUTTON_CB "BUTTON_CB"
34
+ #define IUP_ENTERWINDOW_CB "ENTERWINDOW_CB"
35
+ #define IUP_LEAVEWINDOW_CB "LEAVEWINDOW_CB"
36
+ #define IUP_WHEEL_CB "WHEEL_CB"
37
+
38
+ #define IUP_MASK_CB "MASK_CB"
39
+ #define IUP_OPEN_CB "OPEN_CB"
40
+ #define IUP_HIGHLIGHT_CB "HIGHLIGHT_CB"
41
+ #define IUP_MENUCLOSE_CB "MENUCLOSE_CB"
42
+
43
+ #define IUP_MAP_CB "MAP_CB"
44
+ #define IUP_CLOSE_CB "CLOSE_CB"
45
+ #define IUP_SHOW_CB "SHOW_CB"
46
+
47
+ #define IUP_DROPFILES_CB "DROPFILES_CB"
48
+ #define IUP_WOM_CB "WOM_CB"
49
+
50
+ /************************************************************************/
51
+ /* Atributos */
52
+ /************************************************************************/
53
+
54
+ #define IUP_DIRECTION "DIRECTION"
55
+ #define IUP_ACTIVE "ACTIVE"
56
+ #define IUP_BGCOLOR "BGCOLOR"
57
+ #define IUP_FRAMECOLOR "FRAMECOLOR"
58
+ #define IUP_FGCOLOR "FGCOLOR"
59
+ #define IUP_COLOR "COLOR"
60
+ #define IUP_WID "WID"
61
+ #define IUP_SIZE "SIZE"
62
+ #define IUP_RASTERSIZE "RASTERSIZE"
63
+ #define IUP_TITLE "TITLE"
64
+ #define IUP_VALUE "VALUE"
65
+ #define IUP_VISIBLE "VISIBLE"
66
+ #define IUP_FONT "FONT"
67
+ #define IUP_TIP "TIP"
68
+ #define IUP_EXPAND "EXPAND"
69
+ #define IUP_SEPARATOR "SEPARATOR"
70
+
71
+ #define IUP_HOTSPOT "HOTSPOT"
72
+ #define IUP_HEIGHT "HEIGHT"
73
+ #define IUP_WIDTH "WIDTH"
74
+
75
+ #define IUP_KEY "KEY"
76
+
77
+ #define IUP_MULTIPLE "MULTIPLE"
78
+ #define IUP_DROPDOWN "DROPDOWN"
79
+ #define IUP_VISIBLE_ITEMS "VISIBLE_ITEMS"
80
+
81
+ #define IUP_MARGIN "MARGIN"
82
+ #define IUP_GAP "GAP"
83
+ #define IUP_ALIGNMENT "ALIGNMENT"
84
+
85
+ #define IUP_IMAGE "IMAGE"
86
+ #define IUP_IMINACTIVE "IMINACTIVE"
87
+ #define IUP_IMPRESS "IMPRESS"
88
+ #define IUP_SAVEUNDER "SAVEUNDER"
89
+
90
+ #define IUP_NC "NC"
91
+ #define IUP_MASK "MASK"
92
+
93
+ #define IUP_APPEND "APPEND"
94
+ #define IUP_BORDER "BORDER"
95
+
96
+ #define IUP_CARET "CARET"
97
+ #define IUP_SELECTION "SELECTION"
98
+ #define IUP_SELECTEDTEXT "SELECTEDTEXT"
99
+ #define IUP_INSERT "INSERT"
100
+
101
+ #define IUP_CONID "CONID"
102
+ #define IUP_CURSOR "CURSOR"
103
+
104
+ #define IUP_ICON "ICON"
105
+ #define IUP_MENUBOX "MENUBOX"
106
+ #define IUP_MINBOX "MINBOX"
107
+ #define IUP_MAXBOX "MAXBOX"
108
+ #define IUP_RESIZE "RESIZE"
109
+ #define IUP_MENU "MENU"
110
+ #define IUP_STARTFOCUS "STARTFOCUS"
111
+ #define IUP_PARENTDIALOG "PARENTDIALOG"
112
+ #define IUP_SHRINK "SHRINK"
113
+ #define IUP_DEFAULTENTER "DEFAULTENTER"
114
+ #define IUP_DEFAULTESC "DEFAULTESC"
115
+ #define IUP_X "X"
116
+ #define IUP_Y "Y"
117
+ #define IUP_TOOLBOX "TOOLBOX"
118
+ #define IUP_CONTROL "CONTROL"
119
+ #define IUP_READONLY "READONLY"
120
+
121
+ #define IUP_SCROLLBAR "SCROLLBAR"
122
+ #define IUP_POSY "POSY"
123
+ #define IUP_POSX "POSX"
124
+ #define IUP_DX "DX"
125
+ #define IUP_DY "DY"
126
+ #define IUP_XMAX "XMAX"
127
+ #define IUP_XMIN "XMIN"
128
+ #define IUP_YMAX "YMAX"
129
+ #define IUP_YMIN "YMIN"
130
+
131
+ #define IUP_RED "255 0 0"
132
+ #define IUP_GREEN "0 255 0"
133
+ #define IUP_BLUE "0 0 255"
134
+
135
+ #define IUP_MIN "MIN"
136
+ #define IUP_MAX "MAX"
137
+
138
+ #define IUP_TIME "TIME"
139
+ #define IUP_DRAG "DRAG"
140
+ #define IUP_DROP "DROP"
141
+ #define IUP_REPAINT "REPAINT"
142
+ #define IUP_TOPMOST "TOPMOST"
143
+ #define IUP_CLIPCHILDREN "CLIPCHILDREN"
144
+
145
+ #define IUP_DIALOGTYPE "DIALOGTYPE"
146
+ #define IUP_FILE "FILE"
147
+ #define IUP_MULTIPLEFILES "MULTIPLEFILES"
148
+ #define IUP_FILTER "FILTER"
149
+ #define IUP_FILTERUSED "FILTERUSED"
150
+ #define IUP_FILTERINFO "FILTERINFO"
151
+ #define IUP_EXTFILTER "EXTFILTER"
152
+ #define IUP_DIRECTORY "DIRECTORY"
153
+ #define IUP_ALLOWNEW "ALLOWNEW"
154
+ #define IUP_NOOVERWRITEPROMPT "NOOVERWRITEPROMPT"
155
+ #define IUP_NOCHANGEDIR "NOCHANGEDIR"
156
+ #define IUP_FILEEXIST "FILEEXIST"
157
+ #define IUP_STATUS "STATUS"
158
+
159
+ #define IUP_LOCKLOOP "LOCKLOOP"
160
+ #define IUP_SYSTEM "SYSTEM"
161
+ #define IUP_DRIVER "DRIVER"
162
+ #define IUP_SCREENSIZE "SCREENSIZE"
163
+ #define IUP_SYSTEMLANGUAGE "SYSTEMLANGUAGE"
164
+ #define IUP_COMPUTERNAME "COMPUTERNAME"
165
+ #define IUP_USERNAME "USERNAME"
166
+
167
+ /************************************************************************/
168
+ /* Valores para o filedlg */
169
+ /************************************************************************/
170
+ #define IUP_OPEN "OPEN"
171
+ #define IUP_SAVE "SAVE"
172
+ #define IUP_DIR "DIR"
173
+
174
+ /************************************************************************/
175
+ /* Valores para scrollbar */
176
+ /************************************************************************/
177
+ #define IUP_HORIZONTAL "HORIZONTAL"
178
+ #define IUP_VERTICAL "VERTICAL"
179
+
180
+ /************************************************************************/
181
+ /* Valores dos Atributos */
182
+ /************************************************************************/
183
+ #define IUP_YES "YES"
184
+ #define IUP_NO "NO"
185
+ #define IUP_ON "ON"
186
+ #define IUP_OFF "OFF"
187
+
188
+ #define IUP_ACENTER "ACENTER"
189
+ #define IUP_ALEFT "ALEFT"
190
+ #define IUP_ARIGHT "ARIGHT"
191
+ #define IUP_ATOP "ATOP"
192
+ #define IUP_ABOTTOM "ABOTTOM"
193
+
194
+ #define IUP_NORTH "NORTH"
195
+ #define IUP_SOUTH "SOUTH"
196
+ #define IUP_WEST "WEST"
197
+ #define IUP_EAST "EAST"
198
+ #define IUP_NE "NE"
199
+ #define IUP_SE "SE"
200
+ #define IUP_NW "NW"
201
+ #define IUP_SW "SW"
202
+
203
+ #define IUP_FULLSCREEN "FULLSCREEN"
204
+ #define IUP_FULL "FULL"
205
+ #define IUP_HALF "HALF"
206
+ #define IUP_THIRD "THIRD"
207
+ #define IUP_QUARTER "QUARTER"
208
+ #define IUP_EIGHTH "EIGHTH"
209
+
210
+ #define IUP_ARROW "ARROW"
211
+ #define IUP_BUSY "BUSY"
212
+ #define IUP_RESIZE_N "RESIZE_N"
213
+ #define IUP_RESIZE_S "RESIZE_S"
214
+ #define IUP_RESIZE_E "RESIZE_E"
215
+ #define IUP_RESIZE_W "RESIZE_W"
216
+ #define IUP_RESIZE_NE "RESIZE_NE"
217
+ #define IUP_RESIZE_NW "RESIZE_NW"
218
+ #define IUP_RESIZE_SE "RESIZE_SE"
219
+ #define IUP_RESIZE_SW "RESIZE_SW"
220
+ #define IUP_MOVE "MOVE"
221
+ #define IUP_HAND "HAND"
222
+ #define IUP_NONE "NONE"
223
+ #define IUP_IUP "IUP"
224
+ #define IUP_CROSS "CROSS"
225
+ #define IUP_PEN "PEN"
226
+ #define IUP_TEXT "TEXT"
227
+ #define IUP_RESIZE_C "RESIZE_C"
228
+ #define IUP_OPENHAND "OPENHAND"
229
+
230
+ #define IUP_HELVETICA_NORMAL_8 "HELVETICA_NORMAL_8"
231
+ #define IUP_HELVETICA_ITALIC_8 "HELVETICA_ITALIC_8"
232
+ #define IUP_HELVETICA_BOLD_8 "HELVETICA_BOLD_8"
233
+ #define IUP_HELVETICA_NORMAL_10 "HELVETICA_NORMAL_10"
234
+ #define IUP_HELVETICA_ITALIC_10 "HELVETICA_ITALIC_10"
235
+ #define IUP_HELVETICA_BOLD_10 "HELVETICA_BOLD_10"
236
+ #define IUP_HELVETICA_NORMAL_12 "HELVETICA_NORMAL_12"
237
+ #define IUP_HELVETICA_ITALIC_12 "HELVETICA_ITALIC_12"
238
+ #define IUP_HELVETICA_BOLD_12 "HELVETICA_BOLD_12"
239
+ #define IUP_HELVETICA_NORMAL_14 "HELVETICA_NORMAL_14"
240
+ #define IUP_HELVETICA_ITALIC_14 "HELVETICA_ITALIC_14"
241
+ #define IUP_HELVETICA_BOLD_14 "HELVETICA_BOLD_14"
242
+ #define IUP_COURIER_NORMAL_8 "COURIER_NORMAL_8"
243
+ #define IUP_COURIER_ITALIC_8 "COURIER_ITALIC_8"
244
+ #define IUP_COURIER_BOLD_8 "COURIER_BOLD_8"
245
+ #define IUP_COURIER_NORMAL_10 "COURIER_NORMAL_10"
246
+ #define IUP_COURIER_ITALIC_10 "COURIER_ITALIC_10"
247
+ #define IUP_COURIER_BOLD_10 "COURIER_BOLD_10"
248
+ #define IUP_COURIER_NORMAL_12 "COURIER_NORMAL_12"
249
+ #define IUP_COURIER_ITALIC_12 "COURIER_ITALIC_12"
250
+ #define IUP_COURIER_BOLD_12 "COURIER_BOLD_12"
251
+ #define IUP_COURIER_NORMAL_14 "COURIER_NORMAL_14"
252
+ #define IUP_COURIER_ITALIC_14 "COURIER_ITALIC_14"
253
+ #define IUP_COURIER_BOLD_14 "COURIER_BOLD_14"
254
+ #define IUP_TIMES_NORMAL_8 "TIMES_NORMAL_8"
255
+ #define IUP_TIMES_ITALIC_8 "TIMES_ITALIC_8"
256
+ #define IUP_TIMES_BOLD_8 "TIMES_BOLD_8"
257
+ #define IUP_TIMES_NORMAL_10 "TIMES_NORMAL_10"
258
+ #define IUP_TIMES_ITALIC_10 "TIMES_ITALIC_10"
259
+ #define IUP_TIMES_BOLD_10 "TIMES_BOLD_10"
260
+ #define IUP_TIMES_NORMAL_12 "TIMES_NORMAL_12"
261
+ #define IUP_TIMES_ITALIC_12 "TIMES_ITALIC_12"
262
+ #define IUP_TIMES_BOLD_12 "TIMES_BOLD_12"
263
+ #define IUP_TIMES_NORMAL_14 "TIMES_NORMAL_14"
264
+ #define IUP_TIMES_ITALIC_14 "TIMES_ITALIC_14"
265
+ #define IUP_TIMES_BOLD_14 "TIMES_BOLD_14"
266
+
267
+ /************************************************************************/
268
+ /* Teclas */
269
+ /************************************************************************/
270
+ #define IUP_K_exclam "K_exclam"
271
+ #define IUP_K_quotedbl "K_quotedbl"
272
+ #define IUP_K_numbersign "K_numbersign"
273
+ #define IUP_K_dollar "K_dollar"
274
+ #define IUP_K_percent "K_percent"
275
+ #define IUP_K_ampersand "K_ampersand"
276
+ #define IUP_K_quoteright "K_quoteright"
277
+ #define IUP_K_parentleft "K_parentleft"
278
+ #define IUP_K_parentright "K_parentright"
279
+ #define IUP_K_asterisk "K_asterisk"
280
+ #define IUP_K_plus "K_plus"
281
+ #define IUP_K_comma "K_comma"
282
+ #define IUP_K_minus "K_minus"
283
+ #define IUP_K_period "K_period"
284
+ #define IUP_K_slash "K_slash"
285
+ #define IUP_K_0 "K_0"
286
+ #define IUP_K_1 "K_1"
287
+ #define IUP_K_2 "K_2"
288
+ #define IUP_K_3 "K_3"
289
+ #define IUP_K_4 "K_4"
290
+ #define IUP_K_5 "K_5"
291
+ #define IUP_K_6 "K_6"
292
+ #define IUP_K_7 "K_7"
293
+ #define IUP_K_8 "K_8"
294
+ #define IUP_K_9 "K_9"
295
+ #define IUP_K_colon "K_colon"
296
+ #define IUP_K_semicolon "K_semicolon "
297
+ #define IUP_K_less "K_less"
298
+ #define IUP_K_equal "K_equal"
299
+ #define IUP_K_greater "K_greater"
300
+ #define IUP_K_question "K_question"
301
+ #define IUP_K_at "K_at"
302
+ #define IUP_K_A "K_A"
303
+ #define IUP_K_B "K_B"
304
+ #define IUP_K_C "K_C"
305
+ #define IUP_K_D "K_D"
306
+ #define IUP_K_E "K_E"
307
+ #define IUP_K_F "K_F"
308
+ #define IUP_K_G "K_G"
309
+ #define IUP_K_H "K_H"
310
+ #define IUP_K_I "K_I"
311
+ #define IUP_K_J "K_J"
312
+ #define IUP_K_K "K_K"
313
+ #define IUP_K_L "K_L"
314
+ #define IUP_K_M "K_M"
315
+ #define IUP_K_N "K_N"
316
+ #define IUP_K_O "K_O"
317
+ #define IUP_K_P "K_P"
318
+ #define IUP_K_Q "K_Q"
319
+ #define IUP_K_R "K_R"
320
+ #define IUP_K_S "K_S"
321
+ #define IUP_K_T "K_T"
322
+ #define IUP_K_U "K_U"
323
+ #define IUP_K_V "K_V"
324
+ #define IUP_K_W "K_W"
325
+ #define IUP_K_X "K_X"
326
+ #define IUP_K_Y "K_Y"
327
+ #define IUP_K_Z "K_Z"
328
+ #define IUP_K_bracketleft "K_bracketleft"
329
+ #define IUP_K_backslash "K_backslash"
330
+ #define IUP_K_bracketright "K_bracketright"
331
+ #define IUP_K_circum "K_circum"
332
+ #define IUP_K_underscore "K_underscore"
333
+ #define IUP_K_quoteleft "K_quoteleft"
334
+ #define IUP_K_a "K_a"
335
+ #define IUP_K_b "K_b"
336
+ #define IUP_K_c "K_c"
337
+ #define IUP_K_d "K_d"
338
+ #define IUP_K_e "K_e"
339
+ #define IUP_K_f "K_f"
340
+ #define IUP_K_g "K_g"
341
+ #define IUP_K_h "K_h"
342
+ #define IUP_K_i "K_i"
343
+ #define IUP_K_j "K_j"
344
+ #define IUP_K_k "K_k"
345
+ #define IUP_K_l "K_l"
346
+ #define IUP_K_m "K_m"
347
+ #define IUP_K_n "K_n"
348
+ #define IUP_K_o "K_o"
349
+ #define IUP_K_p "K_p"
350
+ #define IUP_K_q "K_q"
351
+ #define IUP_K_r "K_r"
352
+ #define IUP_K_s "K_s"
353
+ #define IUP_K_t "K_t"
354
+ #define IUP_K_u "K_u"
355
+ #define IUP_K_v "K_v"
356
+ #define IUP_K_w "K_w"
357
+ #define IUP_K_x "K_x"
358
+ #define IUP_K_y "K_y"
359
+ #define IUP_K_z "K_z"
360
+ #define IUP_K_braceleft "K_braceleft"
361
+ #define IUP_K_bar "K_bar"
362
+ #define IUP_K_braceright "K_braceright"
363
+ #define IUP_K_tilde "K_tilde"
364
+
365
+ #define IUP_K_cA "K_cA"
366
+ #define IUP_K_cB "K_cB"
367
+ #define IUP_K_cC "K_cC"
368
+ #define IUP_K_cD "K_cD"
369
+ #define IUP_K_cE "K_cE"
370
+ #define IUP_K_cF "K_cF"
371
+ #define IUP_K_cG "K_cG"
372
+ #define IUP_K_cJ "K_cJ"
373
+ #define IUP_K_cK "K_cK"
374
+ #define IUP_K_cL "K_cL"
375
+ #define IUP_K_cN "K_cN"
376
+ #define IUP_K_cO "K_cO"
377
+ #define IUP_K_cP "K_cP"
378
+ #define IUP_K_cQ "K_cQ"
379
+ #define IUP_K_cR "K_cR"
380
+ #define IUP_K_cS "K_cS"
381
+ #define IUP_K_cT "K_cT"
382
+ #define IUP_K_cU "K_cU"
383
+ #define IUP_K_cV "K_cV"
384
+ #define IUP_K_cW "K_cW"
385
+ #define IUP_K_cX "K_cX"
386
+ #define IUP_K_cY "K_cY"
387
+ #define IUP_K_cZ "K_cZ"
388
+ #define IUP_K_mA "K_mA"
389
+ #define IUP_K_mB "K_mB"
390
+ #define IUP_K_mC "K_mC"
391
+ #define IUP_K_mD "K_mD"
392
+ #define IUP_K_mE "K_mE"
393
+ #define IUP_K_mF "K_mF"
394
+ #define IUP_K_mG "K_mG"
395
+ #define IUP_K_mH "K_mH"
396
+ #define IUP_K_mI "K_mI"
397
+ #define IUP_K_mJ "K_mJ"
398
+ #define IUP_K_mK "K_mK"
399
+ #define IUP_K_mL "K_mL"
400
+ #define IUP_K_mM "K_mM"
401
+ #define IUP_K_mN "K_mN"
402
+ #define IUP_K_mO "K_mO"
403
+ #define IUP_K_mP "K_mP"
404
+ #define IUP_K_mQ "K_mQ"
405
+ #define IUP_K_mR "K_mR"
406
+ #define IUP_K_mS "K_mS"
407
+ #define IUP_K_mT "K_mT"
408
+ #define IUP_K_mU "K_mU"
409
+ #define IUP_K_mV "K_mV"
410
+ #define IUP_K_mW "K_mW"
411
+ #define IUP_K_mX "K_mX"
412
+ #define IUP_K_mY "K_mY"
413
+ #define IUP_K_mZ "K_mZ"
414
+ #define IUP_K_BS "K_BS"
415
+ #define IUP_K_TAB "K_TAB"
416
+ #define IUP_K_CR "K_CR"
417
+ #define IUP_K_SP "K_SP"
418
+ #define IUP_K_ESC "K_ESC"
419
+ #define IUP_K_sCR "K_sCR"
420
+ #define IUP_K_sTAB "K_sTAB"
421
+ #define IUP_K_cTAB "K_cTAB"
422
+ #define IUP_K_mTAB "K_mTAB"
423
+ #define IUP_K_HOME "K_HOME"
424
+ #define IUP_K_UP "K_UP"
425
+ #define IUP_K_PGUP "K_PGUP"
426
+ #define IUP_K_LEFT "K_LEFT"
427
+ #define IUP_K_RIGHT "K_RIGHT"
428
+ #define IUP_K_END "K_END"
429
+ #define IUP_K_DOWN "K_DOWN"
430
+ #define IUP_K_PGDN "K_PGDN"
431
+ #define IUP_K_MIDDLE "K_MIDDLE"
432
+ #define IUP_K_INS "K_INS"
433
+ #define IUP_K_DEL "K_DEL"
434
+ #define IUP_K_sHOME "K_sHOME"
435
+ #define IUP_K_sUP "K_sUP"
436
+ #define IUP_K_sPGUP "K_sPGUP"
437
+ #define IUP_K_sLEFT "K_sLEFT"
438
+ #define IUP_K_sRIGHT "K_sRIGHT"
439
+ #define IUP_K_sEND "K_sEND"
440
+ #define IUP_K_sDOWN "K_sDOWN"
441
+ #define IUP_K_sPGDN "K_sPGDN"
442
+ #define IUP_K_cHOME "K_cHOME"
443
+ #define IUP_K_cPGUP "K_cPGUP"
444
+ #define IUP_K_cLEFT "K_cLEFT"
445
+ #define IUP_K_cRIGHT "K_cRIGHT"
446
+ #define IUP_K_cEND "K_cEND"
447
+ #define IUP_K_cPGDN "K_cPGDN"
448
+ #define IUP_K_cUP "K_cUP"
449
+ #define IUP_K_cDOWN "K_cDOWN"
450
+ #define IUP_K_cMIDDLE "K_cMIDDLE"
451
+ #define IUP_K_cINS "K_cINS"
452
+ #define IUP_K_cDEL "K_cDEL"
453
+ #define IUP_K_mHOME "K_mHOME"
454
+ #define IUP_K_mPGUP "K_mPGUP"
455
+ #define IUP_K_mLEFT "K_mLEFT"
456
+ #define IUP_K_mRIGHT "K_mRIGHT"
457
+ #define IUP_K_mEND "K_mEND"
458
+ #define IUP_K_mPGDN "K_mPGDN"
459
+ #define IUP_K_mUP "K_mUP"
460
+ #define IUP_K_mDOWN "K_mDOWN"
461
+ #define IUP_K_mINS "K_mINS"
462
+ #define IUP_K_mDEL "K_mDEL"
463
+ #define IUP_K_F1 "K_F1"
464
+ #define IUP_K_F2 "K_F2"
465
+ #define IUP_K_F3 "K_F3"
466
+ #define IUP_K_F4 "K_F4"
467
+ #define IUP_K_F5 "K_F5"
468
+ #define IUP_K_F6 "K_F6"
469
+ #define IUP_K_F7 "K_F7"
470
+ #define IUP_K_F8 "K_F8"
471
+ #define IUP_K_F9 "K_F9"
472
+ #define IUP_K_F10 "K_F10"
473
+ #define IUP_K_F11 "K_F11"
474
+ #define IUP_K_F12 "K_F12"
475
+ #define IUP_K_sF1 "K_sF1"
476
+ #define IUP_K_sF2 "K_sF2"
477
+ #define IUP_K_sF3 "K_sF3"
478
+ #define IUP_K_sF4 "K_sF4"
479
+ #define IUP_K_sF5 "K_sF5"
480
+ #define IUP_K_sF6 "K_sF6"
481
+ #define IUP_K_sF7 "K_sF7"
482
+ #define IUP_K_sF8 "K_sF8"
483
+ #define IUP_K_sF9 "K_sF9"
484
+ #define IUP_K_sF10 "K_sF10"
485
+ #define IUP_K_sF11 "K_sF11"
486
+ #define IUP_K_sF12 "K_sF12"
487
+ #define IUP_K_cF1 "K_cF1"
488
+ #define IUP_K_cF2 "K_cF2"
489
+ #define IUP_K_cF3 "K_cF3"
490
+ #define IUP_K_cF4 "K_cF4"
491
+ #define IUP_K_cF5 "K_cF5"
492
+ #define IUP_K_cF6 "K_cF6"
493
+ #define IUP_K_cF7 "K_cF7"
494
+ #define IUP_K_cF8 "K_cF8"
495
+ #define IUP_K_cF9 "K_cF9"
496
+ #define IUP_K_cF10 "K_cF10"
497
+ #define IUP_K_cF11 "K_cF11"
498
+ #define IUP_K_cF12 "K_cF12"
499
+ #define IUP_K_mF1 "K_mF1"
500
+ #define IUP_K_mF2 "K_mF2"
501
+ #define IUP_K_mF3 "K_mF3"
502
+ #define IUP_K_mF4 "K_mF4"
503
+ #define IUP_K_mF5 "K_mF5"
504
+ #define IUP_K_mF6 "K_mF6"
505
+ #define IUP_K_mF7 "K_mF7"
506
+ #define IUP_K_mF8 "K_mF8"
507
+ #define IUP_K_mF9 "K_mF9"
508
+ #define IUP_K_mF10 "K_mF10"
509
+ #define IUP_K_m1 "K_m1"
510
+ #define IUP_K_m2 "K_m2"
511
+ #define IUP_K_m3 "K_m3"
512
+ #define IUP_K_m4 "K_m4"
513
+ #define IUP_K_m5 "K_m5"
514
+ #define IUP_K_m6 "K_m6"
515
+ #define IUP_K_m7 "K_m7"
516
+ #define IUP_K_m8 "K_m8"
517
+ #define IUP_K_m9 "K_m9"
518
+ #define IUP_K_m0 "K_m0"
519
+
520
+ #endif