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,40 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief PPlot component for Iup.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUP_PPLOT_H
|
8
|
+
#define __IUP_PPLOT_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
/* Initialize PPlot widget class */
|
15
|
+
void IupPPlotOpen(void);
|
16
|
+
|
17
|
+
/* Create an PPlot widget instance */
|
18
|
+
Ihandle* IupPPlot(void);
|
19
|
+
|
20
|
+
/* Add dataset to plot */
|
21
|
+
void IupPPlotBegin(Ihandle *self, int strXdata);
|
22
|
+
void IupPPlotAdd(Ihandle *self, float x, float y);
|
23
|
+
void IupPPlotAddStr(Ihandle *self, const char* x, float y);
|
24
|
+
int IupPPlotEnd(Ihandle *self);
|
25
|
+
|
26
|
+
void IupPPlotInsertStr(Ihandle *self, int index, int sample_index, const char* x, float y);
|
27
|
+
void IupPPlotInsert(Ihandle *self, int index, int sample_index, float x, float y);
|
28
|
+
|
29
|
+
/* convert from plot coordinates to pixels */
|
30
|
+
void IupPPlotTransform(Ihandle* self, float x, float y, int *ix, int *iy);
|
31
|
+
|
32
|
+
/* Plot on the given device. Uses a "cdCanvas*". */
|
33
|
+
void IupPPlotPaintTo(Ihandle *self, void *cnv);
|
34
|
+
|
35
|
+
|
36
|
+
#ifdef __cplusplus
|
37
|
+
}
|
38
|
+
#endif
|
39
|
+
|
40
|
+
#endif
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupcolorbrowser control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPCB_H
|
8
|
+
#define __IUPCB_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
Ihandle *IupColorBrowser(void);
|
15
|
+
|
16
|
+
#define IUP_RGB "RGB"
|
17
|
+
#define IUP_CHANGE_CB "CHANGE_CB"
|
18
|
+
#define IUP_DRAG_CB "DRAG_CB"
|
19
|
+
|
20
|
+
#ifdef __cplusplus
|
21
|
+
}
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#endif
|
25
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupcbox control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPCBOX_H
|
8
|
+
#define __IUPCBOX_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
Ihandle *IupCbox(Ihandle* first, ...);
|
15
|
+
Ihandle *IupCboxv(Ihandle** params);
|
16
|
+
Ihandle *IupCboxBuilder(Ihandle * first,...);
|
17
|
+
Ihandle *IupCboxBuilderv(Ihandle** params);
|
18
|
+
|
19
|
+
#ifdef __cplusplus
|
20
|
+
}
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#endif
|
@@ -0,0 +1,42 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Contains all function pointer typedefs.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPCBS_H
|
8
|
+
#define __IUPCBS_H
|
9
|
+
|
10
|
+
typedef int (*IFidle)(void); /* idle */
|
11
|
+
|
12
|
+
typedef int (*IFn)(Ihandle*); /* default definition */
|
13
|
+
typedef int (*IFni)(Ihandle*, int); /* k_any, show_cb, toggle_action, spin_cb, branchopen_cb, branchclose_cb, executeleaf_cb, showrename_cb, rightclick_cb, extended_cb */
|
14
|
+
typedef int (*IFnii)(Ihandle*, int, int); /* resize_cb, caret_cb, matrix_mousemove_cb, enteritem_cb, leaveitem_cb, scrolltop_cb, dropcheck_cb, selection_cb, select_cb, switch_cb */
|
15
|
+
typedef int (*IFniii)(Ihandle*, int, int, int); /* trayclick_cb, edition_cb */
|
16
|
+
typedef int (*IFniiii)(Ihandle*, int, int, int, int); /* dragdrop_cb */
|
17
|
+
typedef int (*IFniiiiii)(Ihandle*, int, int, int, int, int, int); /* draw_cb */
|
18
|
+
|
19
|
+
typedef int (*IFnff)(Ihandle*, float, float); /* canvas_action */
|
20
|
+
typedef int (*IFniff)(Ihandle*,int,float,float); /* scroll_cb */
|
21
|
+
typedef int (*IFnfiis)(Ihandle*,float,int,int,char*); /* wheel_cb */
|
22
|
+
|
23
|
+
typedef int (*IFnnii)(Ihandle*, Ihandle*, int, int); /* drop_cb */
|
24
|
+
typedef int (*IFnnn)(Ihandle*, Ihandle*, Ihandle*); /* tabchange_cb */
|
25
|
+
typedef int (*IFnss)(Ihandle*, char *, char *); /* file_cb */
|
26
|
+
typedef int (*IFns)(Ihandle*, char *); /* multiselect_cb */
|
27
|
+
typedef int (*IFnis)(Ihandle*, int, char *); /* text_action, multiline_action, edit_cb, renamenode_cb, rename_cb */
|
28
|
+
typedef int (*IFnsii)(Ihandle*, char*, int, int); /* list_action */
|
29
|
+
typedef int (*IFnsiii)(Ihandle*, char*, int, int, int); /* dropfiles_cb */
|
30
|
+
typedef int (*IFniis)(Ihandle*, int, int, char*); /* motion_cb, click_cb, value_edit_cb */
|
31
|
+
typedef int (*IFniiiis)(Ihandle*, int, int, int, int, char*); /* button_cb, matrix_action */
|
32
|
+
|
33
|
+
typedef int (*IFnIi)(Ihandle*, int*, int); /* multiselection_cb, multiselection_cb */
|
34
|
+
typedef int (*IFnd)(Ihandle*, double); /* mousemove_cb, button_press_cb, button_release_cb */
|
35
|
+
typedef int (*IFniiIII)(Ihandle*, int, int, int*, int*, int*); /* fgcolor_cb, bgcolor_cb */
|
36
|
+
typedef int (*IFniinsii)(Ihandle*, int, int, Ihandle*, char*, int, int); /* dropselect_cb */
|
37
|
+
typedef int (*IFnccc)(Ihandle*, unsigned char, unsigned char, unsigned char); /* drag_cb, change_cb */
|
38
|
+
|
39
|
+
typedef char* (*sIFnii)(Ihandle*, int, int); /* value_cb */
|
40
|
+
typedef char* (*sIFni)(Ihandle*, int); /* cell_cb */
|
41
|
+
|
42
|
+
#endif
|
@@ -0,0 +1,130 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupcells control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPCELLS_H
|
8
|
+
#define __IUPCELLS_H
|
9
|
+
|
10
|
+
#define IUP_OUT -999
|
11
|
+
|
12
|
+
#ifndef IUP_ALL
|
13
|
+
#define IUP_ALL "ALL"
|
14
|
+
#endif
|
15
|
+
|
16
|
+
#ifndef IUP_BOXED
|
17
|
+
#define IUP_BOXED "BOXED"
|
18
|
+
#endif
|
19
|
+
|
20
|
+
#ifndef IUP_CLIPPED
|
21
|
+
#define IUP_CLIPPED "CLIPPED"
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#ifndef IUP_TRANSPARENT
|
25
|
+
#define IUP_TRANSPARENT "TRANSPARENT"
|
26
|
+
#endif
|
27
|
+
|
28
|
+
#ifndef IUP_NON_SCROLLABLE_LINES
|
29
|
+
#define IUP_NON_SCROLLABLE_LINES "NON_SCROLLABLE_LINES"
|
30
|
+
#endif
|
31
|
+
|
32
|
+
#ifndef IUP_NON_SCROLLABLE_COLS
|
33
|
+
#define IUP_NON_SCROLLABLE_COLS "NON_SCROLLABLE_COLS"
|
34
|
+
#endif
|
35
|
+
|
36
|
+
#ifndef IUP_ORIGIN
|
37
|
+
#define IUP_ORIGIN "ORIGIN"
|
38
|
+
#endif
|
39
|
+
|
40
|
+
#ifndef IUP_NO_COLOR
|
41
|
+
#define IUP_NO_COLOR "NO_COLOR"
|
42
|
+
#endif
|
43
|
+
|
44
|
+
#ifndef IUP_FIRST_LINE
|
45
|
+
#define IUP_FIRST_LINE "FIRST_LINE"
|
46
|
+
#endif
|
47
|
+
|
48
|
+
#ifndef IUP_FIRST_COL
|
49
|
+
#define IUP_FIRST_COL "FIRST_COL"
|
50
|
+
#endif
|
51
|
+
|
52
|
+
#ifndef IUP_DOUBLE_BUFFER
|
53
|
+
#define IUP_DOUBLE_BUFFER "DOUBLE_BUFFER"
|
54
|
+
#endif
|
55
|
+
|
56
|
+
#ifndef IUP_BUFFERIZE
|
57
|
+
#define IUP_BUFFERIZE "BUFFERIZE"
|
58
|
+
#endif
|
59
|
+
|
60
|
+
#ifndef IUP_REPAINT
|
61
|
+
#define IUP_REPAINT "REPAINT"
|
62
|
+
#endif
|
63
|
+
|
64
|
+
#ifndef IUP_LIMITS
|
65
|
+
#define IUP_LIMITS "LIMITS"
|
66
|
+
#endif
|
67
|
+
|
68
|
+
#ifndef IUP_CANVAS
|
69
|
+
#define IUP_CANVAS "CANVAS"
|
70
|
+
#endif
|
71
|
+
|
72
|
+
#ifndef IUP_IMAGE_CANVAS
|
73
|
+
#define IUP_IMAGE_CANVAS "IMAGE_CANVAS"
|
74
|
+
#endif
|
75
|
+
|
76
|
+
#ifndef IUP_FULL_VISIBLE
|
77
|
+
#define IUP_FULL_VISIBLE "FULL_VISIBLE"
|
78
|
+
#endif
|
79
|
+
|
80
|
+
#ifndef IUP_MOUSECLICK_CB
|
81
|
+
#define IUP_MOUSECLICK_CB "MOUSECLICK_CB"
|
82
|
+
#endif
|
83
|
+
|
84
|
+
#ifndef IUP_MOUSEMOTION_CB
|
85
|
+
#define IUP_MOUSEMOTION_CB "MOUSEMOTION_CB"
|
86
|
+
#endif
|
87
|
+
|
88
|
+
#ifndef IUP_DRAW_CB
|
89
|
+
#define IUP_DRAW_CB "DRAW_CB"
|
90
|
+
#endif
|
91
|
+
|
92
|
+
#ifndef IUP_WIDTH_CB
|
93
|
+
#define IUP_WIDTH_CB "WIDTH_CB"
|
94
|
+
#endif
|
95
|
+
|
96
|
+
#ifndef IUP_HEIGHT_CB
|
97
|
+
#define IUP_HEIGHT_CB "HEIGHT_CB"
|
98
|
+
#endif
|
99
|
+
|
100
|
+
#ifndef IUP_NLINES_CB
|
101
|
+
#define IUP_NLINES_CB "NLINES_CB"
|
102
|
+
#endif
|
103
|
+
|
104
|
+
#ifndef IUP_NCOLS_CB
|
105
|
+
#define IUP_NCOLS_CB "NCOLS_CB"
|
106
|
+
#endif
|
107
|
+
|
108
|
+
#ifndef IUP_HSPAN_CB
|
109
|
+
#define IUP_HSPAN_CB "HSPAN_CB"
|
110
|
+
#endif
|
111
|
+
|
112
|
+
#ifndef IUP_VSPAN_CB
|
113
|
+
#define IUP_VSPAN_CB "VSPAN_CB"
|
114
|
+
#endif
|
115
|
+
|
116
|
+
#ifndef IUP_SCROLLING_CB
|
117
|
+
#define IUP_SCROLLING_CB "SCROLLING_CB"
|
118
|
+
#endif
|
119
|
+
|
120
|
+
#ifdef __cplusplus
|
121
|
+
extern "C" {
|
122
|
+
#endif /* __cplusplus */
|
123
|
+
|
124
|
+
Ihandle* IupCells(void);
|
125
|
+
|
126
|
+
#ifdef __cplusplus
|
127
|
+
}
|
128
|
+
#endif /* __cplusplus */
|
129
|
+
|
130
|
+
#endif /* _iupcells_h */
|
@@ -0,0 +1,126 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief iupcolorbar control.
|
3
|
+
*
|
4
|
+
* See Copyright Notice in iup.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __IUPCOLORBAR_H
|
8
|
+
#define __IUPCOLORBAR_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
/** Attribute name for the number of sections */
|
15
|
+
#ifndef IUP_NUM_PARTS
|
16
|
+
#define IUP_NUM_PARTS "NUM_PARTS"
|
17
|
+
#endif
|
18
|
+
|
19
|
+
/** Attribute name for the number of cells */
|
20
|
+
#ifndef IUP_NUM_CELLS
|
21
|
+
#define IUP_NUM_CELLS "NUM_CELLS"
|
22
|
+
#endif
|
23
|
+
|
24
|
+
/** Attribute name for a color cell */
|
25
|
+
#ifndef IUP_CELL
|
26
|
+
#define IUP_CELL "CELL"
|
27
|
+
#endif
|
28
|
+
|
29
|
+
/** Attribute name for the preview area size */
|
30
|
+
#ifndef IUP_PREVIEW_SIZE
|
31
|
+
#define IUP_PREVIEW_SIZE "PREVIEW_SIZE"
|
32
|
+
#endif
|
33
|
+
|
34
|
+
/** Attribute name for showing the preview area */
|
35
|
+
#ifndef IUP_SHOW_PREVIEW
|
36
|
+
#define IUP_SHOW_PREVIEW "SHOW_PREVIEW"
|
37
|
+
#endif
|
38
|
+
|
39
|
+
/** Attribute name for showing the secondary color option */
|
40
|
+
#ifndef IUP_SHOW_SECONDARY
|
41
|
+
#define IUP_SHOW_SECONDARY "SHOW_SECONDARY"
|
42
|
+
#endif
|
43
|
+
|
44
|
+
/** Attribute name for setting the primary color */
|
45
|
+
#ifndef IUP_PRIMARY_CELL
|
46
|
+
#define IUP_PRIMARY_CELL "PRIMARY_CELL"
|
47
|
+
#endif
|
48
|
+
|
49
|
+
/** Attribute name for setting the primary color */
|
50
|
+
#ifndef IUP_SECONDARY_CELL
|
51
|
+
#define IUP_SECONDARY_CELL "SECONDARY_CELL"
|
52
|
+
#endif
|
53
|
+
|
54
|
+
/** Attribute name for setting the widget orientation */
|
55
|
+
#ifndef IUP_ORIENTATION
|
56
|
+
#define IUP_ORIENTATION "ORIENTATION"
|
57
|
+
#endif
|
58
|
+
|
59
|
+
/** Attribute name for setting the widget squared cell mode */
|
60
|
+
#ifndef IUP_SQUARED
|
61
|
+
#define IUP_SQUARED "SQUARED"
|
62
|
+
#endif
|
63
|
+
|
64
|
+
/** Attribute name for setting the widget 3D shadowed cell mode */
|
65
|
+
#ifndef IUP_SHADOWED
|
66
|
+
#define IUP_SHADOWED "SHADOWED"
|
67
|
+
#endif
|
68
|
+
|
69
|
+
/** Attribute name for setting the bufferization flag */
|
70
|
+
#ifndef IUP_BUFFERIZE
|
71
|
+
#define IUP_BUFFERIZE "BUFFERIZE"
|
72
|
+
#endif
|
73
|
+
|
74
|
+
/** Attribute name for setting the transparency color */
|
75
|
+
#ifndef IUP_TRANSPARENCY
|
76
|
+
#define IUP_TRANSPARENCY "TRANSPARENCY"
|
77
|
+
#endif
|
78
|
+
|
79
|
+
/** Attribute name for setting the color browser callback */
|
80
|
+
#ifndef IUP_CELL_CB
|
81
|
+
#define IUP_CELL_CB "CELL_CB"
|
82
|
+
#endif
|
83
|
+
|
84
|
+
/** Attribute name for setting the extended callback */
|
85
|
+
#ifndef IUP_EXTENDED_CB
|
86
|
+
#define IUP_EXTENDED_CB "EXTENDED_CB"
|
87
|
+
#endif
|
88
|
+
|
89
|
+
/** Attribute name for setting the color selection callback */
|
90
|
+
#ifndef IUP_SELECT_CB
|
91
|
+
#define IUP_SELECT_CB "SELECT_CB"
|
92
|
+
#endif
|
93
|
+
|
94
|
+
/** Attribute name for setting the switch primary-secondary callback */
|
95
|
+
#ifndef IUP_SWITCH_CB
|
96
|
+
#define IUP_SWITCH_CB "SWITCH_CB"
|
97
|
+
#endif
|
98
|
+
|
99
|
+
|
100
|
+
/** Value for the color selection type (primary color). @see IUP_SELECT_CB */
|
101
|
+
#ifndef IUP_PRIMARY
|
102
|
+
#define IUP_PRIMARY -1
|
103
|
+
#endif
|
104
|
+
|
105
|
+
/** Value for the color selection type (secondary color). @see IUP_SELECT_CB */
|
106
|
+
#ifndef IUP_SECONDARY
|
107
|
+
#define IUP_SECONDARY -2
|
108
|
+
#endif
|
109
|
+
|
110
|
+
/** Value for the colorbar orientation (vertical). */
|
111
|
+
#ifndef IUP_VERTICAL
|
112
|
+
#define IUP_VERTICAL "VERTICAL"
|
113
|
+
#endif
|
114
|
+
|
115
|
+
#ifndef IUP_HORIZONTAL
|
116
|
+
/** Value for the colorbar orientation (horizontal) */
|
117
|
+
#define IUP_HORIZONTAL "HORIZONTAL"
|
118
|
+
#endif
|
119
|
+
|
120
|
+
Ihandle* IupColorbar(void);
|
121
|
+
|
122
|
+
#ifdef __cplusplus
|
123
|
+
}
|
124
|
+
#endif
|
125
|
+
|
126
|
+
#endif
|
@@ -0,0 +1,62 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Internal exported functions. repeted from <iglobal.h>
|
3
|
+
* should remove this file!!!!
|
4
|
+
*
|
5
|
+
* See Copyright Notice in iup.h
|
6
|
+
*/
|
7
|
+
|
8
|
+
#ifndef __IUPCOMPAT_H
|
9
|
+
#define __IUPCOMPAT_H
|
10
|
+
|
11
|
+
#include <iupcbs.h>
|
12
|
+
#include <string.h>
|
13
|
+
#include <istrutil.h>
|
14
|
+
|
15
|
+
#ifdef __cplusplus
|
16
|
+
extern "C" {
|
17
|
+
#endif
|
18
|
+
|
19
|
+
/* idrv.h */
|
20
|
+
void iupdrvGetCharSize (Ihandle* n, int *w, int *h);
|
21
|
+
void iupdrvResizeObjects (Ihandle *n);
|
22
|
+
void iupdrvStringSize(Ihandle* n, const char* text, int *w, int *h);
|
23
|
+
int iupdrvGetScrollSize(void);
|
24
|
+
|
25
|
+
/* env.c */
|
26
|
+
int iupGetSize (Ihandle* n, int* w, int *h);
|
27
|
+
int iupGetColor(Ihandle* n, const char *a, unsigned int *r, unsigned int *g, unsigned int *b);
|
28
|
+
int iupGetRGB (const char *color, unsigned int *r, unsigned int *g, unsigned int *b);
|
29
|
+
void iupSetEnv(Ihandle* n, const char* a, const char* v);
|
30
|
+
void iupStoreEnv(Ihandle* n, const char* a, const char* v);
|
31
|
+
char* iupGetEnv(Ihandle* n, const char* a);
|
32
|
+
int iupGetEnvInt (Ihandle* n, const char* a);
|
33
|
+
char* iupGetEnvRaw (Ihandle* n, const char* a); /* no inheritance */
|
34
|
+
int iupCheck (Ihandle *n, const char *a);
|
35
|
+
char *iupGetBgColor(Ihandle* self);
|
36
|
+
char *iupGetParentBgColor (Ihandle* self);
|
37
|
+
|
38
|
+
/* calcsize.c */
|
39
|
+
int iupSetSize(Ihandle* root);
|
40
|
+
|
41
|
+
/* iup.c */
|
42
|
+
void iupSetPosX(Ihandle* self, int x);
|
43
|
+
void iupSetPosY(Ihandle* self, int y);
|
44
|
+
int iupGetPosX(Ihandle* self);
|
45
|
+
int iupGetPosY(Ihandle* self);
|
46
|
+
void iupSetCurrentWidth(Ihandle* self, int w);
|
47
|
+
void iupSetCurrentHeight(Ihandle* self, int h);
|
48
|
+
int iupGetCurrentWidth(Ihandle* self);
|
49
|
+
int iupGetCurrentHeight(Ihandle* self);
|
50
|
+
void* iupGetNativeHandle(Ihandle* self);
|
51
|
+
void iupSetNativeHandle(Ihandle* self, void* handle);
|
52
|
+
void iupSetNaturalWidth(Ihandle* self, int w);
|
53
|
+
void iupSetNaturalHeight(Ihandle* self, int h);
|
54
|
+
int iupGetNaturalWidth(Ihandle* self);
|
55
|
+
int iupGetNaturalHeight(Ihandle* self);
|
56
|
+
void* iupGetImageData(Ihandle* self);
|
57
|
+
|
58
|
+
#ifdef __cplusplus
|
59
|
+
}
|
60
|
+
#endif
|
61
|
+
|
62
|
+
#endif
|