ruby-iup 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. data/Rakefile +97 -0
  2. data/doc/README +10 -0
  3. data/doc/build_install.txt +77 -0
  4. data/examples/README +16 -0
  5. data/examples/ctrl/cbox.rb +221 -0
  6. data/examples/ctrl/checkboard.rb +33 -0
  7. data/examples/ctrl/degrade.rb +73 -0
  8. data/examples/ctrl/example1.rb +53 -0
  9. data/examples/ctrl/example2.rb +39 -0
  10. data/examples/ctrl/iupcolorbar.rb +95 -0
  11. data/examples/ctrl/iupcolorbrowser.rb +45 -0
  12. data/examples/ctrl/iupdial.rb +117 -0
  13. data/examples/ctrl/iupgauge.rb +242 -0
  14. data/examples/ctrl/iupgetcolor.rb +8 -0
  15. data/examples/ctrl/iupgetparam.rb +62 -0
  16. data/examples/ctrl/iupglcanvas.rb +172 -0
  17. data/examples/ctrl/iupmask.rb +15 -0
  18. data/examples/ctrl/iupmatrix.rb +39 -0
  19. data/examples/ctrl/iupplot2.rb +603 -0
  20. data/examples/ctrl/iuptabs.rb +22 -0
  21. data/examples/ctrl/iuptree.rb +190 -0
  22. data/examples/ctrl/iupval.rb +71 -0
  23. data/examples/ctrl/numbering.rb +46 -0
  24. data/examples/ctrl/sample.rb +166 -0
  25. data/examples/dlg/iupalarm.rb +14 -0
  26. data/examples/dlg/iupfiledlg.rb +19 -0
  27. data/examples/dlg/iupgetfile.rb +19 -0
  28. data/examples/dlg/iuplistdialog.rb +26 -0
  29. data/examples/dlg/iupmessage.rb +5 -0
  30. data/examples/dlg/iupscanf.rb +17 -0
  31. data/examples/elem/iupbutton.rb +197 -0
  32. data/examples/elem/iupcanvas.rb +27 -0
  33. data/examples/elem/iupcanvas2.rb +113 -0
  34. data/examples/elem/iupcanvas3.rb +62 -0
  35. data/examples/elem/iupdialog.rb +71 -0
  36. data/examples/elem/iupdialog2.rb +25 -0
  37. data/examples/elem/iupfill.rb +51 -0
  38. data/examples/elem/iupframe.rb +25 -0
  39. data/examples/elem/iuphbox.rb +68 -0
  40. data/examples/elem/iupimage.rb +113 -0
  41. data/examples/elem/iupitem.rb +60 -0
  42. data/examples/elem/iuplabel.rb +57 -0
  43. data/examples/elem/iuplist.rb +41 -0
  44. data/examples/elem/iuplist2.rb +125 -0
  45. data/examples/elem/iupmenu.rb +32 -0
  46. data/examples/elem/iupmultiline.rb +24 -0
  47. data/examples/elem/iupmultiline2.rb +156 -0
  48. data/examples/elem/iupradio.rb +32 -0
  49. data/examples/elem/iupseparator.rb +81 -0
  50. data/examples/elem/iupsubmenu.rb +85 -0
  51. data/examples/elem/iuptext.rb +61 -0
  52. data/examples/elem/iuptimer.rb +36 -0
  53. data/examples/elem/iuptoggle.rb +110 -0
  54. data/examples/elem/iupvbox.rb +87 -0
  55. data/examples/elem/iupzbox.rb +60 -0
  56. data/examples/elem/mdisample.rb +376 -0
  57. data/examples/elem/progressbar.rb +294 -0
  58. data/examples/elem/scrollbar.rb +66 -0
  59. data/examples/elem/tray.rb +90 -0
  60. data/examples/func/iupgetattribute.rb +32 -0
  61. data/examples/func/iupidle.rb +48 -0
  62. data/ext/extconf.rb +27 -0
  63. data/ext/iup-linux/include/cd.h +494 -0
  64. data/ext/iup-linux/include/cd_canvas.hpp +358 -0
  65. data/ext/iup-linux/include/cd_old.h +158 -0
  66. data/ext/iup-linux/include/cd_private.h +362 -0
  67. data/ext/iup-linux/include/cdcgm.h +34 -0
  68. data/ext/iup-linux/include/cdclipbd.h +22 -0
  69. data/ext/iup-linux/include/cddbuf.h +23 -0
  70. data/ext/iup-linux/include/cddebug.h +24 -0
  71. data/ext/iup-linux/include/cddgn.h +23 -0
  72. data/ext/iup-linux/include/cddxf.h +22 -0
  73. data/ext/iup-linux/include/cdemf.h +22 -0
  74. data/ext/iup-linux/include/cdgdiplus.h +29 -0
  75. data/ext/iup-linux/include/cdimage.h +23 -0
  76. data/ext/iup-linux/include/cdirgb.h +30 -0
  77. data/ext/iup-linux/include/cdiup.h +22 -0
  78. data/ext/iup-linux/include/cdlua.h +39 -0
  79. data/ext/iup-linux/include/cdlua3_private.h +120 -0
  80. data/ext/iup-linux/include/cdlua5_private.h +141 -0
  81. data/ext/iup-linux/include/cdluaim.h +24 -0
  82. data/ext/iup-linux/include/cdluaiup.h +27 -0
  83. data/ext/iup-linux/include/cdluapdf.h +27 -0
  84. data/ext/iup-linux/include/cdmf.h +24 -0
  85. data/ext/iup-linux/include/cdmf_private.h +32 -0
  86. data/ext/iup-linux/include/cdnative.h +26 -0
  87. data/ext/iup-linux/include/cdpdf.h +38 -0
  88. data/ext/iup-linux/include/cdpicture.h +22 -0
  89. data/ext/iup-linux/include/cdprint.h +23 -0
  90. data/ext/iup-linux/include/cdps.h +37 -0
  91. data/ext/iup-linux/include/cdwmf.h +22 -0
  92. data/ext/iup-linux/include/im.h +282 -0
  93. data/ext/iup-linux/include/im_attrib.h +116 -0
  94. data/ext/iup-linux/include/im_attrib_flat.h +39 -0
  95. data/ext/iup-linux/include/im_binfile.h +214 -0
  96. data/ext/iup-linux/include/im_capture.h +365 -0
  97. data/ext/iup-linux/include/im_color.h +465 -0
  98. data/ext/iup-linux/include/im_colorhsi.h +61 -0
  99. data/ext/iup-linux/include/im_complex.h +160 -0
  100. data/ext/iup-linux/include/im_convert.h +127 -0
  101. data/ext/iup-linux/include/im_counter.h +69 -0
  102. data/ext/iup-linux/include/im_dib.h +195 -0
  103. data/ext/iup-linux/include/im_file.h +111 -0
  104. data/ext/iup-linux/include/im_format.h +79 -0
  105. data/ext/iup-linux/include/im_format_all.h +576 -0
  106. data/ext/iup-linux/include/im_format_avi.h +87 -0
  107. data/ext/iup-linux/include/im_format_ecw.h +93 -0
  108. data/ext/iup-linux/include/im_format_jp2.h +78 -0
  109. data/ext/iup-linux/include/im_format_raw.h +64 -0
  110. data/ext/iup-linux/include/im_format_wmv.h +100 -0
  111. data/ext/iup-linux/include/im_image.h +403 -0
  112. data/ext/iup-linux/include/im_kernel.h +315 -0
  113. data/ext/iup-linux/include/im_lib.h +191 -0
  114. data/ext/iup-linux/include/im_math.h +368 -0
  115. data/ext/iup-linux/include/im_math_op.h +219 -0
  116. data/ext/iup-linux/include/im_palette.h +172 -0
  117. data/ext/iup-linux/include/im_plus.h +73 -0
  118. data/ext/iup-linux/include/im_process.h +35 -0
  119. data/ext/iup-linux/include/im_process_ana.h +221 -0
  120. data/ext/iup-linux/include/im_process_glo.h +170 -0
  121. data/ext/iup-linux/include/im_process_loc.h +577 -0
  122. data/ext/iup-linux/include/im_process_pon.h +712 -0
  123. data/ext/iup-linux/include/im_raw.h +34 -0
  124. data/ext/iup-linux/include/im_util.h +277 -0
  125. data/ext/iup-linux/include/imlua.h +83 -0
  126. data/ext/iup-linux/include/iup.h +255 -0
  127. data/ext/iup-linux/include/iup_pplot.h +40 -0
  128. data/ext/iup-linux/include/iupcb.h +25 -0
  129. data/ext/iup-linux/include/iupcbox.h +23 -0
  130. data/ext/iup-linux/include/iupcbs.h +42 -0
  131. data/ext/iup-linux/include/iupcells.h +130 -0
  132. data/ext/iup-linux/include/iupcolorbar.h +126 -0
  133. data/ext/iup-linux/include/iupcompat.h +62 -0
  134. data/ext/iup-linux/include/iupcontrols.h +40 -0
  135. data/ext/iup-linux/include/iupcpi.h +76 -0
  136. data/ext/iup-linux/include/iupdef.h +520 -0
  137. data/ext/iup-linux/include/iupdial.h +64 -0
  138. data/ext/iup-linux/include/iupgauge.h +57 -0
  139. data/ext/iup-linux/include/iupgc.h +20 -0
  140. data/ext/iup-linux/include/iupgetparam.h +27 -0
  141. data/ext/iup-linux/include/iupgl.h +101 -0
  142. data/ext/iup-linux/include/iupim.h +21 -0
  143. data/ext/iup-linux/include/iupkey.h +290 -0
  144. data/ext/iup-linux/include/iuplua.h +41 -0
  145. data/ext/iup-linux/include/iuplua_pplot.h +26 -0
  146. data/ext/iup-linux/include/iupluacontrols.h +27 -0
  147. data/ext/iup-linux/include/iupluagl.h +26 -0
  148. data/ext/iup-linux/include/iupluaim.h +26 -0
  149. data/ext/iup-linux/include/iupluaole.h +26 -0
  150. data/ext/iup-linux/include/iupmask.h +52 -0
  151. data/ext/iup-linux/include/iupmatrix.h +69 -0
  152. data/ext/iup-linux/include/iupole.h +24 -0
  153. data/ext/iup-linux/include/iupsbox.h +20 -0
  154. data/ext/iup-linux/include/iupspeech.h +23 -0
  155. data/ext/iup-linux/include/iupspin.h +21 -0
  156. data/ext/iup-linux/include/iuptabs.h +79 -0
  157. data/ext/iup-linux/include/iuptree.h +93 -0
  158. data/ext/iup-linux/include/iupval.h +46 -0
  159. data/ext/iup-linux/include/lauxlib.h +174 -0
  160. data/ext/iup-linux/include/lua.h +388 -0
  161. data/ext/iup-linux/include/lua.hpp +9 -0
  162. data/ext/iup-linux/include/luaconf.h +763 -0
  163. data/ext/iup-linux/include/lualib.h +53 -0
  164. data/ext/iup-linux/include/old_im.h +59 -0
  165. data/ext/iup-linux/include/wd.h +78 -0
  166. data/ext/iup-linux/include/wd_old.h +85 -0
  167. data/ext/iup-linux/libcd.so +0 -0
  168. data/ext/iup-linux/libcdcontextplus.so +0 -0
  169. data/ext/iup-linux/libcdluacontextplus51.so +0 -0
  170. data/ext/iup-linux/libcdpdf.so +0 -0
  171. data/ext/iup-linux/libfreetype.so +0 -0
  172. data/ext/iup-linux/libim.so +0 -0
  173. data/ext/iup-linux/libim_fftw.so +0 -0
  174. data/ext/iup-linux/libim_jp2.so +0 -0
  175. data/ext/iup-linux/libim_process.so +0 -0
  176. data/ext/iup-linux/libiup.so +0 -0
  177. data/ext/iup-linux/libiup_pplot.so +0 -0
  178. data/ext/iup-linux/libiupcd.so +0 -0
  179. data/ext/iup-linux/libiupcontrols.so +0 -0
  180. data/ext/iup-linux/libiupgl.so +0 -0
  181. data/ext/iup-linux/libiupim.so +0 -0
  182. data/ext/iup-linux/libiupimglib.so +0 -0
  183. data/ext/iup-linux/libpdflib.so +0 -0
  184. data/ext/iup-win32/cd.dll +0 -0
  185. data/ext/iup-win32/cd.lib +0 -0
  186. data/ext/iup-win32/cdcontextplus.dll +0 -0
  187. data/ext/iup-win32/cdcontextplus.lib +0 -0
  188. data/ext/iup-win32/cdlua51.lib +0 -0
  189. data/ext/iup-win32/cdluacontextplus51.lib +0 -0
  190. data/ext/iup-win32/cdluaim51.lib +0 -0
  191. data/ext/iup-win32/cdluapdf51.lib +0 -0
  192. data/ext/iup-win32/cdpdf.dll +0 -0
  193. data/ext/iup-win32/cdpdf.lib +0 -0
  194. data/ext/iup-win32/freetype6.dll +0 -0
  195. data/ext/iup-win32/freetype6.lib +0 -0
  196. data/ext/iup-win32/im.dll +0 -0
  197. data/ext/iup-win32/im_avi.dll +0 -0
  198. data/ext/iup-win32/im_capture.dll +0 -0
  199. data/ext/iup-win32/im_ecw.dll +0 -0
  200. data/ext/iup-win32/im_fftw.dll +0 -0
  201. data/ext/iup-win32/im_jp2.dll +0 -0
  202. data/ext/iup-win32/im_process.dll +0 -0
  203. data/ext/iup-win32/im_wmv.dll +0 -0
  204. data/ext/iup-win32/include/cd.h +494 -0
  205. data/ext/iup-win32/include/cd_canvas.hpp +358 -0
  206. data/ext/iup-win32/include/cd_old.h +158 -0
  207. data/ext/iup-win32/include/cd_private.h +362 -0
  208. data/ext/iup-win32/include/cdcgm.h +34 -0
  209. data/ext/iup-win32/include/cdclipbd.h +22 -0
  210. data/ext/iup-win32/include/cddbuf.h +23 -0
  211. data/ext/iup-win32/include/cddebug.h +24 -0
  212. data/ext/iup-win32/include/cddgn.h +23 -0
  213. data/ext/iup-win32/include/cddxf.h +22 -0
  214. data/ext/iup-win32/include/cdemf.h +22 -0
  215. data/ext/iup-win32/include/cdgdiplus.h +29 -0
  216. data/ext/iup-win32/include/cdimage.h +23 -0
  217. data/ext/iup-win32/include/cdirgb.h +30 -0
  218. data/ext/iup-win32/include/cdiup.h +22 -0
  219. data/ext/iup-win32/include/cdlua.h +39 -0
  220. data/ext/iup-win32/include/cdlua3_private.h +120 -0
  221. data/ext/iup-win32/include/cdlua5_private.h +141 -0
  222. data/ext/iup-win32/include/cdluaim.h +24 -0
  223. data/ext/iup-win32/include/cdluaiup.h +27 -0
  224. data/ext/iup-win32/include/cdluapdf.h +27 -0
  225. data/ext/iup-win32/include/cdmf.h +24 -0
  226. data/ext/iup-win32/include/cdmf_private.h +32 -0
  227. data/ext/iup-win32/include/cdnative.h +26 -0
  228. data/ext/iup-win32/include/cdpdf.h +38 -0
  229. data/ext/iup-win32/include/cdpicture.h +22 -0
  230. data/ext/iup-win32/include/cdprint.h +23 -0
  231. data/ext/iup-win32/include/cdps.h +37 -0
  232. data/ext/iup-win32/include/cdwmf.h +22 -0
  233. data/ext/iup-win32/include/iup.h +255 -0
  234. data/ext/iup-win32/include/iup_pplot.h +40 -0
  235. data/ext/iup-win32/include/iupcb.h +25 -0
  236. data/ext/iup-win32/include/iupcbox.h +23 -0
  237. data/ext/iup-win32/include/iupcbs.h +42 -0
  238. data/ext/iup-win32/include/iupcells.h +130 -0
  239. data/ext/iup-win32/include/iupcolorbar.h +126 -0
  240. data/ext/iup-win32/include/iupcompat.h +62 -0
  241. data/ext/iup-win32/include/iupcontrols.h +40 -0
  242. data/ext/iup-win32/include/iupcpi.h +76 -0
  243. data/ext/iup-win32/include/iupdef.h +520 -0
  244. data/ext/iup-win32/include/iupdial.h +64 -0
  245. data/ext/iup-win32/include/iupgauge.h +57 -0
  246. data/ext/iup-win32/include/iupgc.h +20 -0
  247. data/ext/iup-win32/include/iupgetparam.h +27 -0
  248. data/ext/iup-win32/include/iupgl.h +101 -0
  249. data/ext/iup-win32/include/iupim.h +21 -0
  250. data/ext/iup-win32/include/iupkey.h +290 -0
  251. data/ext/iup-win32/include/iuplua.h +41 -0
  252. data/ext/iup-win32/include/iuplua_pplot.h +26 -0
  253. data/ext/iup-win32/include/iupluacontrols.h +27 -0
  254. data/ext/iup-win32/include/iupluagl.h +26 -0
  255. data/ext/iup-win32/include/iupluaim.h +26 -0
  256. data/ext/iup-win32/include/iupluaole.h +26 -0
  257. data/ext/iup-win32/include/iupmask.h +52 -0
  258. data/ext/iup-win32/include/iupmatrix.h +69 -0
  259. data/ext/iup-win32/include/iupole.h +24 -0
  260. data/ext/iup-win32/include/iupsbox.h +20 -0
  261. data/ext/iup-win32/include/iupspeech.h +23 -0
  262. data/ext/iup-win32/include/iupspin.h +21 -0
  263. data/ext/iup-win32/include/iuptabs.h +79 -0
  264. data/ext/iup-win32/include/iuptree.h +93 -0
  265. data/ext/iup-win32/include/iupval.h +46 -0
  266. data/ext/iup-win32/include/wd.h +78 -0
  267. data/ext/iup-win32/include/wd_old.h +85 -0
  268. data/ext/iup-win32/iup.dll +0 -0
  269. data/ext/iup-win32/iup.lib +0 -0
  270. data/ext/iup-win32/iup_pplot.dll +0 -0
  271. data/ext/iup-win32/iup_pplot.lib +0 -0
  272. data/ext/iup-win32/iupcd.dll +0 -0
  273. data/ext/iup-win32/iupcd.lib +0 -0
  274. data/ext/iup-win32/iupcontrols.dll +0 -0
  275. data/ext/iup-win32/iupcontrols.lib +0 -0
  276. data/ext/iup-win32/iupgl.dll +0 -0
  277. data/ext/iup-win32/iupgl.lib +0 -0
  278. data/ext/iup-win32/iupim.dll +0 -0
  279. data/ext/iup-win32/iupim.lib +0 -0
  280. data/ext/iup-win32/iupimglib.dll +0 -0
  281. data/ext/iup-win32/iupimglib.lib +0 -0
  282. data/ext/iup-win32/iuplua51.lib +0 -0
  283. data/ext/iup-win32/iuplua_pplot51.lib +0 -0
  284. data/ext/iup-win32/iupluacd51.lib +0 -0
  285. data/ext/iup-win32/iupluacontrols51.lib +0 -0
  286. data/ext/iup-win32/iupluagl51.lib +0 -0
  287. data/ext/iup-win32/iupluaim51.lib +0 -0
  288. data/ext/iup-win32/iupluaimglib51.lib +0 -0
  289. data/ext/iup-win32/iupluaole51.lib +0 -0
  290. data/ext/iup-win32/iupole.dll +0 -0
  291. data/ext/iup-win32/iupole.lib +0 -0
  292. data/ext/iup-win32/iupstub.lib +0 -0
  293. data/ext/iup-win32/pdflib.dll +0 -0
  294. data/ext/iup-win32/pdflib.lib +0 -0
  295. data/ext/iup.c +1261 -0
  296. data/ext/mkrf_conf.rb +72 -0
  297. data/ext/rb_cd.h +1525 -0
  298. data/ext/rb_iup.h +2446 -0
  299. data/ext/rb_iup_pplot.h +129 -0
  300. data/ext/rb_iupcb.h +13 -0
  301. data/ext/rb_iupcbox.h +40 -0
  302. data/ext/rb_iupcells.h +15 -0
  303. data/ext/rb_iupcolorbar.h +17 -0
  304. data/ext/rb_iupcompat.h +237 -0
  305. data/ext/rb_iupcontrols.h +28 -0
  306. data/ext/rb_iupdef.h +3 -0
  307. data/ext/rb_iupdial.h +24 -0
  308. data/ext/rb_iupgauge.h +15 -0
  309. data/ext/rb_iupgc.h +18 -0
  310. data/ext/rb_iupgetparam.h +72 -0
  311. data/ext/rb_iupgl.h +58 -0
  312. data/ext/rb_iupim.h +25 -0
  313. data/ext/rb_iupmask.h +189 -0
  314. data/ext/rb_iupmatrix.h +80 -0
  315. data/ext/rb_iupole.h +24 -0
  316. data/ext/rb_iupsbox.h +23 -0
  317. data/ext/rb_iupspeech.h +25 -0
  318. data/ext/rb_iupspin.h +29 -0
  319. data/ext/rb_iuptabs.h +29 -0
  320. data/ext/rb_iuptree.h +94 -0
  321. data/ext/rb_iupval.h +24 -0
  322. data/lib/README +1 -0
  323. 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