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,358 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Canvas Class
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_CANVAS_HPP
|
8
|
+
#define __CD_CANVAS_HPP
|
9
|
+
|
10
|
+
#include "cd.h"
|
11
|
+
#include "wd.h"
|
12
|
+
|
13
|
+
class cdCanvasC
|
14
|
+
{
|
15
|
+
cdCanvas* canvas;
|
16
|
+
|
17
|
+
cdCanvasC() {};
|
18
|
+
|
19
|
+
public:
|
20
|
+
|
21
|
+
/* canvas init */
|
22
|
+
cdCanvasC(cdCanvas* _canvas)
|
23
|
+
{ this->canvas = _canvas; }
|
24
|
+
|
25
|
+
~cdCanvasC()
|
26
|
+
{ cdKillCanvas(this->canvas); }
|
27
|
+
|
28
|
+
cdContext* GetContext()
|
29
|
+
{ return cdCanvasGetContext(canvas); }
|
30
|
+
int Activate()
|
31
|
+
{ return cdCanvasActivate(canvas); }
|
32
|
+
void Deactivate()
|
33
|
+
{ cdCanvasDeactivate(canvas); }
|
34
|
+
|
35
|
+
/* control */
|
36
|
+
int Simulate(int mode)
|
37
|
+
{ return cdCanvasSimulate(canvas, mode); }
|
38
|
+
void Flush()
|
39
|
+
{ cdCanvasFlush(canvas); }
|
40
|
+
void Clear()
|
41
|
+
{ cdCanvasClear(canvas); }
|
42
|
+
cdState* SaveState()
|
43
|
+
{ return cdCanvasSaveState(canvas); }
|
44
|
+
void RestoreState(cdState* state)
|
45
|
+
{ cdCanvasRestoreState(canvas, state); }
|
46
|
+
void SetAttribute(const char* name, char* data)
|
47
|
+
{ cdCanvasSetAttribute(canvas, name, data); }
|
48
|
+
char* GetAttribute(const char* name)
|
49
|
+
{ return cdCanvasGetAttribute(canvas, name); }
|
50
|
+
|
51
|
+
/* interpretation */
|
52
|
+
int Play(cdContext *context, int xmin, int xmax, int ymin, int ymax, void *data)
|
53
|
+
{ return cdCanvasPlay(canvas, context, xmin, xmax, ymin, ymax, data); }
|
54
|
+
|
55
|
+
/* coordinate transformation */
|
56
|
+
void GetSize(int *width, int *height, double *width_mm, double *height_mm)
|
57
|
+
{ cdCanvasGetSize(canvas, width, height, width_mm, height_mm); }
|
58
|
+
int UpdateYAxis(int* y)
|
59
|
+
{ return cdCanvasUpdateYAxis(canvas, y); }
|
60
|
+
void MM2Pixel(double mm_dx, double mm_dy, int *dx, int *dy)
|
61
|
+
{ cdCanvasMM2Pixel(canvas, mm_dx, mm_dy, dx, dy); }
|
62
|
+
void Pixel2MM(int dx, int dy, double *mm_dx, double *mm_dy)
|
63
|
+
{ cdCanvasPixel2MM(canvas, dx, dy, mm_dx, mm_dy); }
|
64
|
+
void MM2Pixel(double mm_dx, double mm_dy, double *dx, double *dy)
|
65
|
+
{ cdfCanvasMM2Pixel(canvas, mm_dx, mm_dy, dx, dy); }
|
66
|
+
void Pixel2MM(double dx, double dy, double *mm_dx, double *mm_dy)
|
67
|
+
{ cdfCanvasPixel2MM(canvas, dx, dy, mm_dx, mm_dy); }
|
68
|
+
void Origin(int x, int y)
|
69
|
+
{ cdCanvasOrigin(canvas, x, y); }
|
70
|
+
void Origin(double x, double y)
|
71
|
+
{ cdfCanvasOrigin(canvas, x, y); }
|
72
|
+
void GetOrigin(int *x, int *y)
|
73
|
+
{ cdCanvasGetOrigin(canvas, x, y); }
|
74
|
+
void GetOrigin(double *x, double *y)
|
75
|
+
{ cdfCanvasGetOrigin(canvas, x, y); }
|
76
|
+
|
77
|
+
/* clipping */
|
78
|
+
int Clip(int mode)
|
79
|
+
{ return cdCanvasClip(canvas, mode); }
|
80
|
+
void ClipArea(int xmin, int xmax, int ymin, int ymax)
|
81
|
+
{ cdCanvasClipArea(canvas, xmin, xmax, ymin, ymax); }
|
82
|
+
int GetClipArea(int *xmin, int *xmax, int *ymin, int *ymax)
|
83
|
+
{ return cdCanvasGetClipArea(canvas, xmin, xmax, ymin, ymax); }
|
84
|
+
void ClipArea(double xmin, double xmax, double ymin, double ymax)
|
85
|
+
{ cdfCanvasClipArea(canvas, xmin, xmax, ymin, ymax); }
|
86
|
+
int GetClipArea(double *xmin, double *xmax, double *ymin, double *ymax)
|
87
|
+
{ return cdfCanvasGetClipArea(canvas, xmin, xmax, ymin, ymax); }
|
88
|
+
|
89
|
+
/* clipping region */
|
90
|
+
int IsPointInRegion(int x, int y)
|
91
|
+
{ return cdCanvasIsPointInRegion(canvas, x, y); }
|
92
|
+
void OffsetRegion(int x, int y)
|
93
|
+
{ cdCanvasOffsetRegion(canvas, x, y); }
|
94
|
+
void GetRegionBox(int *xmin, int *xmax, int *ymin, int *ymax)
|
95
|
+
{ cdCanvasGetRegionBox(canvas, xmin, xmax, ymin, ymax); }
|
96
|
+
int RegionCombineMode(int mode)
|
97
|
+
{ return cdCanvasRegionCombineMode(canvas, mode); }
|
98
|
+
|
99
|
+
/* primitives */
|
100
|
+
void Pixel(int x, int y, long color)
|
101
|
+
{ cdCanvasPixel(canvas, x, y, color); }
|
102
|
+
void Mark(int x, int y)
|
103
|
+
{ cdCanvasMark(canvas, x, y); }
|
104
|
+
|
105
|
+
void Line(int x1, int y1, int x2, int y2)
|
106
|
+
{ cdCanvasLine(canvas, x1, y1, x2, y2); }
|
107
|
+
void Begin(int mode)
|
108
|
+
{ cdCanvasBegin(canvas, mode); }
|
109
|
+
void Vertex(int x, int y)
|
110
|
+
{ cdCanvasVertex(canvas, x, y); }
|
111
|
+
void End()
|
112
|
+
{ cdCanvasEnd(canvas); }
|
113
|
+
void Rect(int xmin, int xmax, int ymin, int ymax)
|
114
|
+
{ cdCanvasRect(canvas, xmin, xmax, ymin, ymax); }
|
115
|
+
void Box(int xmin, int xmax, int ymin, int ymax)
|
116
|
+
{ cdCanvasBox(canvas, xmin, xmax, ymin, ymax); }
|
117
|
+
void Arc(int xc, int yc, int w, int h, double angle1, double angle2)
|
118
|
+
{ cdCanvasArc(canvas, xc, yc, w, h, angle1, angle2); }
|
119
|
+
void Sector(int xc, int yc, int w, int h, double angle1, double angle2)
|
120
|
+
{ cdCanvasSector(canvas, xc, yc, w, h, angle1, angle2); }
|
121
|
+
void Chord(int xc, int yc, int w, int h, double angle1, double angle2)
|
122
|
+
{ cdCanvasChord(canvas, xc, yc, w, h, angle1, angle2); }
|
123
|
+
void Text(int x, int y, const char* s)
|
124
|
+
{ cdCanvasText(canvas, x, y, s); }
|
125
|
+
|
126
|
+
void Line(double x1, double y1, double x2, double y2)
|
127
|
+
{ cdfCanvasLine(canvas, x1, y1, x2, y2); }
|
128
|
+
void Vertex(double x, double y)
|
129
|
+
{ cdfCanvasVertex(canvas, x, y); }
|
130
|
+
void Rect(double xmin, double xmax, double ymin, double ymax)
|
131
|
+
{ cdfCanvasRect(canvas, xmin, xmax, ymin, ymax); }
|
132
|
+
void Box(double xmin, double xmax, double ymin, double ymax)
|
133
|
+
{ cdfCanvasBox(canvas, xmin, xmax, ymin, ymax); }
|
134
|
+
void Arc(double xc, double yc, double w, double h, double angle1, double angle2)
|
135
|
+
{ cdfCanvasArc(canvas, xc, yc, w, h, angle1, angle2); }
|
136
|
+
void Sector(double xc, double yc, double w, double h, double angle1, double angle2)
|
137
|
+
{ cdfCanvasSector(canvas, xc, yc, w, h, angle1, angle2); }
|
138
|
+
void Chord(double xc, double yc, double w, double h, double angle1, double angle2)
|
139
|
+
{ cdfCanvasChord(canvas, xc, yc, w, h, angle1, angle2); }
|
140
|
+
void Text(double x, double y, const char* s)
|
141
|
+
{ cdfCanvasText(canvas, x, y, s); }
|
142
|
+
|
143
|
+
/* attributes */
|
144
|
+
long Background(long color)
|
145
|
+
{ return cdCanvasBackground(canvas, color); }
|
146
|
+
long Foreground(long color)
|
147
|
+
{ return cdCanvasForeground(canvas, color); }
|
148
|
+
int BackOpacity(int opacity)
|
149
|
+
{ return cdCanvasBackOpacity(canvas, opacity); }
|
150
|
+
int WriteMode(int mode)
|
151
|
+
{ return cdCanvasWriteMode(canvas, mode); }
|
152
|
+
int LineStyle(int style)
|
153
|
+
{ return cdCanvasLineStyle(canvas, style); }
|
154
|
+
void LineStyleDashes(const int* dashes, int count)
|
155
|
+
{ cdCanvasLineStyleDashes(canvas, dashes, count); }
|
156
|
+
int LineWidth(int width)
|
157
|
+
{ return cdCanvasLineWidth(canvas, width); }
|
158
|
+
int LineJoin(int join)
|
159
|
+
{ return cdCanvasLineJoin(canvas, join); }
|
160
|
+
int LineCap(int cap)
|
161
|
+
{ return cdCanvasLineCap(canvas, cap); }
|
162
|
+
int InteriorStyle(int style)
|
163
|
+
{ return cdCanvasInteriorStyle(canvas, style); }
|
164
|
+
int Hatch(int style)
|
165
|
+
{ return cdCanvasHatch(canvas, style); }
|
166
|
+
void Stipple(int w, int h, const unsigned char* stipple)
|
167
|
+
{ cdCanvasStipple(canvas, w, h, stipple); }
|
168
|
+
unsigned char* GetStipple(int *n, int *m)
|
169
|
+
{ return cdCanvasGetStipple(canvas, n, m); }
|
170
|
+
void Pattern(int w, int h, long const int *pattern)
|
171
|
+
{ cdCanvasPattern(canvas, w, h, pattern); }
|
172
|
+
long* GetPattern(int* n, int* m)
|
173
|
+
{ return cdCanvasGetPattern(canvas, n, m); }
|
174
|
+
int FillMode(int mode)
|
175
|
+
{ return cdCanvasFillMode(canvas, mode); }
|
176
|
+
int Font(const char* type_face, int style, int size)
|
177
|
+
{ return cdCanvasFont(canvas, type_face, style, size); }
|
178
|
+
void GetFont(char *type_face, int *style, int *size)
|
179
|
+
{ cdCanvasGetFont(canvas, type_face, style, size); }
|
180
|
+
char* NativeFont(const char* font)
|
181
|
+
{ return cdCanvasNativeFont(canvas, font); }
|
182
|
+
int TextAlignment(int alignment)
|
183
|
+
{ return cdCanvasTextAlignment(canvas, alignment); }
|
184
|
+
double TextOrientation(double angle)
|
185
|
+
{ return cdCanvasTextOrientation(canvas, angle); }
|
186
|
+
int MarkType(int type)
|
187
|
+
{ return cdCanvasMarkType(canvas, type); }
|
188
|
+
int MarkSize(int size)
|
189
|
+
{ return cdCanvasMarkSize(canvas, size); }
|
190
|
+
|
191
|
+
/* vector text */
|
192
|
+
void VectorText(int x, int y, const char* s)
|
193
|
+
{ cdCanvasVectorText(canvas, x, y, s); }
|
194
|
+
void MultiLineVectorText(int x, int y, const char* s)
|
195
|
+
{ cdCanvasMultiLineVectorText(canvas, x, y, s); }
|
196
|
+
|
197
|
+
/* vector text attributes */
|
198
|
+
char *VectorFont(const char *filename)
|
199
|
+
{ return cdCanvasVectorFont(canvas, filename); }
|
200
|
+
void VectorTextDirection(int x1, int y1, int x2, int y2)
|
201
|
+
{ cdCanvasVectorTextDirection(canvas, x1, y1, x2, y2); }
|
202
|
+
double* VectorTextTransform(const double* matrix)
|
203
|
+
{ return cdCanvasVectorTextTransform(canvas, matrix); }
|
204
|
+
void VectorTextSize(int size_x, int size_y, const char* s)
|
205
|
+
{ cdCanvasVectorTextSize(canvas, size_x, size_y, s); }
|
206
|
+
int VectorCharSize(int size)
|
207
|
+
{ return cdCanvasVectorCharSize(canvas, size); }
|
208
|
+
|
209
|
+
|
210
|
+
/* vector text properties */
|
211
|
+
void GetVectorTextSize(const char* s, int *x, int *y)
|
212
|
+
{ cdCanvasGetVectorTextSize(canvas, s, x, y); }
|
213
|
+
void GetVectorTextBounds(const char* s, int x, int y, int *rect)
|
214
|
+
{ cdCanvasGetVectorTextBounds(canvas, s, x, y, rect); }
|
215
|
+
|
216
|
+
/* properties */
|
217
|
+
void GetFontDim(int *max_width, int *height, int *ascent, int *descent)
|
218
|
+
{ cdCanvasGetFontDim(canvas, max_width, height, ascent, descent); }
|
219
|
+
void GetTextSize(const char* s, int *width, int *height)
|
220
|
+
{ cdCanvasGetTextSize(canvas, s, width, height); }
|
221
|
+
void GetTextBox(int x, int y, const char* s, int *xmin, int *xmax, int *ymin, int *ymax)
|
222
|
+
{ cdCanvasGetTextBox(canvas, x, y, s, xmin, xmax, ymin, ymax); }
|
223
|
+
void GetTextBounds(int x, int y, const char* s, int *rect)
|
224
|
+
{ cdCanvasGetTextBounds(canvas, x, y, s, rect); }
|
225
|
+
int GetColorPlanes()
|
226
|
+
{ return cdCanvasGetColorPlanes(canvas); }
|
227
|
+
|
228
|
+
/* color */
|
229
|
+
void Palette(int n, const long *palette, int mode)
|
230
|
+
{ cdCanvasPalette(canvas, n, palette, mode); }
|
231
|
+
|
232
|
+
/* client images */
|
233
|
+
void GetImageRGB(unsigned char* r, unsigned char* g, unsigned char* b, int x, int y, int w, int h)
|
234
|
+
{ cdCanvasGetImageRGB(canvas, r, g, b, x, y, w, h); }
|
235
|
+
void PutImageRectRGB(int iw, int ih, const unsigned char* r, const unsigned char* g, const unsigned char* b, int x, int y, int w, int h, int xmin, int xmax, int ymin, int ymax)
|
236
|
+
{ cdCanvasPutImageRectRGB(canvas, iw, ih, r, g, b, x, y, w, h, xmin, xmax, ymin, ymax); }
|
237
|
+
void PutImageRectRGBA(int iw, int ih, const unsigned char* r, const unsigned char* g, const unsigned char* b, const unsigned char* a, int x, int y, int w, int h, int xmin, int xmax, int ymin, int ymax)
|
238
|
+
{ cdCanvasPutImageRectRGBA(canvas, iw, ih, r, g, b, a, x, y, w, h, xmin, xmax, ymin, ymax); }
|
239
|
+
void PutImageRectMap(int iw, int ih, const unsigned char* index, const long* colors, int x, int y, int w, int h, int xmin, int xmax, int ymin, int ymax)
|
240
|
+
{ cdCanvasPutImageRectMap(canvas, iw, ih, index, colors, x, y, w, h, xmin, xmax, ymin, ymax); }
|
241
|
+
|
242
|
+
/* server images */
|
243
|
+
cdImage* CreateImage(int w, int h)
|
244
|
+
{ return cdCanvasCreateImage(canvas, w, h); }
|
245
|
+
void GetImage(cdImage* image, int x, int y)
|
246
|
+
{ cdCanvasGetImage(canvas, image, x, y); }
|
247
|
+
void PutImageRect(cdImage* image, int x, int y, int xmin, int xmax, int ymin, int ymax)
|
248
|
+
{ cdCanvasPutImageRect(canvas, image, x, y, xmin, xmax, ymin, ymax); }
|
249
|
+
void ScrollArea(int xmin, int xmax, int ymin, int ymax, int dx, int dy)
|
250
|
+
{ cdCanvasScrollArea(canvas, xmin, xmax, ymin, ymax, dx, dy); }
|
251
|
+
|
252
|
+
void PutBitmap(cdBitmap* bitmap, int x, int y, int w, int h)
|
253
|
+
{ cdCanvasPutBitmap(canvas, bitmap, x, y, w, h); }
|
254
|
+
void GetBitmap(cdBitmap* bitmap, int x, int y)
|
255
|
+
{ cdCanvasGetBitmap(canvas, bitmap, x, y); }
|
256
|
+
|
257
|
+
/* coordinate transformation */
|
258
|
+
void wWindow(double xmin, double xmax, double ymin, double ymax)
|
259
|
+
{ wdCanvasWindow(canvas, xmin, xmax, ymin, ymax); }
|
260
|
+
void wGetWindow(double *xmin, double *xmax, double *ymin, double *ymax)
|
261
|
+
{ wdCanvasGetWindow(canvas, xmin, xmax, ymin, ymax); }
|
262
|
+
void wViewport(int xmin, int xmax, int ymin, int ymax)
|
263
|
+
{ wdCanvasViewport(canvas, xmin, xmax, ymin, ymax); }
|
264
|
+
void wGetViewport(int *xmin, int *xmax, int *ymin, int *ymax)
|
265
|
+
{ wdCanvasGetViewport(canvas, xmin, xmax, ymin, ymax); }
|
266
|
+
void wWorld2Canvas(double xw, double yw, int *xv, int *yv)
|
267
|
+
{ wdCanvasWorld2Canvas(canvas, xw, yw, xv, yv); }
|
268
|
+
void wWorld2CanvasSize(double hw, double vw, int *hv, int *vv)
|
269
|
+
{ wdCanvasWorld2CanvasSize(canvas, hw, vw, hv, vv); }
|
270
|
+
void wCanvas2World(int xv, int yv, double *xw, double *yw)
|
271
|
+
{ wdCanvasCanvas2World(canvas, xv, yv, xw, yw); }
|
272
|
+
|
273
|
+
void wClipArea(double xmin, double xmax, double ymin, double ymax)
|
274
|
+
{ wdCanvasClipArea(canvas, xmin, xmax, ymin, ymax); }
|
275
|
+
int wGetClipArea(double *xmin, double *xmax, double *ymin, double *ymax)
|
276
|
+
{ return wdCanvasGetClipArea(canvas, xmin, xmax, ymin, ymax); }
|
277
|
+
int wIsPointInRegion(double x, double y)
|
278
|
+
{ return wdCanvasIsPointInRegion(canvas, x, y); }
|
279
|
+
void wOffsetRegion(double x, double y)
|
280
|
+
{ wdCanvasOffsetRegion(canvas, x, y); }
|
281
|
+
void wGetRegionBox(double *xmin, double *xmax, double *ymin, double *ymax)
|
282
|
+
{ wdCanvasGetRegionBox(canvas, xmin, xmax, ymin, ymax); }
|
283
|
+
|
284
|
+
/* primitives */
|
285
|
+
void wPixel(double x, double y, long color)
|
286
|
+
{ wdCanvasPixel(canvas, x, y, color); }
|
287
|
+
void wMark(double x, double y)
|
288
|
+
{ wdCanvasMark(canvas, x, y); }
|
289
|
+
void wLine(double x1, double y1, double x2, double y2)
|
290
|
+
{ wdCanvasLine(canvas, x1, y1, x2, y2); }
|
291
|
+
void wVertex(double x, double y)
|
292
|
+
{ wdCanvasVertex(canvas, x, y); }
|
293
|
+
void wRect(double xmin, double xmax, double ymin, double ymax)
|
294
|
+
{ wdCanvasRect(canvas, xmin, xmax, ymin, ymax); }
|
295
|
+
void wBox(double xmin, double xmax, double ymin, double ymax)
|
296
|
+
{ wdCanvasBox(canvas, xmin, xmax, ymin, ymax); }
|
297
|
+
void wArc(double xc, double yc, double w, double h, double angle1, double angle2)
|
298
|
+
{ wdCanvasArc(canvas, xc, yc, w, h, angle1, angle2); }
|
299
|
+
void wSector(double xc, double yc, double w, double h, double angle1, double angle2)
|
300
|
+
{ wdCanvasSector(canvas, xc, yc, w, h, angle1, angle2); }
|
301
|
+
void wChord(double xc, double yc, double w, double h, double angle1, double angle2)
|
302
|
+
{ wdCanvasChord(canvas, xc, yc, w, h, angle1, angle2); }
|
303
|
+
void wText(double x, double y, const char* s)
|
304
|
+
{ wdCanvasText(canvas, x, y, s); }
|
305
|
+
|
306
|
+
void wPutImageRect(cdImage* image, double x, double y, int xmin, int xmax, int ymin, int ymax)
|
307
|
+
{ wdCanvasPutImageRect(canvas, image, x, y, xmin, xmax, ymin, ymax); }
|
308
|
+
void wPutImageRectRGB(int iw, int ih, const unsigned char* r, const unsigned char* g, const unsigned char* b, double x, double y, double w, double h, int xmin, int xmax, int ymin, int ymax)
|
309
|
+
{ wdCanvasPutImageRectRGB(canvas, iw, ih, r, g, b, x, y, w, h, xmin, xmax, ymin, ymax); }
|
310
|
+
void wPutImageRectRGBA(int iw, int ih, const unsigned char* r, const unsigned char* g, const unsigned char* b, const unsigned char* a, double x, double y, double w, double h, int xmin, int xmax, int ymin, int ymax)
|
311
|
+
{ wdCanvasPutImageRectRGBA(canvas, iw, ih, r, g, b, a, x, y, w, h, xmin, xmax, ymin, ymax); }
|
312
|
+
void wPutImageRectMap(int iw, int ih, const unsigned char* index, const long* colors, double x, double y, double w, double h, int xmin, int xmax, int ymin, int ymax)
|
313
|
+
{ wdCanvasPutImageRectMap(canvas, iw, ih, index, colors, x, y, w, h, xmin, xmax, ymin, ymax); }
|
314
|
+
void wPutBitmap(cdBitmap* bitmap, double x, double y, double w, double h)
|
315
|
+
{ wdCanvasPutBitmap(canvas, bitmap, x, y, w, h); }
|
316
|
+
|
317
|
+
/* attributes */
|
318
|
+
double wLineWidth(double width)
|
319
|
+
{ return wdCanvasLineWidth(canvas, width); }
|
320
|
+
int wFont(const char* type_face, int style, double size)
|
321
|
+
{ return wdCanvasFont(canvas, type_face, style, size); }
|
322
|
+
void wGetFont(char *type_face, int *style, double *size)
|
323
|
+
{ wdCanvasGetFont(canvas, type_face, style, size); }
|
324
|
+
double wMarkSize(double size)
|
325
|
+
{ return wdCanvasMarkSize(canvas, size); }
|
326
|
+
void wGetFontDim(double *max_width, double *height, double *ascent, double *descent)
|
327
|
+
{ wdCanvasGetFontDim(canvas, max_width, height, ascent, descent); }
|
328
|
+
void wGetTextSize(const char* s, double *width, double *height)
|
329
|
+
{ wdCanvasGetTextSize(canvas, s, width, height); }
|
330
|
+
void wGetTextBox(double x, double y, const char* s, double *xmin, double *xmax, double *ymin, double *ymax)
|
331
|
+
{ wdCanvasGetTextBox(canvas, x, y, s, xmin, xmax, ymin, ymax); }
|
332
|
+
void wGetTextBounds(double x, double y, const char* s, double *rect)
|
333
|
+
{ wdCanvasGetTextBounds(canvas, x, y, s, rect); }
|
334
|
+
void wStipple(int w, int h, const unsigned char*fgbg, double w_mm, double h_mm)
|
335
|
+
{ wdCanvasStipple(canvas, w, h, fgbg, w_mm, h_mm); }
|
336
|
+
void wPattern(int w, int h, const long *color, double w_mm, double h_mm)
|
337
|
+
{ wdCanvasPattern(canvas, w, h, color, w_mm, h_mm); }
|
338
|
+
|
339
|
+
/* vector text */
|
340
|
+
void wVectorTextDirection(double x1, double y1, double x2, double y2)
|
341
|
+
{ wdCanvasVectorTextDirection(canvas, x1, y1, x2, y2); }
|
342
|
+
void wVectorTextSize(double size_x, double size_y, const char* s)
|
343
|
+
{ wdCanvasVectorTextSize(canvas, size_x, size_y, s); }
|
344
|
+
void wGetVectorTextSize(const char* s, double *x, double *y)
|
345
|
+
{ wdCanvasGetVectorTextSize(canvas, s, x, y); }
|
346
|
+
double wVectorCharSize(double size)
|
347
|
+
{ return wdCanvasVectorCharSize(canvas, size); }
|
348
|
+
void wVectorText(double x, double y, const char* s)
|
349
|
+
{ wdCanvasVectorText(canvas, x, y, s); }
|
350
|
+
void wMultiLineVectorText(double x, double y, const char* s)
|
351
|
+
{ wdCanvasMultiLineVectorText(canvas, x, y, s); }
|
352
|
+
void wGetVectorTextBounds(const char* s, double x, double y, double *rect)
|
353
|
+
{ wdCanvasGetVectorTextBounds(canvas, s, x, y, rect); }
|
354
|
+
|
355
|
+
};
|
356
|
+
|
357
|
+
#endif
|
358
|
+
|
@@ -0,0 +1,158 @@
|
|
1
|
+
/** \file
|
2
|
+
* \brief Old User API
|
3
|
+
*
|
4
|
+
* See Copyright Notice in cd.h
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef __CD_OLD_H
|
8
|
+
#define __CD_OLD_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
|
15
|
+
/* canvas control */
|
16
|
+
int cdActivate(cdCanvas* canvas);
|
17
|
+
cdCanvas* cdActiveCanvas(void);
|
18
|
+
int cdSimulate(int mode);
|
19
|
+
void cdFlush(void);
|
20
|
+
void cdClear(void);
|
21
|
+
cdState* cdSaveState(void);
|
22
|
+
void cdRestoreState(cdState* state);
|
23
|
+
void cdSetAttribute(const char* name, char* data);
|
24
|
+
void cdSetfAttribute(const char* name, const char* format, ...);
|
25
|
+
char* cdGetAttribute(const char* name);
|
26
|
+
cdContext* cdGetContext(cdCanvas* canvas);
|
27
|
+
|
28
|
+
/* interpretation */
|
29
|
+
int cdRegisterCallback(cdContext *context, int cb, cdCallback func);
|
30
|
+
int cdPlay(cdContext *context, int xmin, int xmax, int ymin, int ymax, void *data);
|
31
|
+
|
32
|
+
/* coordinate transformation */
|
33
|
+
void cdGetCanvasSize(int *width, int *height, double *width_mm, double *height_mm);
|
34
|
+
int cdUpdateYAxis(int *y);
|
35
|
+
void cdMM2Pixel(double mm_dx, double mm_dy, int *dx, int *dy);
|
36
|
+
void cdPixel2MM(int dx, int dy, double *mm_dx, double *mm_dy);
|
37
|
+
void cdOrigin(int x, int y);
|
38
|
+
|
39
|
+
/* clipping */
|
40
|
+
int cdClip(int mode);
|
41
|
+
int * cdGetClipPoly(int *n);
|
42
|
+
void cdClipArea(int xmin, int xmax, int ymin, int ymax);
|
43
|
+
int cdGetClipArea(int *xmin, int *xmax, int *ymin, int *ymax);
|
44
|
+
|
45
|
+
/* clipping region */
|
46
|
+
int cdPointInRegion(int x, int y);
|
47
|
+
void cdOffsetRegion(int x, int y);
|
48
|
+
void cdRegionBox(int *xmin, int *xmax, int *ymin, int *ymax);
|
49
|
+
int cdRegionCombineMode(int mode);
|
50
|
+
|
51
|
+
/* primitives */
|
52
|
+
void cdPixel(int x, int y, long color);
|
53
|
+
void cdMark(int x, int y);
|
54
|
+
void cdLine(int x1, int y1, int x2, int y2);
|
55
|
+
void cdBegin(int mode);
|
56
|
+
void cdVertex(int x, int y);
|
57
|
+
void cdEnd(void);
|
58
|
+
void cdRect(int xmin, int xmax, int ymin, int ymax);
|
59
|
+
void cdBox(int xmin, int xmax, int ymin, int ymax);
|
60
|
+
void cdArc(int xc, int yc, int w, int h, double angle1, double angle2);
|
61
|
+
void cdSector(int xc, int yc, int w, int h, double angle1, double angle2);
|
62
|
+
void cdChord(int xc, int yc, int w, int h, double angle1, double angle2);
|
63
|
+
void cdText(int x, int y, const char* s);
|
64
|
+
|
65
|
+
/* attributes */
|
66
|
+
long cdBackground(long color);
|
67
|
+
long cdForeground(long color);
|
68
|
+
int cdBackOpacity(int opacity);
|
69
|
+
int cdWriteMode(int mode);
|
70
|
+
int cdLineStyle(int style);
|
71
|
+
void cdLineStyleDashes(const int* dashes, int count);
|
72
|
+
int cdLineWidth(int width);
|
73
|
+
int cdLineJoin(int join);
|
74
|
+
int cdLineCap(int cap);
|
75
|
+
int cdInteriorStyle(int style);
|
76
|
+
int cdHatch(int style);
|
77
|
+
void cdStipple(int w, int h, const unsigned char* stipple);
|
78
|
+
unsigned char* cdGetStipple(int *n, int *m);
|
79
|
+
void cdPattern(int w, int h, const long *pattern);
|
80
|
+
long* cdGetPattern(int* n, int* m);
|
81
|
+
int cdFillMode(int mode);
|
82
|
+
void cdFont(int type_face, int style, int size);
|
83
|
+
void cdGetFont(int *type_face, int *style, int *size);
|
84
|
+
char* cdNativeFont(const char* font);
|
85
|
+
int cdTextAlignment(int alignment);
|
86
|
+
double cdTextOrientation(double angle);
|
87
|
+
int cdMarkType(int type);
|
88
|
+
int cdMarkSize(int size);
|
89
|
+
|
90
|
+
/* vector text */
|
91
|
+
void cdVectorText(int x, int y, const char* s);
|
92
|
+
void cdMultiLineVectorText(int x, int y, const char* s);
|
93
|
+
|
94
|
+
/* vector text attributes */
|
95
|
+
char *cdVectorFont(const char *filename);
|
96
|
+
void cdVectorTextDirection(int x1, int y1, int x2, int y2);
|
97
|
+
double* cdVectorTextTransform(const double* matrix);
|
98
|
+
void cdVectorTextSize(int size_x, int size_y, const char* s);
|
99
|
+
int cdVectorCharSize(int size);
|
100
|
+
|
101
|
+
/* vector text properties */
|
102
|
+
void cdGetVectorTextSize(const char* s, int *x, int *y);
|
103
|
+
void cdGetVectorTextBounds(const char* s, int x, int y, int *rect);
|
104
|
+
|
105
|
+
/* properties */
|
106
|
+
void cdFontDim(int *max_width, int *height, int *ascent, int *descent);
|
107
|
+
void cdTextSize(const char* s, int *width, int *height);
|
108
|
+
void cdTextBox(int x, int y, const char* s, int *xmin, int *xmax, int *ymin, int *ymax);
|
109
|
+
void cdTextBounds(int x, int y, const char* s, int *rect);
|
110
|
+
int cdGetColorPlanes(void);
|
111
|
+
|
112
|
+
/* color */
|
113
|
+
void cdPalette(int n, const long* palette, int mode);
|
114
|
+
|
115
|
+
/* client images */
|
116
|
+
void cdGetImageRGB(unsigned char* r, unsigned char* g, unsigned char* b, int x, int y, int w, int h);
|
117
|
+
void cdPutImageRectRGB(int iw, int ih, const unsigned char* r, const unsigned char* g, const unsigned char* b, int x, int y, int w, int h, int xmin, int xmax, int ymin, int ymax);
|
118
|
+
void cdPutImageRectRGBA(int iw, int ih, const unsigned char* r, const unsigned char* g, const unsigned char* b, const unsigned char* a, int x, int y, int w, int h, int xmin, int xmax, int ymin, int ymax);
|
119
|
+
void cdPutImageRectMap(int iw, int ih, const unsigned char* index, const long* colors, int x, int y, int w, int h, int xmin, int xmax, int ymin, int ymax);
|
120
|
+
|
121
|
+
/* defined for backward compatibility */
|
122
|
+
#define cdPutImageRGB(iw, ih, r, g, b, x, y, w, h) cdPutImageRectRGB((iw), (ih), (r), (g), (b), (x), (y), (w), (h), 0, 0, 0, 0)
|
123
|
+
#define cdPutImageRGBA(iw, ih, r, g, b, a, x, y, w, h) cdPutImageRectRGBA((iw), (ih), (r), (g), (b), (a), (x), (y), (w), (h), 0, 0, 0, 0)
|
124
|
+
#define cdPutImageMap(iw, ih, index, colors, x, y, w, h) cdPutImageRectMap((iw), (ih), (index), (colors), (x), (y), (w), (h), 0, 0, 0, 0)
|
125
|
+
#define cdPutImage(image, x, y) cdPutImageRect((image), (x), (y), 0, 0, 0, 0)
|
126
|
+
|
127
|
+
/* server images */
|
128
|
+
cdImage* cdCreateImage(int w, int h);
|
129
|
+
void cdGetImage(cdImage* image, int x, int y);
|
130
|
+
void cdPutImageRect(cdImage* image, int x, int y, int xmin, int xmax, int ymin, int ymax);
|
131
|
+
void cdScrollArea(int xmin, int xmax, int ymin, int ymax, int dx, int dy);
|
132
|
+
|
133
|
+
/* bitmap */
|
134
|
+
void cdPutBitmap(cdBitmap* bitmap, int x, int y, int w, int h);
|
135
|
+
void cdGetBitmap(cdBitmap* bitmap, int x, int y);
|
136
|
+
|
137
|
+
enum { /* OLD type face -> new names */
|
138
|
+
CD_SYSTEM, /* "System" */
|
139
|
+
CD_COURIER, /* "Courier" */
|
140
|
+
CD_TIMES_ROMAN, /* "Times" */
|
141
|
+
CD_HELVETICA, /* "Helvetica" */
|
142
|
+
CD_NATIVE
|
143
|
+
};
|
144
|
+
|
145
|
+
/* OLD definitions, defined for backward compatibility */
|
146
|
+
#define CD_CLIPON CD_CLIPAREA
|
147
|
+
#define CD_CENTER_BASE CD_BASE_CENTER
|
148
|
+
#define CD_LEFT_BASE CD_BASE_LEFT
|
149
|
+
#define CD_RIGHT_BASE CD_BASE_RIGHT
|
150
|
+
#define CD_ITALIC_BOLD CD_BOLD_ITALIC
|
151
|
+
#define cdScrollImage cdScrollArea
|
152
|
+
#define cdCanvas2Raster(x, y) {(void)x; cdUpdateYAxis(y);}
|
153
|
+
|
154
|
+
#ifdef __cplusplus
|
155
|
+
}
|
156
|
+
#endif
|
157
|
+
|
158
|
+
#endif
|