ruby-iup 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +97 -0
- data/doc/README +10 -0
- data/doc/build_install.txt +77 -0
- data/examples/README +16 -0
- data/examples/ctrl/cbox.rb +221 -0
- data/examples/ctrl/checkboard.rb +33 -0
- data/examples/ctrl/degrade.rb +73 -0
- data/examples/ctrl/example1.rb +53 -0
- data/examples/ctrl/example2.rb +39 -0
- data/examples/ctrl/iupcolorbar.rb +95 -0
- data/examples/ctrl/iupcolorbrowser.rb +45 -0
- data/examples/ctrl/iupdial.rb +117 -0
- data/examples/ctrl/iupgauge.rb +242 -0
- data/examples/ctrl/iupgetcolor.rb +8 -0
- data/examples/ctrl/iupgetparam.rb +62 -0
- data/examples/ctrl/iupglcanvas.rb +172 -0
- data/examples/ctrl/iupmask.rb +15 -0
- data/examples/ctrl/iupmatrix.rb +39 -0
- data/examples/ctrl/iupplot2.rb +603 -0
- data/examples/ctrl/iuptabs.rb +22 -0
- data/examples/ctrl/iuptree.rb +190 -0
- data/examples/ctrl/iupval.rb +71 -0
- data/examples/ctrl/numbering.rb +46 -0
- data/examples/ctrl/sample.rb +166 -0
- data/examples/dlg/iupalarm.rb +14 -0
- data/examples/dlg/iupfiledlg.rb +19 -0
- data/examples/dlg/iupgetfile.rb +19 -0
- data/examples/dlg/iuplistdialog.rb +26 -0
- data/examples/dlg/iupmessage.rb +5 -0
- data/examples/dlg/iupscanf.rb +17 -0
- data/examples/elem/iupbutton.rb +197 -0
- data/examples/elem/iupcanvas.rb +27 -0
- data/examples/elem/iupcanvas2.rb +113 -0
- data/examples/elem/iupcanvas3.rb +62 -0
- data/examples/elem/iupdialog.rb +71 -0
- data/examples/elem/iupdialog2.rb +25 -0
- data/examples/elem/iupfill.rb +51 -0
- data/examples/elem/iupframe.rb +25 -0
- data/examples/elem/iuphbox.rb +68 -0
- data/examples/elem/iupimage.rb +113 -0
- data/examples/elem/iupitem.rb +60 -0
- data/examples/elem/iuplabel.rb +57 -0
- data/examples/elem/iuplist.rb +41 -0
- data/examples/elem/iuplist2.rb +125 -0
- data/examples/elem/iupmenu.rb +32 -0
- data/examples/elem/iupmultiline.rb +24 -0
- data/examples/elem/iupmultiline2.rb +156 -0
- data/examples/elem/iupradio.rb +32 -0
- data/examples/elem/iupseparator.rb +81 -0
- data/examples/elem/iupsubmenu.rb +85 -0
- data/examples/elem/iuptext.rb +61 -0
- data/examples/elem/iuptimer.rb +36 -0
- data/examples/elem/iuptoggle.rb +110 -0
- data/examples/elem/iupvbox.rb +87 -0
- data/examples/elem/iupzbox.rb +60 -0
- data/examples/elem/mdisample.rb +376 -0
- data/examples/elem/progressbar.rb +294 -0
- data/examples/elem/scrollbar.rb +66 -0
- data/examples/elem/tray.rb +90 -0
- data/examples/func/iupgetattribute.rb +32 -0
- data/examples/func/iupidle.rb +48 -0
- data/ext/extconf.rb +27 -0
- data/ext/iup-linux/include/cd.h +494 -0
- data/ext/iup-linux/include/cd_canvas.hpp +358 -0
- data/ext/iup-linux/include/cd_old.h +158 -0
- data/ext/iup-linux/include/cd_private.h +362 -0
- data/ext/iup-linux/include/cdcgm.h +34 -0
- data/ext/iup-linux/include/cdclipbd.h +22 -0
- data/ext/iup-linux/include/cddbuf.h +23 -0
- data/ext/iup-linux/include/cddebug.h +24 -0
- data/ext/iup-linux/include/cddgn.h +23 -0
- data/ext/iup-linux/include/cddxf.h +22 -0
- data/ext/iup-linux/include/cdemf.h +22 -0
- data/ext/iup-linux/include/cdgdiplus.h +29 -0
- data/ext/iup-linux/include/cdimage.h +23 -0
- data/ext/iup-linux/include/cdirgb.h +30 -0
- data/ext/iup-linux/include/cdiup.h +22 -0
- data/ext/iup-linux/include/cdlua.h +39 -0
- data/ext/iup-linux/include/cdlua3_private.h +120 -0
- data/ext/iup-linux/include/cdlua5_private.h +141 -0
- data/ext/iup-linux/include/cdluaim.h +24 -0
- data/ext/iup-linux/include/cdluaiup.h +27 -0
- data/ext/iup-linux/include/cdluapdf.h +27 -0
- data/ext/iup-linux/include/cdmf.h +24 -0
- data/ext/iup-linux/include/cdmf_private.h +32 -0
- data/ext/iup-linux/include/cdnative.h +26 -0
- data/ext/iup-linux/include/cdpdf.h +38 -0
- data/ext/iup-linux/include/cdpicture.h +22 -0
- data/ext/iup-linux/include/cdprint.h +23 -0
- data/ext/iup-linux/include/cdps.h +37 -0
- data/ext/iup-linux/include/cdwmf.h +22 -0
- data/ext/iup-linux/include/im.h +282 -0
- data/ext/iup-linux/include/im_attrib.h +116 -0
- data/ext/iup-linux/include/im_attrib_flat.h +39 -0
- data/ext/iup-linux/include/im_binfile.h +214 -0
- data/ext/iup-linux/include/im_capture.h +365 -0
- data/ext/iup-linux/include/im_color.h +465 -0
- data/ext/iup-linux/include/im_colorhsi.h +61 -0
- data/ext/iup-linux/include/im_complex.h +160 -0
- data/ext/iup-linux/include/im_convert.h +127 -0
- data/ext/iup-linux/include/im_counter.h +69 -0
- data/ext/iup-linux/include/im_dib.h +195 -0
- data/ext/iup-linux/include/im_file.h +111 -0
- data/ext/iup-linux/include/im_format.h +79 -0
- data/ext/iup-linux/include/im_format_all.h +576 -0
- data/ext/iup-linux/include/im_format_avi.h +87 -0
- data/ext/iup-linux/include/im_format_ecw.h +93 -0
- data/ext/iup-linux/include/im_format_jp2.h +78 -0
- data/ext/iup-linux/include/im_format_raw.h +64 -0
- data/ext/iup-linux/include/im_format_wmv.h +100 -0
- data/ext/iup-linux/include/im_image.h +403 -0
- data/ext/iup-linux/include/im_kernel.h +315 -0
- data/ext/iup-linux/include/im_lib.h +191 -0
- data/ext/iup-linux/include/im_math.h +368 -0
- data/ext/iup-linux/include/im_math_op.h +219 -0
- data/ext/iup-linux/include/im_palette.h +172 -0
- data/ext/iup-linux/include/im_plus.h +73 -0
- data/ext/iup-linux/include/im_process.h +35 -0
- data/ext/iup-linux/include/im_process_ana.h +221 -0
- data/ext/iup-linux/include/im_process_glo.h +170 -0
- data/ext/iup-linux/include/im_process_loc.h +577 -0
- data/ext/iup-linux/include/im_process_pon.h +712 -0
- data/ext/iup-linux/include/im_raw.h +34 -0
- data/ext/iup-linux/include/im_util.h +277 -0
- data/ext/iup-linux/include/imlua.h +83 -0
- data/ext/iup-linux/include/iup.h +255 -0
- data/ext/iup-linux/include/iup_pplot.h +40 -0
- data/ext/iup-linux/include/iupcb.h +25 -0
- data/ext/iup-linux/include/iupcbox.h +23 -0
- data/ext/iup-linux/include/iupcbs.h +42 -0
- data/ext/iup-linux/include/iupcells.h +130 -0
- data/ext/iup-linux/include/iupcolorbar.h +126 -0
- data/ext/iup-linux/include/iupcompat.h +62 -0
- data/ext/iup-linux/include/iupcontrols.h +40 -0
- data/ext/iup-linux/include/iupcpi.h +76 -0
- data/ext/iup-linux/include/iupdef.h +520 -0
- data/ext/iup-linux/include/iupdial.h +64 -0
- data/ext/iup-linux/include/iupgauge.h +57 -0
- data/ext/iup-linux/include/iupgc.h +20 -0
- data/ext/iup-linux/include/iupgetparam.h +27 -0
- data/ext/iup-linux/include/iupgl.h +101 -0
- data/ext/iup-linux/include/iupim.h +21 -0
- data/ext/iup-linux/include/iupkey.h +290 -0
- data/ext/iup-linux/include/iuplua.h +41 -0
- data/ext/iup-linux/include/iuplua_pplot.h +26 -0
- data/ext/iup-linux/include/iupluacontrols.h +27 -0
- data/ext/iup-linux/include/iupluagl.h +26 -0
- data/ext/iup-linux/include/iupluaim.h +26 -0
- data/ext/iup-linux/include/iupluaole.h +26 -0
- data/ext/iup-linux/include/iupmask.h +52 -0
- data/ext/iup-linux/include/iupmatrix.h +69 -0
- data/ext/iup-linux/include/iupole.h +24 -0
- data/ext/iup-linux/include/iupsbox.h +20 -0
- data/ext/iup-linux/include/iupspeech.h +23 -0
- data/ext/iup-linux/include/iupspin.h +21 -0
- data/ext/iup-linux/include/iuptabs.h +79 -0
- data/ext/iup-linux/include/iuptree.h +93 -0
- data/ext/iup-linux/include/iupval.h +46 -0
- data/ext/iup-linux/include/lauxlib.h +174 -0
- data/ext/iup-linux/include/lua.h +388 -0
- data/ext/iup-linux/include/lua.hpp +9 -0
- data/ext/iup-linux/include/luaconf.h +763 -0
- data/ext/iup-linux/include/lualib.h +53 -0
- data/ext/iup-linux/include/old_im.h +59 -0
- data/ext/iup-linux/include/wd.h +78 -0
- data/ext/iup-linux/include/wd_old.h +85 -0
- data/ext/iup-linux/libcd.so +0 -0
- data/ext/iup-linux/libcdcontextplus.so +0 -0
- data/ext/iup-linux/libcdluacontextplus51.so +0 -0
- data/ext/iup-linux/libcdpdf.so +0 -0
- data/ext/iup-linux/libfreetype.so +0 -0
- data/ext/iup-linux/libim.so +0 -0
- data/ext/iup-linux/libim_fftw.so +0 -0
- data/ext/iup-linux/libim_jp2.so +0 -0
- data/ext/iup-linux/libim_process.so +0 -0
- data/ext/iup-linux/libiup.so +0 -0
- data/ext/iup-linux/libiup_pplot.so +0 -0
- data/ext/iup-linux/libiupcd.so +0 -0
- data/ext/iup-linux/libiupcontrols.so +0 -0
- data/ext/iup-linux/libiupgl.so +0 -0
- data/ext/iup-linux/libiupim.so +0 -0
- data/ext/iup-linux/libiupimglib.so +0 -0
- data/ext/iup-linux/libpdflib.so +0 -0
- data/ext/iup-win32/cd.dll +0 -0
- data/ext/iup-win32/cd.lib +0 -0
- data/ext/iup-win32/cdcontextplus.dll +0 -0
- data/ext/iup-win32/cdcontextplus.lib +0 -0
- data/ext/iup-win32/cdlua51.lib +0 -0
- data/ext/iup-win32/cdluacontextplus51.lib +0 -0
- data/ext/iup-win32/cdluaim51.lib +0 -0
- data/ext/iup-win32/cdluapdf51.lib +0 -0
- data/ext/iup-win32/cdpdf.dll +0 -0
- data/ext/iup-win32/cdpdf.lib +0 -0
- data/ext/iup-win32/freetype6.dll +0 -0
- data/ext/iup-win32/freetype6.lib +0 -0
- data/ext/iup-win32/im.dll +0 -0
- data/ext/iup-win32/im_avi.dll +0 -0
- data/ext/iup-win32/im_capture.dll +0 -0
- data/ext/iup-win32/im_ecw.dll +0 -0
- data/ext/iup-win32/im_fftw.dll +0 -0
- data/ext/iup-win32/im_jp2.dll +0 -0
- data/ext/iup-win32/im_process.dll +0 -0
- data/ext/iup-win32/im_wmv.dll +0 -0
- data/ext/iup-win32/include/cd.h +494 -0
- data/ext/iup-win32/include/cd_canvas.hpp +358 -0
- data/ext/iup-win32/include/cd_old.h +158 -0
- data/ext/iup-win32/include/cd_private.h +362 -0
- data/ext/iup-win32/include/cdcgm.h +34 -0
- data/ext/iup-win32/include/cdclipbd.h +22 -0
- data/ext/iup-win32/include/cddbuf.h +23 -0
- data/ext/iup-win32/include/cddebug.h +24 -0
- data/ext/iup-win32/include/cddgn.h +23 -0
- data/ext/iup-win32/include/cddxf.h +22 -0
- data/ext/iup-win32/include/cdemf.h +22 -0
- data/ext/iup-win32/include/cdgdiplus.h +29 -0
- data/ext/iup-win32/include/cdimage.h +23 -0
- data/ext/iup-win32/include/cdirgb.h +30 -0
- data/ext/iup-win32/include/cdiup.h +22 -0
- data/ext/iup-win32/include/cdlua.h +39 -0
- data/ext/iup-win32/include/cdlua3_private.h +120 -0
- data/ext/iup-win32/include/cdlua5_private.h +141 -0
- data/ext/iup-win32/include/cdluaim.h +24 -0
- data/ext/iup-win32/include/cdluaiup.h +27 -0
- data/ext/iup-win32/include/cdluapdf.h +27 -0
- data/ext/iup-win32/include/cdmf.h +24 -0
- data/ext/iup-win32/include/cdmf_private.h +32 -0
- data/ext/iup-win32/include/cdnative.h +26 -0
- data/ext/iup-win32/include/cdpdf.h +38 -0
- data/ext/iup-win32/include/cdpicture.h +22 -0
- data/ext/iup-win32/include/cdprint.h +23 -0
- data/ext/iup-win32/include/cdps.h +37 -0
- data/ext/iup-win32/include/cdwmf.h +22 -0
- data/ext/iup-win32/include/iup.h +255 -0
- data/ext/iup-win32/include/iup_pplot.h +40 -0
- data/ext/iup-win32/include/iupcb.h +25 -0
- data/ext/iup-win32/include/iupcbox.h +23 -0
- data/ext/iup-win32/include/iupcbs.h +42 -0
- data/ext/iup-win32/include/iupcells.h +130 -0
- data/ext/iup-win32/include/iupcolorbar.h +126 -0
- data/ext/iup-win32/include/iupcompat.h +62 -0
- data/ext/iup-win32/include/iupcontrols.h +40 -0
- data/ext/iup-win32/include/iupcpi.h +76 -0
- data/ext/iup-win32/include/iupdef.h +520 -0
- data/ext/iup-win32/include/iupdial.h +64 -0
- data/ext/iup-win32/include/iupgauge.h +57 -0
- data/ext/iup-win32/include/iupgc.h +20 -0
- data/ext/iup-win32/include/iupgetparam.h +27 -0
- data/ext/iup-win32/include/iupgl.h +101 -0
- data/ext/iup-win32/include/iupim.h +21 -0
- data/ext/iup-win32/include/iupkey.h +290 -0
- data/ext/iup-win32/include/iuplua.h +41 -0
- data/ext/iup-win32/include/iuplua_pplot.h +26 -0
- data/ext/iup-win32/include/iupluacontrols.h +27 -0
- data/ext/iup-win32/include/iupluagl.h +26 -0
- data/ext/iup-win32/include/iupluaim.h +26 -0
- data/ext/iup-win32/include/iupluaole.h +26 -0
- data/ext/iup-win32/include/iupmask.h +52 -0
- data/ext/iup-win32/include/iupmatrix.h +69 -0
- data/ext/iup-win32/include/iupole.h +24 -0
- data/ext/iup-win32/include/iupsbox.h +20 -0
- data/ext/iup-win32/include/iupspeech.h +23 -0
- data/ext/iup-win32/include/iupspin.h +21 -0
- data/ext/iup-win32/include/iuptabs.h +79 -0
- data/ext/iup-win32/include/iuptree.h +93 -0
- data/ext/iup-win32/include/iupval.h +46 -0
- data/ext/iup-win32/include/wd.h +78 -0
- data/ext/iup-win32/include/wd_old.h +85 -0
- data/ext/iup-win32/iup.dll +0 -0
- data/ext/iup-win32/iup.lib +0 -0
- data/ext/iup-win32/iup_pplot.dll +0 -0
- data/ext/iup-win32/iup_pplot.lib +0 -0
- data/ext/iup-win32/iupcd.dll +0 -0
- data/ext/iup-win32/iupcd.lib +0 -0
- data/ext/iup-win32/iupcontrols.dll +0 -0
- data/ext/iup-win32/iupcontrols.lib +0 -0
- data/ext/iup-win32/iupgl.dll +0 -0
- data/ext/iup-win32/iupgl.lib +0 -0
- data/ext/iup-win32/iupim.dll +0 -0
- data/ext/iup-win32/iupim.lib +0 -0
- data/ext/iup-win32/iupimglib.dll +0 -0
- data/ext/iup-win32/iupimglib.lib +0 -0
- data/ext/iup-win32/iuplua51.lib +0 -0
- data/ext/iup-win32/iuplua_pplot51.lib +0 -0
- data/ext/iup-win32/iupluacd51.lib +0 -0
- data/ext/iup-win32/iupluacontrols51.lib +0 -0
- data/ext/iup-win32/iupluagl51.lib +0 -0
- data/ext/iup-win32/iupluaim51.lib +0 -0
- data/ext/iup-win32/iupluaimglib51.lib +0 -0
- data/ext/iup-win32/iupluaole51.lib +0 -0
- data/ext/iup-win32/iupole.dll +0 -0
- data/ext/iup-win32/iupole.lib +0 -0
- data/ext/iup-win32/iupstub.lib +0 -0
- data/ext/iup-win32/pdflib.dll +0 -0
- data/ext/iup-win32/pdflib.lib +0 -0
- data/ext/iup.c +1261 -0
- data/ext/mkrf_conf.rb +72 -0
- data/ext/rb_cd.h +1525 -0
- data/ext/rb_iup.h +2446 -0
- data/ext/rb_iup_pplot.h +129 -0
- data/ext/rb_iupcb.h +13 -0
- data/ext/rb_iupcbox.h +40 -0
- data/ext/rb_iupcells.h +15 -0
- data/ext/rb_iupcolorbar.h +17 -0
- data/ext/rb_iupcompat.h +237 -0
- data/ext/rb_iupcontrols.h +28 -0
- data/ext/rb_iupdef.h +3 -0
- data/ext/rb_iupdial.h +24 -0
- data/ext/rb_iupgauge.h +15 -0
- data/ext/rb_iupgc.h +18 -0
- data/ext/rb_iupgetparam.h +72 -0
- data/ext/rb_iupgl.h +58 -0
- data/ext/rb_iupim.h +25 -0
- data/ext/rb_iupmask.h +189 -0
- data/ext/rb_iupmatrix.h +80 -0
- data/ext/rb_iupole.h +24 -0
- data/ext/rb_iupsbox.h +23 -0
- data/ext/rb_iupspeech.h +25 -0
- data/ext/rb_iupspin.h +29 -0
- data/ext/rb_iuptabs.h +29 -0
- data/ext/rb_iuptree.h +94 -0
- data/ext/rb_iupval.h +24 -0
- data/lib/README +1 -0
- metadata +391 -0
@@ -0,0 +1,41 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief IUP Binding for Lua.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPLUA_H
|
8
|
+
#define __IUPLUA_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef LUA_NOOBJECT /* Lua 3 */
|
15
|
+
int iuplua_open (void);
|
16
|
+
int iupkey_open (void);
|
17
|
+
|
18
|
+
/* utilities */
|
19
|
+
Ihandle* iuplua_checkihandle(int pos);
|
20
|
+
void iuplua_pushihandle(Ihandle *n);
|
21
|
+
int iuplua_dofile (char *filename);
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#ifdef LUA_TNONE /* Lua 5 */
|
25
|
+
int iuplua_open(lua_State *L);
|
26
|
+
int iupkey_open(lua_State *L);
|
27
|
+
int iuplua_close(lua_State * L);
|
28
|
+
|
29
|
+
/* utilities */
|
30
|
+
Ihandle* iuplua_checkihandle(lua_State *L, int pos);
|
31
|
+
void iuplua_pushihandle(lua_State *L, Ihandle *n);
|
32
|
+
int iuplua_dofile(lua_State *L, const char *filename);
|
33
|
+
int iuplua_dostring(lua_State *L, const char *string, const char *chunk_name);
|
34
|
+
|
35
|
+
#endif
|
36
|
+
|
37
|
+
#ifdef __cplusplus
|
38
|
+
}
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#endif
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iup_pplot Binding for Lua.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPLUA_PPLOT_H
|
8
|
+
#define __IUPLUA_PPLOT_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef LUA_NOOBJECT /* Lua 3 */
|
15
|
+
int iup_pplotlua_open (void);
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#ifdef LUA_TNONE /* Lua 5 */
|
19
|
+
int iup_pplotlua_open (lua_State * L);
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#ifdef __cplusplus
|
23
|
+
}
|
24
|
+
#endif
|
25
|
+
|
26
|
+
#endif
|
@@ -0,0 +1,27 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupcontrols Binding for Lua.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPLUACONTROLS_H
|
8
|
+
#define __IUPLUACONTROLS_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef LUA_NOOBJECT /* Lua 3 */
|
15
|
+
int iupcontrolslua_open (void);
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#ifdef LUA_TNONE /* Lua 5 */
|
19
|
+
int iupcontrolslua_open (lua_State * L);
|
20
|
+
int iupcontrolslua_close(lua_State * L);
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#ifdef __cplusplus
|
24
|
+
}
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#endif
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Binding of iupglcanvas to Lua.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPLUAGL_H
|
8
|
+
#define __IUPLUAGL_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef LUA_NOOBJECT /* Lua 3 */
|
15
|
+
int iupgllua_open(void);
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#ifdef LUA_TNONE /* Lua 5 */
|
19
|
+
int iupgllua_open (lua_State * L);
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#ifdef __cplusplus
|
23
|
+
}
|
24
|
+
#endif
|
25
|
+
|
26
|
+
#endif
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Bindig of iupim functions to Lua.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPLUAIM_H
|
8
|
+
#define __IUPLUAIM_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef LUA_NOOBJECT /* Lua 3 */
|
15
|
+
void iupimlua_open(void);
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#ifdef LUA_TNONE /* Lua 5 */
|
19
|
+
int iupimlua_open(lua_State * L);
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#ifdef __cplusplus
|
23
|
+
}
|
24
|
+
#endif
|
25
|
+
|
26
|
+
#endif
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Binding of iupolecontrol to Lua.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPLUAOLE_H
|
8
|
+
#define __IUPLUAOLE_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef LUA_NOOBJECT /* Lua 3 */
|
15
|
+
int iupolelua_open(void);
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#ifdef LUA_TNONE /* Lua 5 */
|
19
|
+
int iupolelua_open (lua_State * L);
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#ifdef __cplusplus
|
23
|
+
}
|
24
|
+
#endif
|
25
|
+
|
26
|
+
#endif
|
@@ -0,0 +1,52 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupmask functions.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPMASK_H
|
8
|
+
#define __IUPMASK_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
/* pre-defined masks */
|
15
|
+
#define IUPMASK_FLOAT "[+/-]?(/d+/.?/d*|/./d+)"
|
16
|
+
#define IUPMASK_UFLOAT "(/d+/.?/d*|/./d+)"
|
17
|
+
#define IUPMASK_EFLOAT "[+/-]?(/d+/.?/d*|/./d+)([eE][+/-]?/d+)?"
|
18
|
+
#define IUPMASK_INT "[+/-]?/d+"
|
19
|
+
#define IUPMASK_UINT "/d+"
|
20
|
+
|
21
|
+
|
22
|
+
int iupmaskSet (Ihandle *h, const char *mask, int autofill, int casei);
|
23
|
+
int iupmaskSetInt (Ihandle *h, int autofill, int min , int max);
|
24
|
+
int iupmaskSetFloat(Ihandle *h, int autofill, float min , float max);
|
25
|
+
void iupmaskRemove (Ihandle *h);
|
26
|
+
|
27
|
+
int iupmaskCheck (Ihandle *h);
|
28
|
+
|
29
|
+
int iupmaskGet (Ihandle *h, char **val);
|
30
|
+
int iupmaskGetFloat (Ihandle *h, float *fval);
|
31
|
+
int iupmaskGetDouble(Ihandle *h, double *dval);
|
32
|
+
int iupmaskGetInt (Ihandle *h, int *ival);
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
int iupmaskMatSet (Ihandle *h, const char *mask, int autofill, int casei, int lin, int col);
|
37
|
+
int iupmaskMatSetInt (Ihandle *h, int autofill, int min, int max, int lin, int col);
|
38
|
+
int iupmaskMatSetFloat(Ihandle *h, int autofill, float min, float max, int lin, int col);
|
39
|
+
void iupmaskMatRemove (Ihandle *h, int lin, int col);
|
40
|
+
|
41
|
+
int iupmaskMatCheck (Ihandle *h, int lin, int col);
|
42
|
+
|
43
|
+
int iupmaskMatGet (Ihandle *h, char **val, int lin, int col);
|
44
|
+
int iupmaskMatGetFloat (Ihandle *h, float *fval, int lin, int col);
|
45
|
+
int iupmaskMatGetDouble(Ihandle *h, double *dval, int lin, int col);
|
46
|
+
int iupmaskMatGetInt (Ihandle *h, int *ival, int lin, int col);
|
47
|
+
|
48
|
+
#ifdef __cplusplus
|
49
|
+
}
|
50
|
+
#endif
|
51
|
+
|
52
|
+
#endif
|
@@ -0,0 +1,69 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupmatrix control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPMATRIX_H
|
8
|
+
#define __IUPMATRIX_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
/*
|
15
|
+
* Prototipos das funcao de incializacao e instaciancao e
|
16
|
+
* atributos especificos da matrix.
|
17
|
+
*/
|
18
|
+
|
19
|
+
Ihandle* IupMatrix(char *action);
|
20
|
+
|
21
|
+
void IupMatSetAttribute (Ihandle *n, const char* a, int l, int c, char* v);
|
22
|
+
void IupMatStoreAttribute(Ihandle *n, const char* a, int l, int c, char* v);
|
23
|
+
char* IupMatGetAttribute (Ihandle *n, const char* a, int l, int c);
|
24
|
+
int IupMatGetInt (Ihandle *n, const char* a, int l, int c);
|
25
|
+
float IupMatGetFloat (Ihandle *n, const char* a, int l, int c);
|
26
|
+
void IupMatSetfAttribute (Ihandle *n, const char* a, int l, int c, const char* f, ...);
|
27
|
+
|
28
|
+
|
29
|
+
#define IUP_ENTERITEM_CB "ENTERITEM_CB"
|
30
|
+
#define IUP_LEAVEITEM_CB "LEAVEITEM_CB"
|
31
|
+
#define IUP_EDITION_CB "EDITION_CB"
|
32
|
+
#define IUP_CLICK_CB "CLICK_CB"
|
33
|
+
#define IUP_DROP_CB "DROP_CB"
|
34
|
+
#define IUP_DROPSELECT_CB "DROPSELECT_CB"
|
35
|
+
#define IUP_DROPCHECK_CB "DROPCHECK_CB"
|
36
|
+
#define IUP_SCROLL_CB "SCROLL_CB"
|
37
|
+
#define IUP_VALUE_CB "VALUE_CB"
|
38
|
+
#define IUP_VALUE_EDIT_CB "VALUE_EDIT_CB"
|
39
|
+
#define IUP_FIELD_CB "FIELD_CB"
|
40
|
+
#define IUP_RESIZEMATRIX "RESIZEMATRIX"
|
41
|
+
#define IUP_ADDLIN "ADDLIN"
|
42
|
+
#define IUP_ADDCOL "ADDCOL"
|
43
|
+
#define IUP_DELLIN "DELLIN"
|
44
|
+
#define IUP_DELCOL "DELCOL"
|
45
|
+
#define IUP_NUMLIN "NUMLIN"
|
46
|
+
#define IUP_NUMCOL "NUMCOL"
|
47
|
+
#define IUP_NUMLIN_VISIBLE "NUMLIN_VISIBLE"
|
48
|
+
#define IUP_NUMCOL_VISIBLE "NUMCOL_VISIBLE"
|
49
|
+
#define IUP_MARKED "MARKED"
|
50
|
+
#define IUP_WIDTHDEF "WIDTHDEF"
|
51
|
+
#define IUP_HEIGHTDEF "HEIGHTDEF"
|
52
|
+
#define IUP_AREA "AREA"
|
53
|
+
#define IUP_MARK_MODE "MARK_MODE"
|
54
|
+
#define IUP_LIN "LIN"
|
55
|
+
#define IUP_COL "COL"
|
56
|
+
#define IUP_LINCOL "LINCOL"
|
57
|
+
#define IUP_CELL "CELL"
|
58
|
+
#define IUP_EDIT_MODE "EDIT_MODE"
|
59
|
+
#define IUP_FOCUS_CELL "FOCUS_CELL"
|
60
|
+
#define IUP_ORIGIN "ORIGIN"
|
61
|
+
#define IUP_REDRAW "REDRAW"
|
62
|
+
#define IUP_PREVIOUSVALUE "PREVIOUSVALUE"
|
63
|
+
#define IUP_MOUSEMOVE_CB "MOUSEMOVE_CB"
|
64
|
+
|
65
|
+
#ifdef __cplusplus
|
66
|
+
}
|
67
|
+
#endif
|
68
|
+
|
69
|
+
#endif
|
@@ -0,0 +1,24 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupole control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPOLE_H
|
8
|
+
#define __IUPOLE_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
Ihandle *IupOleControl(const char *);
|
15
|
+
void IupOleControlOpen(void);
|
16
|
+
|
17
|
+
void *IupOleControl_getclass(void);
|
18
|
+
|
19
|
+
#ifdef __cplusplus
|
20
|
+
}
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#endif
|
24
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupsbox control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPSBOX_H
|
8
|
+
#define __IUPSBOX_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
Ihandle* IupSbox(Ihandle *child);
|
15
|
+
|
16
|
+
#ifdef __cplusplus
|
17
|
+
}
|
18
|
+
#endif
|
19
|
+
|
20
|
+
#endif
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupspeech control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPSPEECH_H
|
8
|
+
#define __IUPSPEECH_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
int IupSpeechOpen(void);
|
15
|
+
void IupSpeechClose(void);
|
16
|
+
Ihandle *IupSpeech(void);
|
17
|
+
|
18
|
+
#ifdef __cplusplus
|
19
|
+
}
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#endif
|
23
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupspin control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPSPIN_H
|
8
|
+
#define __IUPSPIN_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
Ihandle *IupSpin(void);
|
15
|
+
Ihandle* IupSpinbox(Ihandle* ctrl);
|
16
|
+
|
17
|
+
#ifdef __cplusplus
|
18
|
+
}
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#endif
|
@@ -0,0 +1,79 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iuptabs control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPTABS_H
|
8
|
+
#define __IUPTABS_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
/* callbacks */
|
15
|
+
|
16
|
+
/* Atributos */
|
17
|
+
#ifndef ICTL_TOP
|
18
|
+
#define ICTL_TOP "TOP"
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#ifndef ICTL_BOTTOM
|
22
|
+
#define ICTL_BOTTOM "BOTTOM"
|
23
|
+
#endif
|
24
|
+
|
25
|
+
#ifndef ICTL_LEFT
|
26
|
+
#define ICTL_LEFT "LEFT"
|
27
|
+
#endif
|
28
|
+
|
29
|
+
#ifndef ICTL_RIGHT
|
30
|
+
#define ICTL_RIGHT "RIGHT"
|
31
|
+
#endif
|
32
|
+
|
33
|
+
#ifndef ICTL_TABTYPE
|
34
|
+
#define ICTL_TABTYPE "TABTYPE"
|
35
|
+
#endif
|
36
|
+
|
37
|
+
#ifndef ICTL_TABTITLE
|
38
|
+
#define ICTL_TABTITLE "TABTITLE"
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#ifndef ICTL_TABSIZE
|
42
|
+
#define ICTL_TABSIZE "TABSIZE"
|
43
|
+
#endif
|
44
|
+
|
45
|
+
#ifndef ICTL_TABCHANGE_CB
|
46
|
+
#define ICTL_TABCHANGE_CB "TABCHANGE_CB"
|
47
|
+
#endif
|
48
|
+
|
49
|
+
#ifndef ICTL_FONT
|
50
|
+
#define ICTL_FONT "FONT"
|
51
|
+
#endif
|
52
|
+
|
53
|
+
#ifndef ICTL_FONT_ACTIVE
|
54
|
+
#define ICTL_FONT_ACTIVE "FONT_ACTIVE"
|
55
|
+
#endif
|
56
|
+
|
57
|
+
#ifndef ICTL_FONT_INACTIVE
|
58
|
+
#define ICTL_FONT_INACTIVE "FONT_INACTIVE"
|
59
|
+
#endif
|
60
|
+
|
61
|
+
#ifndef IUP_FGCOLOR
|
62
|
+
#define IUP_FGCOLOR "FGCOLOR"
|
63
|
+
#endif
|
64
|
+
|
65
|
+
#ifndef IUP_BGCOLOR
|
66
|
+
#define IUP_BGCOLOR "BGCOLOR"
|
67
|
+
#endif
|
68
|
+
|
69
|
+
|
70
|
+
/* iuptabs */
|
71
|
+
|
72
|
+
Ihandle *IupTabsv(Ihandle** params);
|
73
|
+
Ihandle *IupTabs(Ihandle* first, ...);
|
74
|
+
|
75
|
+
#ifdef __cplusplus
|
76
|
+
}
|
77
|
+
#endif
|
78
|
+
|
79
|
+
#endif
|