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 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
|