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,23 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief DGN driver
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_DGN_H
|
8
|
+
#define __CD_DGN_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
cdContext* cdContextDGN(void);
|
15
|
+
|
16
|
+
#define CD_DGN cdContextDGN()
|
17
|
+
|
18
|
+
#ifdef __cplusplus
|
19
|
+
}
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#endif /* ifndef __CD_DGN_ */
|
23
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief DXF driver
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_DXF_H
|
8
|
+
#define __CD_DXF_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
cdContext* cdContextDXF(void);
|
15
|
+
|
16
|
+
#define CD_DXF cdContextDXF()
|
17
|
+
|
18
|
+
#ifdef __cplusplus
|
19
|
+
}
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#endif /* ifndef __CD_DXF_ */
|
@@ -0,0 +1,22 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief EMF driver
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_EMF_H
|
8
|
+
#define __CD_EMF_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
cdContext* cdContextEMF(void);
|
15
|
+
|
16
|
+
#define CD_EMF cdContextEMF()
|
17
|
+
|
18
|
+
#ifdef __cplusplus
|
19
|
+
}
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#endif
|
@@ -0,0 +1,29 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief GDI+ Control
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_GDIPLUS_H
|
8
|
+
#define __CD_GDIPLUS_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef WIN32
|
15
|
+
void cdInitGdiPlus(void); /* old function, replaced by cdInitContextPlus */
|
16
|
+
#else
|
17
|
+
#define cdInitGdiPlus() (0)
|
18
|
+
#endif
|
19
|
+
|
20
|
+
/* Windows GDI+ Adicional Polygons */
|
21
|
+
#define CD_SPLINE (CD_POLYCUSTOM+0)
|
22
|
+
#define CD_FILLSPLINE (CD_POLYCUSTOM+1)
|
23
|
+
#define CD_FILLGRADIENT (CD_POLYCUSTOM+2)
|
24
|
+
|
25
|
+
#ifdef __cplusplus
|
26
|
+
}
|
27
|
+
#endif
|
28
|
+
|
29
|
+
#endif /* ifndef _CD_GDIPLUS_ */
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Server Image driver
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_IMAGE_H
|
8
|
+
#define __CD_IMAGE_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
cdContext* cdContextImage(void);
|
15
|
+
|
16
|
+
#define CD_IMAGE cdContextImage()
|
17
|
+
|
18
|
+
#ifdef __cplusplus
|
19
|
+
}
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#endif /* ifndef __CD_IMAGE_ */
|
23
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief IMAGERGB driver
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_IRGB_H
|
8
|
+
#define __CD_IRGB_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
cdContext* cdContextImageRGB(void);
|
15
|
+
cdContext* cdContextDBufferRGB(void);
|
16
|
+
|
17
|
+
#define CD_IMAGERGB cdContextImageRGB()
|
18
|
+
#define CD_DBUFFERRGB cdContextDBufferRGB()
|
19
|
+
|
20
|
+
unsigned char* cdRedImage(cdCanvas* cnv);
|
21
|
+
unsigned char* cdGreenImage(cdCanvas* cnv);
|
22
|
+
unsigned char* cdBlueImage(cdCanvas* cnv);
|
23
|
+
unsigned char* cdAlphaImage(cdCanvas* cnv);
|
24
|
+
|
25
|
+
|
26
|
+
#ifdef __cplusplus
|
27
|
+
}
|
28
|
+
#endif
|
29
|
+
|
30
|
+
#endif /* ifndef __CD_IRGB_ */
|
@@ -0,0 +1,22 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief IUP driver
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_IUP_H
|
8
|
+
#define __CD_IUP_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
cdContext* cdContextIup(void);
|
15
|
+
|
16
|
+
#define CD_IUP cdContextIup()
|
17
|
+
|
18
|
+
#ifdef __cplusplus
|
19
|
+
}
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#endif
|
@@ -0,0 +1,39 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Lua Binding Control
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_LUA_H
|
8
|
+
#define __CD_LUA_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifdef LUA_NOOBJECT /* Lua 3 */
|
15
|
+
void cdlua_open(void);
|
16
|
+
void cdlua_close(void);
|
17
|
+
|
18
|
+
/* utilities */
|
19
|
+
cdCanvas* cdlua_getcanvas(void); /* pos=1, deprecated use cdlua_checkcanvas */
|
20
|
+
cdCanvas* cdlua_checkcanvas(int pos);
|
21
|
+
void cdlua_pushcanvas(cdCanvas* canvas);
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#ifdef LUA_TNONE /* Lua 5 */
|
25
|
+
int cdlua_open(lua_State *L);
|
26
|
+
int cdlua_close(lua_State *L);
|
27
|
+
|
28
|
+
/* utilities */
|
29
|
+
cdCanvas* cdlua_getcanvas(lua_State * L); /* pos=1, deprecated use cdlua_checkcanvas */
|
30
|
+
cdCanvas* cdlua_checkcanvas(lua_State * L, int pos);
|
31
|
+
void cdlua_pushcanvas(lua_State * L, cdCanvas* canvas);
|
32
|
+
#endif
|
33
|
+
|
34
|
+
#ifdef __cplusplus
|
35
|
+
}
|
36
|
+
#endif
|
37
|
+
|
38
|
+
#endif
|
39
|
+
|
@@ -0,0 +1,120 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Private Lua 3 Binding Functions
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CDLUA3_PRIVATE_H
|
8
|
+
#define __CDLUA3_PRIVATE_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#define COLOR_TAG "CDLUA_COLOR_TAG"
|
15
|
+
#define CANVAS_TAG "CDLUA_CANVAS_TAG"
|
16
|
+
#define STATE_TAG "CDLUA_STATE_TAG"
|
17
|
+
#define BITMAP_TAG "CDLUA_BITMAP_TAG"
|
18
|
+
#define IMAGE_TAG "CDLUA_IMAGE_TAG"
|
19
|
+
#define IMAGERGB_TAG "CDLUA_IMAGERGB_TAG"
|
20
|
+
#define IMAGERGBA_TAG "CDLUA_IMAGERGBA_TAG"
|
21
|
+
#define STIPPLE_TAG "CDLUA_STIPPLE_TAG"
|
22
|
+
#define PATTERN_TAG "CDLUA_PATTERN_TAG"
|
23
|
+
#define PALETTE_TAG "CDLUA_PALETTE_TAG"
|
24
|
+
#define IMAGEMAP_TAG "CDLUA_IMAGEMAP_TAG"
|
25
|
+
#define CHANNEL_TAG "CDLUA_CHANNEL_TAG"
|
26
|
+
|
27
|
+
/* context management */
|
28
|
+
|
29
|
+
typedef struct _cdCallbackLUA {
|
30
|
+
int lock;
|
31
|
+
char *name;
|
32
|
+
cdCallback func;
|
33
|
+
} cdCallbackLUA;
|
34
|
+
|
35
|
+
typedef struct _cdContextLUA {
|
36
|
+
int id;
|
37
|
+
char *name;
|
38
|
+
cdContext* (*ctx)(void);
|
39
|
+
void* (*checkdata)(int param);
|
40
|
+
cdCallbackLUA* cb_list;
|
41
|
+
int cb_n;
|
42
|
+
} cdContextLUA;
|
43
|
+
|
44
|
+
void cdlua_addcontext(cdContextLUA* luactx);
|
45
|
+
void cdlua_register(char* name, lua_CFunction func);
|
46
|
+
void cdlua_pushnumber(double num, char* name);
|
47
|
+
|
48
|
+
/* tag management */
|
49
|
+
|
50
|
+
typedef struct _canvas_t {
|
51
|
+
cdCanvas *cd_canvas;
|
52
|
+
} canvas_t;
|
53
|
+
|
54
|
+
typedef struct _state_t {
|
55
|
+
cdState *state;
|
56
|
+
} state_t;
|
57
|
+
|
58
|
+
typedef struct _stipple_t {
|
59
|
+
unsigned char *value;
|
60
|
+
int width;
|
61
|
+
int height;
|
62
|
+
long int size;
|
63
|
+
} stipple_t;
|
64
|
+
|
65
|
+
typedef struct _pattern_t {
|
66
|
+
long int *color;
|
67
|
+
int width;
|
68
|
+
int height;
|
69
|
+
long int size;
|
70
|
+
} pattern_t;
|
71
|
+
|
72
|
+
typedef struct _palette_t {
|
73
|
+
long int *color;
|
74
|
+
long int size;
|
75
|
+
} palette_t;
|
76
|
+
|
77
|
+
typedef struct _image_t {
|
78
|
+
void *cd_image;
|
79
|
+
} image_t;
|
80
|
+
|
81
|
+
typedef struct _imagergb_t {
|
82
|
+
unsigned char *red;
|
83
|
+
unsigned char *green;
|
84
|
+
unsigned char *blue;
|
85
|
+
int width;
|
86
|
+
int height;
|
87
|
+
long int size;
|
88
|
+
} imagergb_t;
|
89
|
+
|
90
|
+
typedef struct _imagergba_t {
|
91
|
+
unsigned char *red;
|
92
|
+
unsigned char *green;
|
93
|
+
unsigned char *blue;
|
94
|
+
unsigned char *alpha;
|
95
|
+
int width;
|
96
|
+
int height;
|
97
|
+
long int size;
|
98
|
+
} imagergba_t;
|
99
|
+
|
100
|
+
typedef struct _imagemap_t {
|
101
|
+
unsigned char *index;
|
102
|
+
int width;
|
103
|
+
int height;
|
104
|
+
long int size;
|
105
|
+
} imagemap_t;
|
106
|
+
|
107
|
+
typedef struct _channel_t {
|
108
|
+
unsigned char *value;
|
109
|
+
long int size;
|
110
|
+
} channel_t;
|
111
|
+
|
112
|
+
typedef struct _bitmap_t {
|
113
|
+
cdBitmap *image;
|
114
|
+
} bitmap_t;
|
115
|
+
|
116
|
+
#ifdef __cplusplus
|
117
|
+
}
|
118
|
+
#endif
|
119
|
+
|
120
|
+
#endif
|
@@ -0,0 +1,141 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Private Lua 5 Binding Functions
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CDLUA5_PRIVATE_H
|
8
|
+
#define __CDLUA5_PRIVATE_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
|
15
|
+
/* context management */
|
16
|
+
|
17
|
+
typedef struct _cdluaCallback {
|
18
|
+
int lock;
|
19
|
+
const char* name;
|
20
|
+
cdCallback func;
|
21
|
+
} cdluaCallback;
|
22
|
+
|
23
|
+
typedef struct _cdluaContext {
|
24
|
+
int id;
|
25
|
+
const char* name;
|
26
|
+
cdContext* (*ctx)(void);
|
27
|
+
void* (*checkdata)(lua_State* L,int param);
|
28
|
+
cdluaCallback* cb_list;
|
29
|
+
int cb_n;
|
30
|
+
} cdluaContext;
|
31
|
+
|
32
|
+
typedef struct _cdluaLuaState {
|
33
|
+
cdCanvas* void_canvas; /* the VOID canvas to avoid a NULL active canvas */
|
34
|
+
cdluaContext* drivers[50]; /* store the registered drivers, map integer values to cdContext */
|
35
|
+
int numdrivers;
|
36
|
+
} cdluaLuaState;
|
37
|
+
|
38
|
+
/* metatables */
|
39
|
+
|
40
|
+
typedef struct _cdluaStipple {
|
41
|
+
unsigned char* stipple;
|
42
|
+
int width;
|
43
|
+
int height;
|
44
|
+
long int size;
|
45
|
+
} cdluaStipple;
|
46
|
+
|
47
|
+
typedef struct _cdluaPattern {
|
48
|
+
long* pattern;
|
49
|
+
int width;
|
50
|
+
int height;
|
51
|
+
long int size;
|
52
|
+
} cdluaPattern;
|
53
|
+
|
54
|
+
/* this is the same declaration used in the IM toolkit for imPalette in Lua */
|
55
|
+
typedef struct _cdluaPalette {
|
56
|
+
long* color;
|
57
|
+
int count;
|
58
|
+
} cdluaPalette;
|
59
|
+
|
60
|
+
typedef struct _cdluaImageRGB {
|
61
|
+
unsigned char* red;
|
62
|
+
unsigned char* green;
|
63
|
+
unsigned char* blue;
|
64
|
+
int width;
|
65
|
+
int height;
|
66
|
+
long int size;
|
67
|
+
int free;
|
68
|
+
} cdluaImageRGB;
|
69
|
+
|
70
|
+
typedef struct _cdluaImageRGBA {
|
71
|
+
unsigned char* red;
|
72
|
+
unsigned char* green;
|
73
|
+
unsigned char* blue;
|
74
|
+
unsigned char* alpha;
|
75
|
+
int width;
|
76
|
+
int height;
|
77
|
+
long int size;
|
78
|
+
int free;
|
79
|
+
} cdluaImageRGBA;
|
80
|
+
|
81
|
+
typedef struct _cdluaImageMap {
|
82
|
+
unsigned char* index;
|
83
|
+
int width;
|
84
|
+
int height;
|
85
|
+
long int size;
|
86
|
+
} cdluaImageMap;
|
87
|
+
|
88
|
+
typedef struct _cdluaImageChannel {
|
89
|
+
unsigned char* channel;
|
90
|
+
long int size;
|
91
|
+
} cdluaImageChannel;
|
92
|
+
|
93
|
+
|
94
|
+
cdluaLuaState* cdlua_getstate(lua_State* L);
|
95
|
+
cdluaContext* cdlua_getcontext(lua_State* L, int param);
|
96
|
+
|
97
|
+
lua_State* cdlua_getplaystate(void);
|
98
|
+
void cdlua_setplaystate(lua_State* L);
|
99
|
+
|
100
|
+
void cdlua_kill_active(lua_State* L, cdCanvas* canvas);
|
101
|
+
void cdlua_open_active(lua_State* L, cdluaLuaState* cdL);
|
102
|
+
|
103
|
+
void cdlua_open_canvas(lua_State* L);
|
104
|
+
|
105
|
+
void cdlua_addcontext(lua_State* L, cdluaLuaState* cdL, cdluaContext* luactx);
|
106
|
+
void cdlua_initdrivers(lua_State* L, cdluaLuaState* cdL);
|
107
|
+
|
108
|
+
cdluaPalette* cdlua_checkpalette(lua_State* L, int param);
|
109
|
+
cdluaStipple* cdlua_checkstipple(lua_State* L, int param);
|
110
|
+
cdluaPattern* cdlua_checkpattern(lua_State* L, int param);
|
111
|
+
cdluaImageRGB* cdlua_checkimagergb(lua_State* L, int param);
|
112
|
+
cdluaImageRGBA* cdlua_checkimagergba(lua_State* L, int param);
|
113
|
+
cdluaImageMap* cdlua_checkimagemap(lua_State* L, int param);
|
114
|
+
cdluaImageChannel* cdlua_checkchannel(lua_State* L, int param);
|
115
|
+
|
116
|
+
long cdlua_checkcolor(lua_State* L, int param);
|
117
|
+
cdImage* cdlua_checkimage(lua_State* L, int param);
|
118
|
+
cdState* cdlua_checkstate(lua_State* L, int param);
|
119
|
+
cdBitmap* cdlua_checkbitmap(lua_State* L, int param);
|
120
|
+
|
121
|
+
void cdlua_pushpalette(lua_State* L, long* palette, int size);
|
122
|
+
void cdlua_pushstipple(lua_State* L, unsigned char* stipple, int width, int height);
|
123
|
+
void cdlua_pushpattern(lua_State* L, long int* pattern, int width, int height);
|
124
|
+
void cdlua_pushimagergb(lua_State* L, unsigned char* red, unsigned char* green, unsigned char* blue, int width, int height);
|
125
|
+
void cdlua_pushimagergba(lua_State* L, unsigned char* red, unsigned char* green, unsigned char* blue, unsigned char* alpha, int width, int height);
|
126
|
+
void cdlua_pushimagemap(lua_State* L, unsigned char* index, int width, int height);
|
127
|
+
void cdlua_pushchannel(lua_State* L, unsigned char* channel, int size);
|
128
|
+
|
129
|
+
void cdlua_pushimage(lua_State* L, cdImage* image);
|
130
|
+
void cdlua_pushstate(lua_State* L, cdState* state);
|
131
|
+
void cdlua_pushbitmap(lua_State* L, cdBitmap* bitmap);
|
132
|
+
|
133
|
+
void cdlua_pushimagergb_ex(lua_State* L, unsigned char* red, unsigned char* green, unsigned char* blue, int width, int height);
|
134
|
+
void cdlua_pushimagergba_ex(lua_State* L, unsigned char* red, unsigned char* green, unsigned char* blue, unsigned char* alpha, int width, int height);
|
135
|
+
|
136
|
+
|
137
|
+
#ifdef __cplusplus
|
138
|
+
}
|
139
|
+
#endif
|
140
|
+
|
141
|
+
#endif
|