wrb 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (271) hide show
  1. checksums.yaml +7 -0
  2. data/README +28 -0
  3. data/Rakefile +66 -0
  4. data/bin/wrb +41 -0
  5. data/bin/wrb.bat +6 -0
  6. data/ext/rwin/aatree.c +192 -0
  7. data/ext/rwin/aatree.h +55 -0
  8. data/ext/rwin/extconf.rb +47 -0
  9. data/ext/rwin/rw_api.c +2058 -0
  10. data/ext/rwin/rw_devices.c +215 -0
  11. data/ext/rwin/rw_gdiplus.h +278 -0
  12. data/ext/rwin/rw_graphics.c +1583 -0
  13. data/ext/rwin/rw_resources.c +1988 -0
  14. data/ext/rwin/rw_ubfuncs.c +281 -0
  15. data/ext/rwin/rw_windows.c +1936 -0
  16. data/ext/rwin/rwin.c +451 -0
  17. data/ext/rwin/rwin.h +442 -0
  18. data/lib/rwin.rb +820 -0
  19. data/lib/wrb.rb +20 -0
  20. data/lib/wrb/applications/frmdesigner/angle.cur +0 -0
  21. data/lib/wrb/applications/frmdesigner/angle2.cur +0 -0
  22. data/lib/wrb/applications/frmdesigner/controls/Button.bmp +0 -0
  23. data/lib/wrb/applications/frmdesigner/controls/Button.rb +34 -0
  24. data/lib/wrb/applications/frmdesigner/controls/Checkbox.bmp +0 -0
  25. data/lib/wrb/applications/frmdesigner/controls/Checkbox.rb +10 -0
  26. data/lib/wrb/applications/frmdesigner/controls/Combobox.bmp +0 -0
  27. data/lib/wrb/applications/frmdesigner/controls/Combobox.rb +88 -0
  28. data/lib/wrb/applications/frmdesigner/controls/ComboboxEx.rb +97 -0
  29. data/lib/wrb/applications/frmdesigner/controls/Comboboxex.bmp +0 -0
  30. data/lib/wrb/applications/frmdesigner/controls/DateTimePicker.bmp +0 -0
  31. data/lib/wrb/applications/frmdesigner/controls/DateTimePicker.rb +11 -0
  32. data/lib/wrb/applications/frmdesigner/controls/Edit.bmp +0 -0
  33. data/lib/wrb/applications/frmdesigner/controls/Edit.rb +8 -0
  34. data/lib/wrb/applications/frmdesigner/controls/Groupbox.bmp +0 -0
  35. data/lib/wrb/applications/frmdesigner/controls/Groupbox.rb +9 -0
  36. data/lib/wrb/applications/frmdesigner/controls/Hotkeyctrl.bmp +0 -0
  37. data/lib/wrb/applications/frmdesigner/controls/Hotkeyctrl.rb +9 -0
  38. data/lib/wrb/applications/frmdesigner/controls/Imagelist.bmp +0 -0
  39. data/lib/wrb/applications/frmdesigner/controls/Imagelist.rb +115 -0
  40. data/lib/wrb/applications/frmdesigner/controls/Listbox.bmp +0 -0
  41. data/lib/wrb/applications/frmdesigner/controls/Listbox.rb +77 -0
  42. data/lib/wrb/applications/frmdesigner/controls/Listview.bmp +0 -0
  43. data/lib/wrb/applications/frmdesigner/controls/Listview.rb +157 -0
  44. data/lib/wrb/applications/frmdesigner/controls/Menu.bmp +0 -0
  45. data/lib/wrb/applications/frmdesigner/controls/Menu.rb +198 -0
  46. data/lib/wrb/applications/frmdesigner/controls/Menubar.bmp +0 -0
  47. data/lib/wrb/applications/frmdesigner/controls/Menubar.rb +9 -0
  48. data/lib/wrb/applications/frmdesigner/controls/MonthCalender.bmp +0 -0
  49. data/lib/wrb/applications/frmdesigner/controls/Monthcalender.rb +9 -0
  50. data/lib/wrb/applications/frmdesigner/controls/Panel.bmp +0 -0
  51. data/lib/wrb/applications/frmdesigner/controls/Panel.rb +30 -0
  52. data/lib/wrb/applications/frmdesigner/controls/Progressbar.rb +10 -0
  53. data/lib/wrb/applications/frmdesigner/controls/Radiobutton.bmp +0 -0
  54. data/lib/wrb/applications/frmdesigner/controls/Radiobutton.rb +13 -0
  55. data/lib/wrb/applications/frmdesigner/controls/Rebar.bmp +0 -0
  56. data/lib/wrb/applications/frmdesigner/controls/Rebar.rb +162 -0
  57. data/lib/wrb/applications/frmdesigner/controls/Splitter.bmp +0 -0
  58. data/lib/wrb/applications/frmdesigner/controls/Splitter.rb +66 -0
  59. data/lib/wrb/applications/frmdesigner/controls/Static.bmp +0 -0
  60. data/lib/wrb/applications/frmdesigner/controls/Static.rb +9 -0
  61. data/lib/wrb/applications/frmdesigner/controls/Statusbar.bmp +0 -0
  62. data/lib/wrb/applications/frmdesigner/controls/Statusbar.rb +103 -0
  63. data/lib/wrb/applications/frmdesigner/controls/Tabctrl.bmp +0 -0
  64. data/lib/wrb/applications/frmdesigner/controls/Tabctrl.rb +136 -0
  65. data/lib/wrb/applications/frmdesigner/controls/Timer.bmp +0 -0
  66. data/lib/wrb/applications/frmdesigner/controls/Timer.rb +36 -0
  67. data/lib/wrb/applications/frmdesigner/controls/Toolbar.bmp +0 -0
  68. data/lib/wrb/applications/frmdesigner/controls/Toolbar.rb +165 -0
  69. data/lib/wrb/applications/frmdesigner/controls/Trackbar.bmp +0 -0
  70. data/lib/wrb/applications/frmdesigner/controls/Trackbar.rb +34 -0
  71. data/lib/wrb/applications/frmdesigner/controls/Treeview.bmp +0 -0
  72. data/lib/wrb/applications/frmdesigner/controls/Treeview.rb +107 -0
  73. data/lib/wrb/applications/frmdesigner/controls/Updown.bmp +0 -0
  74. data/lib/wrb/applications/frmdesigner/controls/Updown.rb +31 -0
  75. data/lib/wrb/applications/frmdesigner/controls/default.bmp +0 -0
  76. data/lib/wrb/applications/frmdesigner/controls/progressbar.bmp +0 -0
  77. data/lib/wrb/applications/frmdesigner/controls/unselect.bmp +0 -0
  78. data/lib/wrb/applications/frmdesigner/fddialogs.rb +87 -0
  79. data/lib/wrb/applications/frmdesigner/fdesign.rb +1315 -0
  80. data/lib/wrb/applications/frmdesigner/fdmodules.rb +1394 -0
  81. data/lib/wrb/applications/frmdesigner/fdparseform.rb +197 -0
  82. data/lib/wrb/applications/frmdesigner/img13.bmp +0 -0
  83. data/lib/wrb/base.rb +1294 -0
  84. data/lib/wrb/combocommon.rb +77 -0
  85. data/lib/wrb/commctrlconst.rb +139 -0
  86. data/lib/wrb/commdlg.rb +77 -0
  87. data/lib/wrb/components/animate.rb +114 -0
  88. data/lib/wrb/components/bitmap.rb +116 -0
  89. data/lib/wrb/components/button.rb +134 -0
  90. data/lib/wrb/components/canvas.rb +266 -0
  91. data/lib/wrb/components/checkbox.rb +118 -0
  92. data/lib/wrb/components/choosecolordlg.rb +87 -0
  93. data/lib/wrb/components/choosefontdlg.rb +142 -0
  94. data/lib/wrb/components/clipboard.rb +174 -0
  95. data/lib/wrb/components/combobox.rb +282 -0
  96. data/lib/wrb/components/comboboxex.rb +574 -0
  97. data/lib/wrb/components/cursor.rb +91 -0
  98. data/lib/wrb/components/datetimepicker.rb +197 -0
  99. data/lib/wrb/components/ddeclient.rb +180 -0
  100. data/lib/wrb/components/ddeserver.rb +131 -0
  101. data/lib/wrb/components/dialog.rb +228 -0
  102. data/lib/wrb/components/edit.rb +412 -0
  103. data/lib/wrb/components/font.rb +35 -0
  104. data/lib/wrb/components/form.rb +65 -0
  105. data/lib/wrb/components/groupbox.rb +122 -0
  106. data/lib/wrb/components/header.rb +479 -0
  107. data/lib/wrb/components/hotkeyctrl.rb +72 -0
  108. data/lib/wrb/components/icon.rb +109 -0
  109. data/lib/wrb/components/imagelist.rb +396 -0
  110. data/lib/wrb/components/inifile.rb +97 -0
  111. data/lib/wrb/components/listbox.rb +149 -0
  112. data/lib/wrb/components/listview.rb +1467 -0
  113. data/lib/wrb/components/menu.rb +592 -0
  114. data/lib/wrb/components/menubar.rb +84 -0
  115. data/lib/wrb/components/monthcalender.rb +164 -0
  116. data/lib/wrb/components/openfilenamedlg.rb +147 -0
  117. data/lib/wrb/components/pager.rb +199 -0
  118. data/lib/wrb/components/panel.rb +103 -0
  119. data/lib/wrb/components/picture.rb +55 -0
  120. data/lib/wrb/components/printdlg.rb +148 -0
  121. data/lib/wrb/components/printdlgex.rb +117 -0
  122. data/lib/wrb/components/printer.rb +97 -0
  123. data/lib/wrb/components/progressbar.rb +140 -0
  124. data/lib/wrb/components/radiobutton.rb +49 -0
  125. data/lib/wrb/components/rebar.rb +830 -0
  126. data/lib/wrb/components/registry.rb +408 -0
  127. data/lib/wrb/components/richedit.rb +1181 -0
  128. data/lib/wrb/components/savefilenamedlg.rb +27 -0
  129. data/lib/wrb/components/scintilla.rb +1298 -0
  130. data/lib/wrb/components/scrollbar.rb +239 -0
  131. data/lib/wrb/components/splitter.rb +494 -0
  132. data/lib/wrb/components/static.rb +198 -0
  133. data/lib/wrb/components/statusbar.rb +490 -0
  134. data/lib/wrb/components/tabctrl.rb +686 -0
  135. data/lib/wrb/components/timer.rb +117 -0
  136. data/lib/wrb/components/toolbar.rb +1107 -0
  137. data/lib/wrb/components/tooltip.rb +651 -0
  138. data/lib/wrb/components/trackbar.rb +298 -0
  139. data/lib/wrb/components/treeview.rb +845 -0
  140. data/lib/wrb/components/updown.rb +198 -0
  141. data/lib/wrb/ddeml.rb +241 -0
  142. data/lib/wrb/documents/animate.html +46 -0
  143. data/lib/wrb/documents/bitmap.html +69 -0
  144. data/lib/wrb/documents/button.html +78 -0
  145. data/lib/wrb/documents/canvas.html +137 -0
  146. data/lib/wrb/documents/checkbox.html +77 -0
  147. data/lib/wrb/documents/choosecolordlg.html +29 -0
  148. data/lib/wrb/documents/choosefontdlg.html +31 -0
  149. data/lib/wrb/documents/clipboard.html +31 -0
  150. data/lib/wrb/documents/combobox.html +117 -0
  151. data/lib/wrb/documents/comboboxex.html +139 -0
  152. data/lib/wrb/documents/control.html +53 -0
  153. data/lib/wrb/documents/cursor.html +45 -0
  154. data/lib/wrb/documents/datetimepicker.html +70 -0
  155. data/lib/wrb/documents/ddeclient.html +33 -0
  156. data/lib/wrb/documents/ddeserver.html +26 -0
  157. data/lib/wrb/documents/dialog.html +78 -0
  158. data/lib/wrb/documents/edit.html +169 -0
  159. data/lib/wrb/documents/empty.html +11 -0
  160. data/lib/wrb/documents/favicon.png +0 -0
  161. data/lib/wrb/documents/font.html +38 -0
  162. data/lib/wrb/documents/form.html +63 -0
  163. data/lib/wrb/documents/groupbox.html +57 -0
  164. data/lib/wrb/documents/header.html +85 -0
  165. data/lib/wrb/documents/hotkeyctrl.html +42 -0
  166. data/lib/wrb/documents/icon.html +45 -0
  167. data/lib/wrb/documents/imagelist.html +101 -0
  168. data/lib/wrb/documents/images/button.png +0 -0
  169. data/lib/wrb/documents/images/checkbox.png +0 -0
  170. data/lib/wrb/documents/images/combobox.png +0 -0
  171. data/lib/wrb/documents/images/comboboxex.png +0 -0
  172. data/lib/wrb/documents/images/datetimepicker.png +0 -0
  173. data/lib/wrb/documents/images/edit.png +0 -0
  174. data/lib/wrb/documents/images/groupbox.png +0 -0
  175. data/lib/wrb/documents/images/hotkeyctrl.png +0 -0
  176. data/lib/wrb/documents/images/listbox.png +0 -0
  177. data/lib/wrb/documents/images/listview.png +0 -0
  178. data/lib/wrb/documents/images/menu.png +0 -0
  179. data/lib/wrb/documents/images/menubar.png +0 -0
  180. data/lib/wrb/documents/images/monthcalender.png +0 -0
  181. data/lib/wrb/documents/images/progressbar.png +0 -0
  182. data/lib/wrb/documents/images/radiobutton.png +0 -0
  183. data/lib/wrb/documents/images/rebar.png +0 -0
  184. data/lib/wrb/documents/images/richedit.png +0 -0
  185. data/lib/wrb/documents/images/splitter.png +0 -0
  186. data/lib/wrb/documents/images/static.png +0 -0
  187. data/lib/wrb/documents/images/statusbar.png +0 -0
  188. data/lib/wrb/documents/images/tabctrl.png +0 -0
  189. data/lib/wrb/documents/images/toolbar.png +0 -0
  190. data/lib/wrb/documents/images/tooltip.png +0 -0
  191. data/lib/wrb/documents/images/trackbar.png +0 -0
  192. data/lib/wrb/documents/images/treeview.png +0 -0
  193. data/lib/wrb/documents/images/updown.png +0 -0
  194. data/lib/wrb/documents/index.html +155 -0
  195. data/lib/wrb/documents/inifile.html +36 -0
  196. data/lib/wrb/documents/license.txt +22 -0
  197. data/lib/wrb/documents/listbox.html +96 -0
  198. data/lib/wrb/documents/listview.html +277 -0
  199. data/lib/wrb/documents/make_doc.rb +596 -0
  200. data/lib/wrb/documents/menu.html +144 -0
  201. data/lib/wrb/documents/menubar.html +54 -0
  202. data/lib/wrb/documents/monthcalender.html +48 -0
  203. data/lib/wrb/documents/openfilenamedlg.html +36 -0
  204. data/lib/wrb/documents/pager.html +63 -0
  205. data/lib/wrb/documents/panel.html +32 -0
  206. data/lib/wrb/documents/picture.html +48 -0
  207. data/lib/wrb/documents/printdlg.html +35 -0
  208. data/lib/wrb/documents/printdlgex.html +35 -0
  209. data/lib/wrb/documents/printer.html +40 -0
  210. data/lib/wrb/documents/progressbar.html +69 -0
  211. data/lib/wrb/documents/radiobutton.html +51 -0
  212. data/lib/wrb/documents/rebar.html +143 -0
  213. data/lib/wrb/documents/registry.html +36 -0
  214. data/lib/wrb/documents/richedit.html +232 -0
  215. data/lib/wrb/documents/samples/editimg.bmp +0 -0
  216. data/lib/wrb/documents/samples/editimg.iml +0 -0
  217. data/lib/wrb/documents/samples/fileimg.bmp +0 -0
  218. data/lib/wrb/documents/samples/fileimg.iml +0 -0
  219. data/lib/wrb/documents/samples/sample_button.rb +21 -0
  220. data/lib/wrb/documents/samples/sample_checkbox.rb +18 -0
  221. data/lib/wrb/documents/samples/sample_combobox.rb +18 -0
  222. data/lib/wrb/documents/samples/sample_comboboxex.rb +23 -0
  223. data/lib/wrb/documents/samples/sample_datetimepicker.rb +11 -0
  224. data/lib/wrb/documents/samples/sample_edit.rb +25 -0
  225. data/lib/wrb/documents/samples/sample_groupbox.rb +19 -0
  226. data/lib/wrb/documents/samples/sample_hotkeyctrl.rb +12 -0
  227. data/lib/wrb/documents/samples/sample_listbox.rb +12 -0
  228. data/lib/wrb/documents/samples/sample_listview.rb +32 -0
  229. data/lib/wrb/documents/samples/sample_menu.rb +21 -0
  230. data/lib/wrb/documents/samples/sample_menubar.rb +23 -0
  231. data/lib/wrb/documents/samples/sample_monthcalender.rb +11 -0
  232. data/lib/wrb/documents/samples/sample_progressbar.rb +14 -0
  233. data/lib/wrb/documents/samples/sample_radiobutton.rb +14 -0
  234. data/lib/wrb/documents/samples/sample_rebar.rb +25 -0
  235. data/lib/wrb/documents/samples/sample_richedit.rb +60 -0
  236. data/lib/wrb/documents/samples/sample_splitter.rb +33 -0
  237. data/lib/wrb/documents/samples/sample_static.rb +15 -0
  238. data/lib/wrb/documents/samples/sample_statusbar.rb +17 -0
  239. data/lib/wrb/documents/samples/sample_tabctrl.rb +19 -0
  240. data/lib/wrb/documents/samples/sample_toolbar.rb +29 -0
  241. data/lib/wrb/documents/samples/sample_tooltip.rb +50 -0
  242. data/lib/wrb/documents/samples/sample_trackbar.rb +30 -0
  243. data/lib/wrb/documents/samples/sample_treeview.rb +19 -0
  244. data/lib/wrb/documents/samples/sample_updown.rb +18 -0
  245. data/lib/wrb/documents/samples/sampleimg16.iml +0 -0
  246. data/lib/wrb/documents/samples/sampleimg32.iml +0 -0
  247. data/lib/wrb/documents/samples/samplemg16.png +0 -0
  248. data/lib/wrb/documents/samples/samplemg32.png +0 -0
  249. data/lib/wrb/documents/samples/wrb.ico +0 -0
  250. data/lib/wrb/documents/savefilenamedlg.html +19 -0
  251. data/lib/wrb/documents/scrollbar.html +60 -0
  252. data/lib/wrb/documents/splitter.html +96 -0
  253. data/lib/wrb/documents/static.html +84 -0
  254. data/lib/wrb/documents/statusbar.html +110 -0
  255. data/lib/wrb/documents/tabctrl.html +151 -0
  256. data/lib/wrb/documents/timer.html +43 -0
  257. data/lib/wrb/documents/toolbar.html +181 -0
  258. data/lib/wrb/documents/tooltip.html +131 -0
  259. data/lib/wrb/documents/trackbar.html +107 -0
  260. data/lib/wrb/documents/treeview.html +210 -0
  261. data/lib/wrb/documents/updown.html +85 -0
  262. data/lib/wrb/documents/wincontrol.html +258 -0
  263. data/lib/wrb/documents/window.html +499 -0
  264. data/lib/wrb/documents/wrb.css +228 -0
  265. data/lib/wrb/gmem.rb +26 -0
  266. data/lib/wrb/imecommon.rb +59 -0
  267. data/lib/wrb/listcommon.rb +185 -0
  268. data/lib/wrb/lzss.rb +126 -0
  269. data/lib/wrb/scrollinfo.rb +142 -0
  270. data/lib/wrb/toplevelcommon.rb +634 -0
  271. metadata +315 -0
@@ -0,0 +1,85 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html lang="en">
3
+ <head>
4
+ <meta content="text/html; charset=utf-8" http-equiv="content-type">
5
+ <title>Header</title>
6
+ <link href="wrb.css" type="text/css" rel="stylesheet">
7
+ <link rel="shortcut icon" href="favicon.png">
8
+ </head>
9
+ <body>
10
+ <h3> Header &lt; <a href="wincontrol.html">WinControl</a> <span class=gohome> <a href="index.html">Home </a></span></h3>
11
+ <p>A window that is usually positioned above columns of text or numbers like a Listview's one.
12
+ <br>See also <a href="https://docs.microsoft.com/en-us/windows/desktop/Controls/
13
+ window-controls"> Windows Control section of Microsoft Docs.</a>
14
+ </p>
15
+ <h4> Instance methods </h4>
16
+ <dl>
17
+ <dt><code>data()</code></dt>
18
+ <dd>Not implemented yet</dd>
19
+ <dt><code>data=(arg)</code></dt>
20
+ <dd>Not implemented yet</dd>
21
+ <dt><code>delete_item(index)</code></dt>
22
+ <dd>Deletes an item at specified index from this heder control.</dd>
23
+ <dt><code>fetch(index)</code></dt>
24
+ <dd>Retreives a Header::Item at specified index.</dd>
25
+ <dt><code>imagelist()</code></dt>
26
+ <dd>Gets an imagelist assigned to this Header control.</dd>
27
+ <dt><code>imagelist=(il)</code></dt>
28
+ <dd>Assignes an imagelist to this Header control.</dd>
29
+ <dt><code>insert_item(index, text, width=nil, image=nil, *formats)</code></dt>
30
+ <dd>Inserts item at specified args.<br>`formats' can be both an integer or some symbols.</dd>
31
+ </dl>
32
+ <h4> Header styles <span class=spl>( both the symbols and the integers can be used )</span></h4>
33
+ <p></p>
34
+ <table>
35
+ <tr><th>Symbol</th><th>Integer value</th><th>Symbol</th><th>Integer value</th></tr>
36
+ <tr><td class=name1><code>:buttons</code></td><td class=type><code>HDS_BUTTONS</code></td><td class=name1><code>:checkboxes</code></td><td class=type><code>HDS_CHECKBOXES</code></td></tr>
37
+ <tr><td class=name1><code>:dragdrop</code></td><td class=type><code>HDS_DRAGDROP</code></td><td class=name1><code>:filterbar</code></td><td class=type><code>HDS_FILTERBAR</code></td></tr>
38
+ <tr><td class=name1><code>:flat</code></td><td class=type><code>HDS_FLAT</code></td><td class=name1><code>:fulldrag</code></td><td class=type><code>HDS_FULLDRAG</code></td></tr>
39
+ <tr><td class=name1><code>:hidden</code></td><td class=type><code>HDS_HIDDEN</code></td><td class=name1><code>:horz</code></td><td class=type><code>HDS_HORZ</code></td></tr>
40
+ <tr><td class=name1><code>:hottrack</code></td><td class=type><code>HDS_HOTTRACK</code></td><td class=name1><code>:nosizing</code></td><td class=type><code>HDS_NOSIZING</code></td></tr>
41
+ <tr><td class=name1><code>:overflow</code></td><td class=type><code>HDS_OVERFLOW</code></td></tr>
42
+ </table>
43
+ <h4> Pre-defined events <span class=spl> ( can be added by `events=` method )</span></h4>
44
+ <p></p>
45
+ <table>
46
+ <tr><th width=20%>Symbol</th><th width=20%>Notification code</th><th>Definition <span class=spl>( `???' is name of the control )</span></th></tr>
47
+ <tr><td class=name1><code>:begindrag</code></td><td class=type><code>HDN_BEGINDRAG</code></td><td class=desc><code>???_begindrag(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
48
+ <tr><td class=name1><code>:begintrack</code></td><td class=type><code>HDN_BEGINTRACK</code></td><td class=desc><code>???_begintrack(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
49
+ <tr><td class=name1><code>:dividerdblclick</code></td><td class=type><code>HDN_DIVIDERDBLCLICK</code></td><td class=desc><code>???_dividerdblclick(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
50
+ <tr><td class=name1><code>:enddrag</code></td><td class=type><code>HDN_ENDDRAG</code></td><td class=desc><code>???_enddrag(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
51
+ <tr><td class=name1><code>:endtrack</code></td><td class=type><code>HDN_ENDTRACK</code></td><td class=desc><code>???_endtrack(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
52
+ <tr><td class=name1><code>:filterbtnclick</code></td><td class=type><code>HDN_FILTERBTNCLICK</code></td><td class=desc><code>???_filterbtnclick(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
53
+ <tr><td class=name1><code>:filterchange</code></td><td class=type><code>HDN_FILTERCHANGE</code></td><td class=desc><code>???_filterchange(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
54
+ <tr><td class=name1><code>:getdispinfo</code></td><td class=type><code>HDN_GETDISPINFO</code></td><td class=desc><code>???_getdispinfo(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
55
+ <tr><td class=name1><code>:itemchanged</code></td><td class=type><code>HDN_ITEMCHANGED</code></td><td class=desc><code>???_itemchanged(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
56
+ <tr><td class=name1><code>:itemchanging</code></td><td class=type><code>HDN_ITEMCHANGING</code></td><td class=desc><code>???_itemchanging(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
57
+ <tr><td class=name1><code>:itemclick</code></td><td class=type><code>HDN_ITEMCLICK</code></td><td class=desc><code>???_itemclick(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
58
+ <tr><td class=name1><code>:itemdblclick</code></td><td class=type><code>HDN_ITEMDBLCLICK</code></td><td class=desc><code>???_itemdblclick(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
59
+ <tr><td class=name1><code>:track</code></td><td class=type><code>HDN_TRACK</code></td><td class=desc><code>???_track(arg)<span class=ralign>arg is a NMHEADER</span></code></td></code></tr>
60
+ </table>
61
+ <h4> Default events <span class=spl>( can be defined without using `events=' method )</h4>
62
+ <p>( Nothing )</p>
63
+ <dl>
64
+ </dl>
65
+ <h3> Header::Item </h3>
66
+ <h4> Instance methods </h4>
67
+ <dl>
68
+ <dt><code>data()</code></dt>
69
+ <dt><code>data=(dt)</code></dt>
70
+ <dt><code>format()</code></dt>
71
+ <dt><code>format=(*args)</code></dt>
72
+ <dt><code>hditem()</code></dt>
73
+ <dt><code>image=(idx)</code></dt>
74
+ <dt><code>imgage()</code></dt>
75
+ <dt><code>index()</code></dt>
76
+ <dt><code>index=(idx)</code></dt>
77
+ <dt><code>owner()</code></dt>
78
+ <dt><code>owner=(win)</code></dt>
79
+ <dt><code>text()</code></dt>
80
+ <dt><code>text=(str)</code></dt>
81
+ <dt><code>update()</code></dt>
82
+ </dl>
83
+
84
+ </body>
85
+ </html>
@@ -0,0 +1,42 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html lang="en">
3
+ <head>
4
+ <meta content="text/html; charset=utf-8" http-equiv="content-type">
5
+ <title>Hotkeyctrl</title>
6
+ <link href="wrb.css" type="text/css" rel="stylesheet">
7
+ <link rel="shortcut icon" href="favicon.png">
8
+ </head>
9
+ <body>
10
+ <h3> Hotkeyctrl &lt; <a href="wincontrol.html">WinControl</a> <span class=gohome> <a href="index.html">Home </a> <div class=imgright><img src="images/hotkeyctrl.png"></div>
11
+ </span></h3>
12
+ <p class=fixedh>A window that enables the user to enter a combination of keystrokes to be used as a hot key.
13
+ <br>See also <a href="https://docs.microsoft.com/en-us/windows/desktop/Controls/
14
+ window-controls"> Windows Control section of Microsoft Docs.</a>
15
+ </p>
16
+ <h4> Instance methods </h4>
17
+ <dl>
18
+ <dt><code>get()</code></dt>
19
+ <dd>Gets the virtual key code and modifier flags of a hot key from this Hotkeyctrl.<br>Returns an array of [modifier, keycode].</dd>
20
+ <dt><code>set(modifier, keycode)</code></dt>
21
+ <dd>Sets the hot key combination for this Hotkeyctrl.</dd>
22
+ <dt><code>setrules(combination, modifier)</code></dt>
23
+ <dd>Defines the invalid combinations and the default modifier combination for this Hotkeyctrl.</dd>
24
+ </dl>
25
+ <h4> Sample script </h4>
26
+ <pre class=cd>
27
+ require <span class="str">'wrb'</span>
28
+ <span class="kwd">module</span> WR
29
+ <span class="kwd">class</span> MyForm < Form
30
+ <span class="kwd">def</span> initialize
31
+ <span class="kwd">self</span>.size = [268, 201]
32
+ <span class="kwd">self</span>.inheritfont = [<span class="str">'Meiryo'</span>, -12]
33
+ _<< Hotkeyctrl[<span class="sym">:hotkey</span>, 10, 10, 160, 24]
34
+ <span class="kwd">end</span>
35
+
36
+ <span class="kwd">self</span>.start
37
+ <span class="kwd">end</span>
38
+ <span class="kwd">end</span>
39
+ </pre>
40
+
41
+ </body>
42
+ </html>
@@ -0,0 +1,45 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html lang="en">
3
+ <head>
4
+ <meta content="text/html; charset=utf-8" http-equiv="content-type">
5
+ <title>Icon</title>
6
+ <link href="wrb.css" type="text/css" rel="stylesheet">
7
+ <link rel="shortcut icon" href="favicon.png">
8
+ </head>
9
+ <body>
10
+ <h3> Icon &lt; <a href="rwin::icon.html">RWin::Icon</a> <span class=gohome> <a href="index.html">Home </a></span></h3>
11
+ <p>A picture that consists of a bitmap image combined with a mask to create transparent areas in the picture.
12
+ <br>See also <a href="https://docs.microsoft.com/en-us/windows/desktop/menurc/resources">
13
+ Menus and Other Resources section of Microsft Docs</a>
14
+ </p>
15
+ <h4> Singleton methods </h4>
16
+ <dl>
17
+ <dt><code>self.new(bmmask, bmcolor)</code></dt>
18
+ <dd>Creates a new icon with the specified arguments.</dd>
19
+ <dt><code>self.[](*args)</code></dt>
20
+ <dd>Creates a new icon with the specified arguments.</dd>
21
+ <dt><code>self._load(str)</code></dt>
22
+ <dd>Loads from a string. Give a String as <i>str</i>.</dd>
23
+ <dt><code>self.fromfile()</code></dt>
24
+ <dd>Loads from a icon file. Give a String as <i>path</i> to icon file.</dd>
25
+ <dt><code>self.fromresource()</code></dt>
26
+ <dd>Creates a new icon from the resources of current application.<br>Give an integer for index of icon resources.</dd>
27
+ <dt><code>self.loadb64(str)</code></dt>
28
+ <dd>Loads new bitmap object from a LZSS compressd string.Give a String as <i>str</i>.</dd>
29
+ </dl>
30
+ <h4> Instance methods </h4>
31
+ <dl>
32
+ <dt><code>_dump()</code></dt>
33
+ <dd>Dumps self to a string for Marshal object.</dd>
34
+ <dt><code>_hicon()</code></dt>
35
+ <dd>Retrieves a handle of self. Returns 32/64 bits integer as it.</dd>
36
+ <dt><code>dispose()</code></dt>
37
+ <dd>Disposes self from resource table and sets hicon to 0. Returns true/false.</dd>
38
+ <dt><code>dumpb64()</code></dt>
39
+ <dd>Dumps self to a base64 encoded string with LZSS compression.</dd>
40
+ <dt><code>to_bmps()</code></dt>
41
+ <dd>Creates new bitmap data from self. Returns an array of [bmmask, bmcolor, xHotspot, yHotspot].</dd>
42
+ </dl>
43
+
44
+ </body>
45
+ </html>
@@ -0,0 +1,101 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html lang="en">
3
+ <head>
4
+ <meta content="text/html; charset=utf-8" http-equiv="content-type">
5
+ <title>Imagelist</title>
6
+ <link href="wrb.css" type="text/css" rel="stylesheet">
7
+ <link rel="shortcut icon" href="favicon.png">
8
+ </head>
9
+ <body>
10
+ <h3> Imagelist &lt; <a href="rwin::imagelist.html">RWin::Imagelist</a> <span class=gohome> <a href="index.html">Home </a></span></h3>
11
+ <p>A collection of images of the same size, each of which can be referred to by its index.<br>
12
+ See also <a href="https://docs.microsoft.com/en-us/windows/desktop/Controls/window-controls">
13
+ Windows Control section of Microsoft Docs.</a>
14
+ </p>
15
+ <h4> Singleton methods </h4>
16
+ <dl>
17
+ <dt><code>self.new(name=nil, width, height, flags, initial, glow)</code></dt>
18
+ <dd>Creates new image list with arguments.<br>Give <i>true/:masked</i> as <i>flags</i> for using mask image.<br>`name' is for adding on the toplevel window, give a Symbol if needed.</dd>
19
+ <dt><code>self.[](*args)</code></dt>
20
+ <dd>Creates new image list with arguments.<br>Arguments are same as `self.create(...)'.</dd>
21
+ <dt><code>self._load(str)</code></dt>
22
+ <dd>Loads from a string. Give a String as <i>str</i>.</dd>
23
+ <dt><code>self.file_is_downcase?(path)</code></dt>
24
+ <dd>Retreives whether the file was created by commctl32.dll version 5.If retruns true the image list file was created by old versioned commctl32.dll.</dd>
25
+ <dt><code>self.fromfile(name=nil, path)</code></dt>
26
+ <dd>Loads from a image list file.<br>Give a String as <i>path</i> to image list file.</dd>
27
+ <dt><code>self.loadb64(name=nil, str)</code></dt>
28
+ <dd>Loads new image list object from a LZSS compressd string.<br>Give a String as <i>str</i>.</dd>
29
+ </dl>
30
+ <h4> Instance methods </h4>
31
+ <dl>
32
+ <dt><code><<(arg)</code></dt>
33
+ <dd>Adds a specified bitmap or imagelist at last.Both a Bitmap and Imagelist can be given as <i>arg</i>.</dd>
34
+ <dt><code>[](index)</code></dt>
35
+ <dd>Retreives information of item at specified index. Returns Imagelist::Item.</dd>
36
+ <dt><code>_dump()</code></dt>
37
+ <dd>Dumps self to a string for Marshal object.</dd>
38
+ <dt><code>_himagelist()</code></dt>
39
+ <dd>Retrieves an imagelist handle of self. Returns 32/64 bits integer as it.</dd>
40
+ <dt><code>add(color, mask=nil)</code></dt>
41
+ <dd>Adds an image or images to this image list. Give a Bitmap object as each <i>color</i> and <i>mask</i>.</dd>
42
+ <dt><code>addicon(icon)</code></dt>
43
+ <dd>Adds an image from specified icon. Give an Icon object as <i>icon</i>.</dd>
44
+ <dt><code>addmasked(bitmap, maskcolor=nil)</code></dt>
45
+ <dd>Adds an image from specified bitmap and mask-color.<br>If omitted maskcolor, color of (0, 0) pixcel in specified bitmap will be used as mask-color.</dd>
46
+ <dt><code>bkcolor()</code></dt>
47
+ <dd>Gets the background color for this image list.</dd>
48
+ <dt><code>bkcolor=(clr)</code></dt>
49
+ <dd>Sets the background color for this image list. Give a RGB integer as <i>clr</i>.</dd>
50
+ <dt><code>clear()</code></dt>
51
+ <dd>Deletes all images in this image list.</dd>
52
+ <dt><code>delete()</code></dt>
53
+ <dd>Destroys this image list. and remove from resource list.</dd>
54
+ <dt><code>dispose()</code></dt>
55
+ <dd>Alias of delete.</dd>
56
+ <dt><code>downlevel=(f)</code></dt>
57
+ <dd>Sets whether created this by commctl32.dll version 5 or not.</dd>
58
+ <dt><code>dumpb64(downlevel=nil)</code></dt>
59
+ <dd>Dumps self to a LZSS compressed and base64 encoded string.</dd>
60
+ <dt><code>dup()</code></dt>
61
+ <dd>Creates a new imagelist duplicated this image list.</dd>
62
+ <dt><code>each(){|item| ... }</code></dt>
63
+ <dd>Performs the block for each <i>item</i> in this imagelist as a block parameter.</dd>
64
+ <dt><code>icon(index)</code></dt>
65
+ <dd>Retreives Icon object from specified index. Returns RWin::Icon.</dd>
66
+ <dt><code>iconsize()</code></dt>
67
+ <dd>Retrieves the dimensions of images in this image list.Retruns array of two integers as <i>[w, h]</i>.</dd>
68
+ <dt><code>imageinfo()</code></dt>
69
+ <dd>Retreives a CStruct object. Wrap this with <i>IMAGEINFO</i> structure to handle by names.</dd>
70
+ <dt><code>masked()</code></dt>
71
+ <dt><code>masked?()</code></dt>
72
+ <dd>Retreives whether this imagelist was masked or not.</dd>
73
+ <dt><code>merge(imagelist)</code></dt>
74
+ <dd>Merges specified <i>imagelist</i> into this.</dd>
75
+ <dt><code>remove(index)</code></dt>
76
+ <dd>Rmoves an image at specified <i>index</i> from this image list.</dd>
77
+ <dt><code>replace(idx, obj, mask=nil)</code></dt>
78
+ <dd>Replaces to a new image at specified <i>index</i> in this image list using a Bitmap or an Icon.<br>If Bitmap given, will be masked automaticaly by using color of (0, 0) pixcel in it.</dd>
79
+ <dt><code>replaceicon(index, icon)</code></dt>
80
+ <dd>Replaces to a new image at specified <i>index</i> in this image list using an <i>icon</i>.</dd>
81
+ <dt><code>resize(newsize)</code></dt>
82
+ <dd>Resizes size of this imagelist. (not icon size)</dd>
83
+ <dt><code>savefile(path, downlevel=nil)</code></dt>
84
+ <dd>Saves to specified path as imagelist file.<br>If given true as downlevel, saves forced as a commctl32.dll version 5 file.</dd>
85
+ <dt><code>size()</code></dt>
86
+ <dt><code>count()</code></dt>
87
+ <dd>Retreives count of images in this imagelist.</dd>
88
+ </dl>
89
+ <h3> Imagelist::Item </h3>
90
+ <p>Wrapper of a specified index of an Imagelist.</p>
91
+ <h4> Instance methods </h4>
92
+ <dl>
93
+ <dt><code>delete()</code></dt>
94
+ <dt><code>draw(cv, x, y)</code></dt>
95
+ <dt><code>icon()</code></dt>
96
+ <dt><code>replace(bmp, mask=nil)</code></dt>
97
+ <dt><code>replaceicon(ico)</code></dt>
98
+ </dl>
99
+
100
+ </body>
101
+ </html>
@@ -0,0 +1,155 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html lang="en">
3
+ <head>
4
+ <meta content="text/html; charset=utf-8" http-equiv="content-type">
5
+ <title> WRB Reference </title>
6
+ <link href="wrb.css" type="text/css" rel="stylesheet">
7
+ <link rel="shortcut icon" href="favicon.png">
8
+ </head>
9
+ <body>
10
+ <h1>The WRB Reference Manual </h1>
11
+ <p><a href="https://bitbucket.org/wrb/wrb/">Project WRB</a> was forked from <a href="http://www.osk.3web.ne.jp/~nyasu/vruby/vrproject-e.html">
12
+ Visualu Ruby Project</a>.<br>
13
+ Author of this project: BANJO Koyu &lt banjokoyu at gmail.com &gt <br>
14
+ </p>
15
+ <h2> Introduction </h2>
16
+ <p>A Windows GUI framework on Ruby, named "WRB".</br>
17
+ Also refer to <a href="https://docs.microsoft.com/en-us/windows/desktop/"> `Desctop applictions' section of Microsoft Docs</a> for details.
18
+ <h2> License </h2>
19
+ <p><a href="license.txt">2-clause BSD license</a></p>
20
+ <h2> Table Of Contents </h2>
21
+ <ul>
22
+ <li><a href=#modules> Modules </a></li>
23
+ <li><a href=#classes> Classes </a></li>
24
+ <li><a href=#applications> Applications </a></li>
25
+ </ul>
26
+ <h2><a name="modules"> Modules </a></h2>
27
+ <table>
28
+ <tr>
29
+ <td class=sign><a href="rwin">RWin</a></td>
30
+ <td class=desc> A module which collected low-level classes and functions. Shouldn't be used directly carelessly, use WR module instead.</td>
31
+ </tr>
32
+ <tr>
33
+ <td class=sign><a href=""> WR </a></td>
34
+ <td class=desc>This module is used as name space in which everything is defined there.</td>
35
+ </tr>
36
+ <tr>
37
+ <td class=sign1><a href=""> WR::API </a></td>
38
+ <td class=desc> The wrapper of the Windows-API functions and C-structures. </td>
39
+ </tr>
40
+ <tr>
41
+ <td class=sign1><a href=""> WR::APP </a></td>
42
+ <td class=desc> The module which collected the methods and classes for made application. </td>
43
+ </tr>
44
+ <tr>
45
+ <td class=sign1><a href=""> WR::RC </a></td>
46
+ <td class=desc> The module for gathering constants of resources and API functions. </td>
47
+ </tr>
48
+ <tr>
49
+ <td class=sign1><a href=""> WR::ModParent </a></td>
50
+ <td class=desc> The module in which contains the methods for a parent window. </td>
51
+ </tr>
52
+ </table>
53
+ <h2><a name="classes"> Classes </a></h2>
54
+ <table>
55
+ <tr>
56
+ <td class=sign><a href="window.html"> Window </a></td>
57
+ <td class=desc> The root of all windows. </td>
58
+ </tr>
59
+ <tr>
60
+ <td class=sign><a href="form.html"> Form </a></td>
61
+ <td class=desc> The top level window that is also a container of controls.</td>
62
+ </tr>
63
+ <tr>
64
+ <td class=sign><a href="dialog.html"> Dialog </a></td>
65
+ <td class=desc> The dialog box that is also a container of controls. </td>
66
+ </tr>
67
+ <tr>
68
+ <td class=sign2><a class=sign2 href=#controls> Controls </a></td>
69
+ <td class=desc> The following controls are implemented. </td>
70
+ </tr>
71
+ <tr>
72
+ <td class=sign2><a class=sign2 href=#commondialogs> Common dialogs </a></td>
73
+ <td class=desc> The following common dialogs are implemented. </td>
74
+ </tr>
75
+ <tr>
76
+ <td class=sign2><a class=sign2 href=#otherresources> Other resources </a></td>
77
+ <td class=desc> The following classes are implemented. </td>
78
+ </tr>
79
+ </table>
80
+
81
+ <h2><a name="controls"> Controls </a></h2>
82
+ <p>The child windows of Form or Dialog. They are typically inherited from <a href="wincontrol.html"> WinControl </a>.</p>
83
+ <table>
84
+ <tr><td class="sign"><a href="animate.html">Animate</td><td class="desc">A window that displays an AVI clip (Animation).</td></tr>
85
+ <tr><td class="sign"><a href="button.html">Button</td><td class="desc">This is a control the user can click to provide input to an application.</td></tr>
86
+ <tr><td class="sign"><a href="checkbox.html">Checkbox</td><td class="desc">This control consists of a square box that indicates a choice the user can make by selecting the button.</td></tr>
87
+ <tr><td class="sign"><a href="combobox.html">Combobox</td><td class="desc">This control combines an edit box or static text and a list.</td></tr>
88
+ <tr><td class="sign"><a href="comboboxex.html">ComboboxEx</td><td class="desc">A combo box control which provides native support for item images.</td></tr>
89
+ <tr><td class="sign"><a href="datetimepicker.html">DateTimePicker</td><td class="desc">This control provides a simple and intuitive interface through which to exchange date and time information with a user.</td></tr>
90
+ <tr><td class="sign"><a href="edit.html">Edit</td><td class="desc">A rectangular control which enable the user to enter and edit text.</td></tr>
91
+ <tr><td class="sign"><a href="groupbox.html">Groupbox</td><td class="desc">This control is a rectangle that surrounds a set of controls, such as check boxes or radio buttons. <br></td></tr>
92
+ <tr><td class="sign"><a href="header.html">Header</td><td class="desc">A window that is usually positioned above columns of text or numbers like a Listview's one.</td></tr>
93
+ <tr><td class="sign"><a href="hotkeyctrl.html">Hotkeyctrl</td><td class="desc">A window that enables the user to enter a combination of keystrokes to be used as a hot key.</td></tr>
94
+ <tr><td class="sign"><a href="listbox.html">Listbox</td><td class="desc">This control contains a simple list from which the user can generally select one or more items.<br></td></tr>
95
+ <tr><td class="sign"><a href="listview.html">Listview</td><td class="desc">A window that displays a collection of items. This provides several ways to arrange and display items.</td></tr>
96
+ <tr><td class="sign"><a href="monthcalender.html">Monthcalender</td><td class="desc">This control implements a calendar-like user interface.</td></tr>
97
+ <tr><td class="sign"><a href="pager.html">Pager</td><td class="desc">This control is a window container that is used with a window that does not have enough display area to show all of its content.</td></tr>
98
+ <tr><td class="sign"><a href="panel.html">Panel</td><td class="desc">This control is a window container that can layout any controls on. (WRB original)</td></tr>
99
+ <tr><td class="sign"><a href="progressbar.html">Progressbar</td><td class="desc">A window that an application can use to indicate the progress of a lengthy operation.</td></tr>
100
+ <tr><td class="sign"><a href="radiobutton.html">Radiobutton</td><td class="desc">This control consists of a round button that indicates a choice the user can make by selecting the button.</td></tr>
101
+ <tr><td class="sign"><a href="rebar.html">Rebar</td><td class="desc">This control acts as a container for child windows.<br></td></tr>
102
+ <tr><td class="sign"><a href="richedit.html">Richedit</td><td class="desc">This control enables the user to enter, edit, print, and save text.</td></tr>
103
+ <tr><td class="sign"><a href="scrollbar.html">Scrollbar</td><td class="desc">This control allows the user to bring into view the portions of an object that extend beyond the borders of a window.</td></tr>
104
+ <tr><td class="sign"><a href="splitter.html">Splitter</td><td class="desc">A window to split a parent window into two panes such as right-left or upper-lower. (WRB original)</td></tr>
105
+ <tr><td class="sign"><a href="static.html">Static</td><td class="desc">This control provides the user with informational text that typically require no response.</td></tr>
106
+ <tr><td class="sign"><a href="statusbar.html">Statusbar</td><td class="desc">A horizontal window at the bottom of a parent window in which an application can display various kinds of status information.</td></tr>
107
+ <tr><td class="sign"><a href="tabctrl.html">Tabctrl</td><td class="desc">This control is analogous to the dividers in a notebook or the labels in a file cabinet.</td></tr>
108
+ <tr><td class="sign"><a href="toolbar.html">Toolbar</td><td class="desc">A control that contains one or more buttons. Each button, when clicked by a user, sends a command message to the parent window.</td></tr>
109
+ <tr><td class="sign"><a href="tooltip.html">Tooltip</td><td class="desc">A small window that appears automatically, or pops up, when the user pauses the mouse pointer over a tool or some other UI element.</td></tr>
110
+ <tr><td class="sign"><a href="trackbar.html">Trackbar</td><td class="desc">A window that contains a slider in a channel, and optional tick marks.</td></tr>
111
+ <tr><td class="sign"><a href="treeview.html">Treeview</td><td class="desc">A window that displays a hierarchical list of items, such as the headings in a document, the entries in an index.</td></tr>
112
+ <tr><td class="sign"><a href="updown.html">Updown</td><td class="desc">A pair of arrow buttons that the user can click to increment or decrement a value, such as a number displayed in a buddy control.</td></tr>
113
+ </table>
114
+
115
+ <h2><a name="commondialogs"> Common dialogs </a></h2>
116
+ <p>These common dialogs are all inherited from CommonDialog.</p>
117
+ <table>
118
+ <tr><td class="sign"><a href="choosecolordlg.html">ChooseColorDlg</td><td class="desc">A dialog box that enables the user to select a color.</td></tr>
119
+ <tr><td class="sign"><a href="choosefontdlg.html">ChooseFontDlg</td><td class="desc">A dialog box that enables the user to choose attributes for a logical font.</td></tr>
120
+ <tr><td class="sign"><a href="openfilenamedlg.html">OpenFileNameDlg</td><td class="desc">A dialog box that lets the user specify the drive, directory, and the name of a file or set of files to open.</td></tr>
121
+ <tr><td class="sign"><a href="printdlg.html">PrintDlg</td><td class="desc">This dialog box enables the user to specify the properties of a particular print job.</td></tr>
122
+ <tr><td class="sign"><a href="printdlgex.html">PrintDlgEx</td><td class="desc">Displays a Print property sheet that enables the user to specify the properties of a particular print job.</td></tr>
123
+ <tr><td class="sign"><a href="savefilenamedlg.html">SaveFileNameDlg</td><td class="desc">A dialog box that lets the user specify the drive, directory, and name of a file to save.</td></tr>
124
+ </table>
125
+
126
+ <h2><a name="otherresources"> Other resources </a></h2>
127
+ <table>
128
+ <tr><td class="sign"><a href="bitmap.html">Bitmap</td><td class="desc">A memory-image which consists of the pixel data for a graphics image and its attributes.</td></tr>
129
+ <tr><td class="sign"><a href="canvas.html">Canvas</td><td class="desc">This is wrapper of <i>hDC</i> operation of the window.<br></td></tr>
130
+ <tr><td class="sign"><a href="clipboard.html">Clipboard</td><td class="desc">Provides an interface that enable applications to transfer data.</td></tr>
131
+ <tr><td class="sign"><a href="cursor.html">Cursor</td><td class="desc">A small picture whose location on the screen is controlled by a pointing device.</td></tr>
132
+ <tr><td class="sign"><a href="ddeclient.html">DdeClient</td><td class="desc">A client interface for Dynamic Data Exchange.</td></tr>
133
+ <tr><td class="sign"><a href="ddeserver.html">DdeServer</td><td class="desc">Provides Dynamic Data Exchange server.</td></tr>
134
+ <tr><td class="sign"><a href="font.html">Font</td><td class="desc">Defines a particular format for text, including font face, size, and style attributes.</td></tr>
135
+ <tr><td class="sign"><a href="icon.html">Icon</td><td class="desc">A picture that consists of a bitmap image combined with a mask to create transparent areas in the picture.</td></tr>
136
+ <tr><td class="sign"><a href="imagelist.html">Imagelist</td><td class="desc">A collection of images of the same size, each of which can be referred to by its index.<br></td></tr>
137
+ <tr><td class="sign"><a href="inifile.html">Inifile</td><td class="desc">Handles a Inifile (*.ini) like a Hash. (WRB orignal)<br></td></tr>
138
+ <tr><td class="sign"><a href="menu.html">Menu</td><td class="desc">A list of items that specify options or groups of options (a submenu) for an application.<br></td></tr>
139
+ <tr><td class="sign"><a href="menubar.html">Menubar</td><td class="desc">The main menu that is arranged at the top position of the window.<br></td></tr>
140
+ <tr><td class="sign"><a href="picture.html">Picture</td><td class="desc">The very small subset of GDI+ functions, only for getting and saving sevral types of an image file.<br></td></tr>
141
+ <tr><td class="sign"><a href="printer.html">Printer</td><td class="desc">Provides an interface that allows an application to access the printer.</td></tr>
142
+ <tr><td class="sign"><a href="registry.html">Registry</td><td class="desc">Provides an interface that allows an application to access the Windows-registry.</td></tr>
143
+ <tr><td class="sign"><a href="timer.html">Timer</td><td class="desc">Handles a timer of a Window.</td></tr>
144
+ </table>
145
+
146
+ <h2><a name="applications"> Applications </a></h2>
147
+ <table>
148
+ <tr>
149
+ <td class=sign><a href="formdesigner.html"> FormDesigner </a></td>
150
+ <td class=desc> A convinience tool for creating the forms and the dialogs. </td>
151
+ </tr>
152
+ </table>
153
+ <br><br>
154
+ </body>
155
+ </html>