tk_as_gem 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (345) hide show
  1. data/README +22 -0
  2. data/Rakefile +11 -0
  3. data/VERSION +1 -0
  4. data/ext/ChangeLog.tkextlib +935 -0
  5. data/ext/MANUAL_tcltklib.eng +469 -0
  6. data/ext/MANUAL_tcltklib.eucj +579 -0
  7. data/ext/README.1st +19 -0
  8. data/ext/README.ActiveTcl +49 -0
  9. data/ext/README.fork +34 -0
  10. data/ext/README.macosx-aqua +67 -0
  11. data/ext/README.tcltklib +85 -0
  12. data/ext/depend +2 -0
  13. data/ext/extconf.rb +451 -0
  14. data/ext/lib/README +30 -0
  15. data/ext/lib/multi-tk.rb +3491 -0
  16. data/ext/lib/remote-tk.rb +530 -0
  17. data/ext/lib/tcltk.rb +367 -0
  18. data/ext/lib/tk.rb +5584 -0
  19. data/ext/lib/tk/after.rb +6 -0
  20. data/ext/lib/tk/autoload.rb +414 -0
  21. data/ext/lib/tk/bgerror.rb +29 -0
  22. data/ext/lib/tk/bindtag.rb +138 -0
  23. data/ext/lib/tk/button.rb +30 -0
  24. data/ext/lib/tk/canvas.rb +789 -0
  25. data/ext/lib/tk/canvastag.rb +434 -0
  26. data/ext/lib/tk/checkbutton.rb +30 -0
  27. data/ext/lib/tk/clipboard.rb +75 -0
  28. data/ext/lib/tk/clock.rb +71 -0
  29. data/ext/lib/tk/composite.rb +458 -0
  30. data/ext/lib/tk/console.rb +52 -0
  31. data/ext/lib/tk/dialog.rb +326 -0
  32. data/ext/lib/tk/encodedstr.rb +187 -0
  33. data/ext/lib/tk/entry.rb +119 -0
  34. data/ext/lib/tk/event.rb +542 -0
  35. data/ext/lib/tk/font.rb +2344 -0
  36. data/ext/lib/tk/frame.rb +131 -0
  37. data/ext/lib/tk/grid.rb +279 -0
  38. data/ext/lib/tk/image.rb +275 -0
  39. data/ext/lib/tk/itemconfig.rb +1215 -0
  40. data/ext/lib/tk/itemfont.rb +327 -0
  41. data/ext/lib/tk/kinput.rb +71 -0
  42. data/ext/lib/tk/label.rb +21 -0
  43. data/ext/lib/tk/labelframe.rb +29 -0
  44. data/ext/lib/tk/listbox.rb +282 -0
  45. data/ext/lib/tk/macpkg.rb +78 -0
  46. data/ext/lib/tk/menu.rb +681 -0
  47. data/ext/lib/tk/menubar.rb +131 -0
  48. data/ext/lib/tk/menuspec.rb +275 -0
  49. data/ext/lib/tk/message.rb +22 -0
  50. data/ext/lib/tk/mngfocus.rb +33 -0
  51. data/ext/lib/tk/msgcat.rb +296 -0
  52. data/ext/lib/tk/namespace.rb +551 -0
  53. data/ext/lib/tk/optiondb.rb +377 -0
  54. data/ext/lib/tk/optionobj.rb +212 -0
  55. data/ext/lib/tk/pack.rb +107 -0
  56. data/ext/lib/tk/package.rb +143 -0
  57. data/ext/lib/tk/palette.rb +55 -0
  58. data/ext/lib/tk/panedwindow.rb +258 -0
  59. data/ext/lib/tk/place.rb +128 -0
  60. data/ext/lib/tk/radiobutton.rb +71 -0
  61. data/ext/lib/tk/root.rb +95 -0
  62. data/ext/lib/tk/scale.rb +111 -0
  63. data/ext/lib/tk/scrollable.rb +82 -0
  64. data/ext/lib/tk/scrollbar.rb +177 -0
  65. data/ext/lib/tk/scrollbox.rb +39 -0
  66. data/ext/lib/tk/selection.rb +86 -0
  67. data/ext/lib/tk/spinbox.rb +119 -0
  68. data/ext/lib/tk/tagfont.rb +43 -0
  69. data/ext/lib/tk/text.rb +1596 -0
  70. data/ext/lib/tk/textimage.rb +88 -0
  71. data/ext/lib/tk/textmark.rb +204 -0
  72. data/ext/lib/tk/texttag.rb +318 -0
  73. data/ext/lib/tk/textwindow.rb +154 -0
  74. data/ext/lib/tk/timer.rb +669 -0
  75. data/ext/lib/tk/toplevel.rb +262 -0
  76. data/ext/lib/tk/ttk_selector.rb +76 -0
  77. data/ext/lib/tk/txtwin_abst.rb +39 -0
  78. data/ext/lib/tk/validation.rb +397 -0
  79. data/ext/lib/tk/variable.rb +1765 -0
  80. data/ext/lib/tk/virtevent.rb +139 -0
  81. data/ext/lib/tk/winfo.rb +392 -0
  82. data/ext/lib/tk/winpkg.rb +153 -0
  83. data/ext/lib/tk/wm.rb +552 -0
  84. data/ext/lib/tk/xim.rb +122 -0
  85. data/ext/lib/tkafter.rb +4 -0
  86. data/ext/lib/tkbgerror.rb +4 -0
  87. data/ext/lib/tkcanvas.rb +4 -0
  88. data/ext/lib/tkclass.rb +47 -0
  89. data/ext/lib/tkconsole.rb +4 -0
  90. data/ext/lib/tkdialog.rb +4 -0
  91. data/ext/lib/tkentry.rb +4 -0
  92. data/ext/lib/tkextlib/ICONS.rb +13 -0
  93. data/ext/lib/tkextlib/ICONS/icons.rb +129 -0
  94. data/ext/lib/tkextlib/ICONS/setup.rb +8 -0
  95. data/ext/lib/tkextlib/SUPPORT_STATUS +196 -0
  96. data/ext/lib/tkextlib/blt.rb +187 -0
  97. data/ext/lib/tkextlib/blt/barchart.rb +79 -0
  98. data/ext/lib/tkextlib/blt/bitmap.rb +112 -0
  99. data/ext/lib/tkextlib/blt/busy.rb +82 -0
  100. data/ext/lib/tkextlib/blt/component.rb +2145 -0
  101. data/ext/lib/tkextlib/blt/container.rb +28 -0
  102. data/ext/lib/tkextlib/blt/cutbuffer.rb +23 -0
  103. data/ext/lib/tkextlib/blt/dragdrop.rb +268 -0
  104. data/ext/lib/tkextlib/blt/eps.rb +32 -0
  105. data/ext/lib/tkextlib/blt/graph.rb +67 -0
  106. data/ext/lib/tkextlib/blt/htext.rb +111 -0
  107. data/ext/lib/tkextlib/blt/setup.rb +8 -0
  108. data/ext/lib/tkextlib/blt/spline.rb +23 -0
  109. data/ext/lib/tkextlib/blt/stripchart.rb +74 -0
  110. data/ext/lib/tkextlib/blt/table.rb +399 -0
  111. data/ext/lib/tkextlib/blt/tabnotebook.rb +110 -0
  112. data/ext/lib/tkextlib/blt/tabset.rb +500 -0
  113. data/ext/lib/tkextlib/blt/ted.rb +65 -0
  114. data/ext/lib/tkextlib/blt/tile.rb +21 -0
  115. data/ext/lib/tkextlib/blt/tile/button.rb +16 -0
  116. data/ext/lib/tkextlib/blt/tile/checkbutton.rb +17 -0
  117. data/ext/lib/tkextlib/blt/tile/frame.rb +16 -0
  118. data/ext/lib/tkextlib/blt/tile/label.rb +16 -0
  119. data/ext/lib/tkextlib/blt/tile/radiobutton.rb +17 -0
  120. data/ext/lib/tkextlib/blt/tile/scrollbar.rb +16 -0
  121. data/ext/lib/tkextlib/blt/tile/toplevel.rb +16 -0
  122. data/ext/lib/tkextlib/blt/tree.rb +1058 -0
  123. data/ext/lib/tkextlib/blt/treeview.rb +1272 -0
  124. data/ext/lib/tkextlib/blt/unix_dnd.rb +135 -0
  125. data/ext/lib/tkextlib/blt/vector.rb +256 -0
  126. data/ext/lib/tkextlib/blt/watch.rb +175 -0
  127. data/ext/lib/tkextlib/blt/win_printer.rb +61 -0
  128. data/ext/lib/tkextlib/blt/winop.rb +107 -0
  129. data/ext/lib/tkextlib/bwidget.rb +151 -0
  130. data/ext/lib/tkextlib/bwidget/arrowbutton.rb +21 -0
  131. data/ext/lib/tkextlib/bwidget/bitmap.rb +21 -0
  132. data/ext/lib/tkextlib/bwidget/button.rb +31 -0
  133. data/ext/lib/tkextlib/bwidget/buttonbox.rb +90 -0
  134. data/ext/lib/tkextlib/bwidget/combobox.rb +51 -0
  135. data/ext/lib/tkextlib/bwidget/dialog.rb +182 -0
  136. data/ext/lib/tkextlib/bwidget/dragsite.rb +31 -0
  137. data/ext/lib/tkextlib/bwidget/dropsite.rb +39 -0
  138. data/ext/lib/tkextlib/bwidget/dynamichelp.rb +63 -0
  139. data/ext/lib/tkextlib/bwidget/entry.rb +43 -0
  140. data/ext/lib/tkextlib/bwidget/label.rb +41 -0
  141. data/ext/lib/tkextlib/bwidget/labelentry.rb +80 -0
  142. data/ext/lib/tkextlib/bwidget/labelframe.rb +52 -0
  143. data/ext/lib/tkextlib/bwidget/listbox.rb +358 -0
  144. data/ext/lib/tkextlib/bwidget/mainframe.rb +128 -0
  145. data/ext/lib/tkextlib/bwidget/messagedlg.rb +192 -0
  146. data/ext/lib/tkextlib/bwidget/notebook.rb +166 -0
  147. data/ext/lib/tkextlib/bwidget/pagesmanager.rb +73 -0
  148. data/ext/lib/tkextlib/bwidget/panedwindow.rb +37 -0
  149. data/ext/lib/tkextlib/bwidget/panelframe.rb +57 -0
  150. data/ext/lib/tkextlib/bwidget/passwddlg.rb +44 -0
  151. data/ext/lib/tkextlib/bwidget/progressbar.rb +20 -0
  152. data/ext/lib/tkextlib/bwidget/progressdlg.rb +58 -0
  153. data/ext/lib/tkextlib/bwidget/scrollableframe.rb +40 -0
  154. data/ext/lib/tkextlib/bwidget/scrolledwindow.rb +38 -0
  155. data/ext/lib/tkextlib/bwidget/scrollview.rb +25 -0
  156. data/ext/lib/tkextlib/bwidget/selectcolor.rb +73 -0
  157. data/ext/lib/tkextlib/bwidget/selectfont.rb +86 -0
  158. data/ext/lib/tkextlib/bwidget/separator.rb +20 -0
  159. data/ext/lib/tkextlib/bwidget/setup.rb +8 -0
  160. data/ext/lib/tkextlib/bwidget/spinbox.rb +98 -0
  161. data/ext/lib/tkextlib/bwidget/statusbar.rb +52 -0
  162. data/ext/lib/tkextlib/bwidget/titleframe.rb +33 -0
  163. data/ext/lib/tkextlib/bwidget/tree.rb +453 -0
  164. data/ext/lib/tkextlib/bwidget/widget.rb +129 -0
  165. data/ext/lib/tkextlib/itcl.rb +13 -0
  166. data/ext/lib/tkextlib/itcl/incr_tcl.rb +178 -0
  167. data/ext/lib/tkextlib/itcl/setup.rb +13 -0
  168. data/ext/lib/tkextlib/itk.rb +13 -0
  169. data/ext/lib/tkextlib/itk/incr_tk.rb +446 -0
  170. data/ext/lib/tkextlib/itk/setup.rb +13 -0
  171. data/ext/lib/tkextlib/iwidgets.rb +94 -0
  172. data/ext/lib/tkextlib/iwidgets/buttonbox.rb +120 -0
  173. data/ext/lib/tkextlib/iwidgets/calendar.rb +125 -0
  174. data/ext/lib/tkextlib/iwidgets/canvasprintbox.rb +53 -0
  175. data/ext/lib/tkextlib/iwidgets/canvasprintdialog.rb +38 -0
  176. data/ext/lib/tkextlib/iwidgets/checkbox.rb +129 -0
  177. data/ext/lib/tkextlib/iwidgets/combobox.rb +104 -0
  178. data/ext/lib/tkextlib/iwidgets/dateentry.rb +20 -0
  179. data/ext/lib/tkextlib/iwidgets/datefield.rb +58 -0
  180. data/ext/lib/tkextlib/iwidgets/dialog.rb +20 -0
  181. data/ext/lib/tkextlib/iwidgets/dialogshell.rb +120 -0
  182. data/ext/lib/tkextlib/iwidgets/disjointlistbox.rb +50 -0
  183. data/ext/lib/tkextlib/iwidgets/entryfield.rb +185 -0
  184. data/ext/lib/tkextlib/iwidgets/extbutton.rb +40 -0
  185. data/ext/lib/tkextlib/iwidgets/extfileselectionbox.rb +46 -0
  186. data/ext/lib/tkextlib/iwidgets/extfileselectiondialog.rb +33 -0
  187. data/ext/lib/tkextlib/iwidgets/feedback.rb +35 -0
  188. data/ext/lib/tkextlib/iwidgets/fileselectionbox.rb +46 -0
  189. data/ext/lib/tkextlib/iwidgets/fileselectiondialog.rb +33 -0
  190. data/ext/lib/tkextlib/iwidgets/finddialog.rb +42 -0
  191. data/ext/lib/tkextlib/iwidgets/hierarchy.rb +365 -0
  192. data/ext/lib/tkextlib/iwidgets/hyperhelp.rb +50 -0
  193. data/ext/lib/tkextlib/iwidgets/labeledframe.rb +39 -0
  194. data/ext/lib/tkextlib/iwidgets/labeledwidget.rb +45 -0
  195. data/ext/lib/tkextlib/iwidgets/mainwindow.rb +67 -0
  196. data/ext/lib/tkextlib/iwidgets/menubar.rb +211 -0
  197. data/ext/lib/tkextlib/iwidgets/messagebox.rb +92 -0
  198. data/ext/lib/tkextlib/iwidgets/messagedialog.rb +20 -0
  199. data/ext/lib/tkextlib/iwidgets/notebook.rb +174 -0
  200. data/ext/lib/tkextlib/iwidgets/optionmenu.rb +92 -0
  201. data/ext/lib/tkextlib/iwidgets/panedwindow.rb +133 -0
  202. data/ext/lib/tkextlib/iwidgets/promptdialog.rb +131 -0
  203. data/ext/lib/tkextlib/iwidgets/pushbutton.rb +35 -0
  204. data/ext/lib/tkextlib/iwidgets/radiobox.rb +120 -0
  205. data/ext/lib/tkextlib/iwidgets/scopedobject.rb +24 -0
  206. data/ext/lib/tkextlib/iwidgets/scrolledcanvas.rb +353 -0
  207. data/ext/lib/tkextlib/iwidgets/scrolledframe.rb +59 -0
  208. data/ext/lib/tkextlib/iwidgets/scrolledhtml.rb +58 -0
  209. data/ext/lib/tkextlib/iwidgets/scrolledlistbox.rb +207 -0
  210. data/ext/lib/tkextlib/iwidgets/scrolledtext.rb +564 -0
  211. data/ext/lib/tkextlib/iwidgets/scrolledwidget.rb +20 -0
  212. data/ext/lib/tkextlib/iwidgets/selectionbox.rb +102 -0
  213. data/ext/lib/tkextlib/iwidgets/selectiondialog.rb +92 -0
  214. data/ext/lib/tkextlib/iwidgets/setup.rb +8 -0
  215. data/ext/lib/tkextlib/iwidgets/shell.rb +38 -0
  216. data/ext/lib/tkextlib/iwidgets/spindate.rb +48 -0
  217. data/ext/lib/tkextlib/iwidgets/spinint.rb +30 -0
  218. data/ext/lib/tkextlib/iwidgets/spinner.rb +169 -0
  219. data/ext/lib/tkextlib/iwidgets/spintime.rb +48 -0
  220. data/ext/lib/tkextlib/iwidgets/tabnotebook.rb +180 -0
  221. data/ext/lib/tkextlib/iwidgets/tabset.rb +144 -0
  222. data/ext/lib/tkextlib/iwidgets/timeentry.rb +25 -0
  223. data/ext/lib/tkextlib/iwidgets/timefield.rb +58 -0
  224. data/ext/lib/tkextlib/iwidgets/toolbar.rb +112 -0
  225. data/ext/lib/tkextlib/iwidgets/watch.rb +56 -0
  226. data/ext/lib/tkextlib/pkg_checker.rb +184 -0
  227. data/ext/lib/tkextlib/setup.rb +8 -0
  228. data/ext/lib/tkextlib/tcllib.rb +90 -0
  229. data/ext/lib/tkextlib/tcllib/README +135 -0
  230. data/ext/lib/tkextlib/tcllib/autoscroll.rb +158 -0
  231. data/ext/lib/tkextlib/tcllib/ctext.rb +160 -0
  232. data/ext/lib/tkextlib/tcllib/cursor.rb +97 -0
  233. data/ext/lib/tkextlib/tcllib/datefield.rb +57 -0
  234. data/ext/lib/tkextlib/tcllib/dialog.rb +84 -0
  235. data/ext/lib/tkextlib/tcllib/getstring.rb +134 -0
  236. data/ext/lib/tkextlib/tcllib/history.rb +73 -0
  237. data/ext/lib/tkextlib/tcllib/ico.rb +116 -0
  238. data/ext/lib/tkextlib/tcllib/ip_entry.rb +66 -0
  239. data/ext/lib/tkextlib/tcllib/panelframe.rb +72 -0
  240. data/ext/lib/tkextlib/tcllib/plotchart.rb +886 -0
  241. data/ext/lib/tkextlib/tcllib/ruler.rb +65 -0
  242. data/ext/lib/tkextlib/tcllib/screenruler.rb +68 -0
  243. data/ext/lib/tkextlib/tcllib/scrollwin.rb +61 -0
  244. data/ext/lib/tkextlib/tcllib/setup.rb +8 -0
  245. data/ext/lib/tkextlib/tcllib/style.rb +61 -0
  246. data/ext/lib/tkextlib/tcllib/superframe.rb +51 -0
  247. data/ext/lib/tkextlib/tcllib/swaplist.rb +150 -0
  248. data/ext/lib/tkextlib/tcllib/tablelist.rb +27 -0
  249. data/ext/lib/tkextlib/tcllib/tablelist_core.rb +782 -0
  250. data/ext/lib/tkextlib/tcllib/tablelist_tile.rb +25 -0
  251. data/ext/lib/tkextlib/tcllib/tkpiechart.rb +314 -0
  252. data/ext/lib/tkextlib/tcllib/tooltip.rb +95 -0
  253. data/ext/lib/tkextlib/tcllib/widget.rb +48 -0
  254. data/ext/lib/tkextlib/tclx.rb +13 -0
  255. data/ext/lib/tkextlib/tclx/setup.rb +8 -0
  256. data/ext/lib/tkextlib/tclx/tclx.rb +74 -0
  257. data/ext/lib/tkextlib/tile.rb +419 -0
  258. data/ext/lib/tkextlib/tile/dialog.rb +96 -0
  259. data/ext/lib/tkextlib/tile/setup.rb +8 -0
  260. data/ext/lib/tkextlib/tile/sizegrip.rb +29 -0
  261. data/ext/lib/tkextlib/tile/style.rb +316 -0
  262. data/ext/lib/tkextlib/tile/tbutton.rb +33 -0
  263. data/ext/lib/tkextlib/tile/tcheckbutton.rb +36 -0
  264. data/ext/lib/tkextlib/tile/tcombobox.rb +54 -0
  265. data/ext/lib/tkextlib/tile/tentry.rb +48 -0
  266. data/ext/lib/tkextlib/tile/tframe.rb +33 -0
  267. data/ext/lib/tkextlib/tile/tlabel.rb +33 -0
  268. data/ext/lib/tkextlib/tile/tlabelframe.rb +36 -0
  269. data/ext/lib/tkextlib/tile/tmenubutton.rb +36 -0
  270. data/ext/lib/tkextlib/tile/tnotebook.rb +139 -0
  271. data/ext/lib/tkextlib/tile/tpaned.rb +231 -0
  272. data/ext/lib/tkextlib/tile/tprogressbar.rb +56 -0
  273. data/ext/lib/tkextlib/tile/tradiobutton.rb +36 -0
  274. data/ext/lib/tkextlib/tile/treeview.rb +1239 -0
  275. data/ext/lib/tkextlib/tile/tscale.rb +53 -0
  276. data/ext/lib/tkextlib/tile/tscrollbar.rb +54 -0
  277. data/ext/lib/tkextlib/tile/tseparator.rb +33 -0
  278. data/ext/lib/tkextlib/tile/tsquare.rb +30 -0
  279. data/ext/lib/tkextlib/tkDND.rb +18 -0
  280. data/ext/lib/tkextlib/tkDND/setup.rb +8 -0
  281. data/ext/lib/tkextlib/tkDND/shape.rb +125 -0
  282. data/ext/lib/tkextlib/tkDND/tkdnd.rb +182 -0
  283. data/ext/lib/tkextlib/tkHTML.rb +13 -0
  284. data/ext/lib/tkextlib/tkHTML/htmlwidget.rb +453 -0
  285. data/ext/lib/tkextlib/tkHTML/setup.rb +8 -0
  286. data/ext/lib/tkextlib/tkimg.rb +36 -0
  287. data/ext/lib/tkextlib/tkimg/README +26 -0
  288. data/ext/lib/tkextlib/tkimg/bmp.rb +33 -0
  289. data/ext/lib/tkextlib/tkimg/gif.rb +33 -0
  290. data/ext/lib/tkextlib/tkimg/ico.rb +33 -0
  291. data/ext/lib/tkextlib/tkimg/jpeg.rb +33 -0
  292. data/ext/lib/tkextlib/tkimg/pcx.rb +33 -0
  293. data/ext/lib/tkextlib/tkimg/pixmap.rb +44 -0
  294. data/ext/lib/tkextlib/tkimg/png.rb +33 -0
  295. data/ext/lib/tkextlib/tkimg/ppm.rb +33 -0
  296. data/ext/lib/tkextlib/tkimg/ps.rb +33 -0
  297. data/ext/lib/tkextlib/tkimg/setup.rb +8 -0
  298. data/ext/lib/tkextlib/tkimg/sgi.rb +33 -0
  299. data/ext/lib/tkextlib/tkimg/sun.rb +33 -0
  300. data/ext/lib/tkextlib/tkimg/tga.rb +33 -0
  301. data/ext/lib/tkextlib/tkimg/tiff.rb +33 -0
  302. data/ext/lib/tkextlib/tkimg/window.rb +33 -0
  303. data/ext/lib/tkextlib/tkimg/xbm.rb +33 -0
  304. data/ext/lib/tkextlib/tkimg/xpm.rb +33 -0
  305. data/ext/lib/tkextlib/tktable.rb +14 -0
  306. data/ext/lib/tkextlib/tktable/setup.rb +8 -0
  307. data/ext/lib/tkextlib/tktable/tktable.rb +957 -0
  308. data/ext/lib/tkextlib/tktrans.rb +14 -0
  309. data/ext/lib/tkextlib/tktrans/setup.rb +8 -0
  310. data/ext/lib/tkextlib/tktrans/tktrans.rb +64 -0
  311. data/ext/lib/tkextlib/treectrl.rb +13 -0
  312. data/ext/lib/tkextlib/treectrl/setup.rb +8 -0
  313. data/ext/lib/tkextlib/treectrl/tktreectrl.rb +2461 -0
  314. data/ext/lib/tkextlib/trofs.rb +13 -0
  315. data/ext/lib/tkextlib/trofs/setup.rb +8 -0
  316. data/ext/lib/tkextlib/trofs/trofs.rb +51 -0
  317. data/ext/lib/tkextlib/version.rb +6 -0
  318. data/ext/lib/tkextlib/vu.rb +48 -0
  319. data/ext/lib/tkextlib/vu/bargraph.rb +61 -0
  320. data/ext/lib/tkextlib/vu/charts.rb +53 -0
  321. data/ext/lib/tkextlib/vu/dial.rb +102 -0
  322. data/ext/lib/tkextlib/vu/pie.rb +282 -0
  323. data/ext/lib/tkextlib/vu/setup.rb +8 -0
  324. data/ext/lib/tkextlib/vu/spinbox.rb +22 -0
  325. data/ext/lib/tkextlib/winico.rb +14 -0
  326. data/ext/lib/tkextlib/winico/setup.rb +8 -0
  327. data/ext/lib/tkextlib/winico/winico.rb +224 -0
  328. data/ext/lib/tkfont.rb +4 -0
  329. data/ext/lib/tkmacpkg.rb +4 -0
  330. data/ext/lib/tkmenubar.rb +4 -0
  331. data/ext/lib/tkmngfocus.rb +4 -0
  332. data/ext/lib/tkpalette.rb +4 -0
  333. data/ext/lib/tkscrollbox.rb +4 -0
  334. data/ext/lib/tktext.rb +4 -0
  335. data/ext/lib/tkvirtevent.rb +4 -0
  336. data/ext/lib/tkwinpkg.rb +4 -0
  337. data/ext/old-README.tcltklib.eucj +159 -0
  338. data/ext/stubs.c +531 -0
  339. data/ext/stubs.h +33 -0
  340. data/ext/tcltklib.c +10155 -0
  341. data/ext/tkutil/.cvsignore +3 -0
  342. data/ext/tkutil/depend +1 -0
  343. data/ext/tkutil/extconf.rb +14 -0
  344. data/ext/tkutil/tkutil.c +1789 -0
  345. metadata +418 -0
@@ -0,0 +1,8 @@
1
+ #
2
+ # setup.rb -- setup script before calling TkPackage.require()
3
+ #
4
+ # If you need some setup operations (for example, add a library path
5
+ # to the library search path) before using Tcl/Tk library packages
6
+ # wrapped by Ruby scripts in this directory, please write the setup
7
+ # operations in this file.
8
+ #
@@ -0,0 +1,23 @@
1
+ #
2
+ # tkextlib/blt/spline.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tkextlib/blt.rb'
8
+
9
+ module Tk::BLT
10
+ module Spline
11
+ extend TkCore
12
+
13
+ TkCommandNames = ['::blt::spline'.freeze].freeze
14
+
15
+ def self.natural(x, y, sx, sy)
16
+ tk_call('::blt::spline', 'natural', x, y, sx, sy)
17
+ end
18
+
19
+ def self.quadratic(x, y, sx, sy)
20
+ tk_call('::blt::spline', 'quadratic', x, y, sx, sy)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,74 @@
1
+ #
2
+ # tkextlib/blt/stripchart.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tkextlib/blt.rb'
8
+ require 'tkextlib/blt/component.rb'
9
+
10
+ module Tk::BLT
11
+ class Stripchart < TkWindow
12
+ TkCommandNames = ['::blt::stripchart'.freeze].freeze
13
+ WidgetClassName = 'Stripchart'.freeze
14
+ WidgetClassNames[WidgetClassName] = self
15
+
16
+ include PlotComponent
17
+ include GraphCommand
18
+
19
+ def __boolval_optkeys
20
+ ['bufferelements', 'buffergraph', 'invertxy']
21
+ end
22
+ private :__boolval_optkeys
23
+
24
+ def __strval_optkeys
25
+ ['text', 'label', 'title', 'file',
26
+ 'background', 'plotbackground']
27
+ end
28
+ private :__strval_optkeys
29
+
30
+ =begin
31
+ BarElement_ID = ['blt_stripchart_bar'.freeze, '00000'.taint].freeze
32
+
33
+ def bar(elem=nil, keys={})
34
+ if elem.kind_of?(Hash)
35
+ keys = elem
36
+ elem = nil
37
+ end
38
+ unless elem
39
+ elem = BarElement_ID.join(TkCore::INTERP._ip_id_).freeze
40
+ BarElement_ID[1].succ!
41
+ end
42
+ tk_send('bar', elem, keys)
43
+ Element.new(self, elem, :without_creating=>true)
44
+ end
45
+ =end
46
+
47
+ def extents(item)
48
+ num_or_str(tk_send_without_enc('extents', item))
49
+ end
50
+
51
+ def invtransform(x, y)
52
+ list(tk_send_without_enc('invtransform', x, y))
53
+ end
54
+
55
+ def inside(x, y)
56
+ bool(tk_send_without_enc('inside', x, y))
57
+ end
58
+
59
+ def metafile(file=None)
60
+ # Windows only
61
+ tk_send('metafile', file)
62
+ self
63
+ end
64
+
65
+ def snap(output, keys={})
66
+ tk_send_without_enc('snap', *(hash_kv(keys, false) + output))
67
+ self
68
+ end
69
+
70
+ def transform(x, y)
71
+ list(tk_send_without_enc('transform', x, y))
72
+ end
73
+ end
74
+ end
@@ -0,0 +1,399 @@
1
+ #
2
+ # tkextlib/blt/table.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/itemconfig.rb'
8
+ require 'tkextlib/blt.rb'
9
+
10
+ module Tk::BLT
11
+ module Table
12
+ include Tk
13
+ extend Tk
14
+ extend TkItemConfigMethod
15
+
16
+ TkCommandNames = ['::blt::table'.freeze].freeze
17
+
18
+ module TableContainer
19
+ def blt_table_add(*args)
20
+ Tk::BLT::Table.add(self, *args)
21
+ self
22
+ end
23
+
24
+ def blt_table_arrange()
25
+ Tk::BLT::Table.arrange(self)
26
+ self
27
+ end
28
+
29
+ def blt_table_cget(*args)
30
+ Tk::BLT::Table.cget(self, *args)
31
+ end
32
+ def blt_table_cget_strict(*args)
33
+ Tk::BLT::Table.cget_strict(self, *args)
34
+ end
35
+
36
+ def blt_table_configure(*args)
37
+ Tk::BLT::Table.configure(self, *args)
38
+ self
39
+ end
40
+
41
+ def blt_table_configinfo(*args)
42
+ Tk::BLT::Table.configinfo(self, *args)
43
+ end
44
+
45
+ def blt_table_current_configinfo(*args)
46
+ Tk::BLT::Table.current_configinfo(self, *args)
47
+ end
48
+
49
+ def blt_table_locate(x, y)
50
+ Tk::BLT::Table.locate(self, x, y)
51
+ end
52
+
53
+ def blt_table_delete(*args)
54
+ Tk::BLT::Table.delete(self, *args)
55
+ self
56
+ end
57
+
58
+ def blt_table_extents(item)
59
+ Tk::BLT::Table.extents(self, item)
60
+ end
61
+
62
+ def blt_table_insert(*args)
63
+ Tk::BLT::Table.insert(self, *args)
64
+ self
65
+ end
66
+
67
+ def blt_table_insert_before(*args)
68
+ Tk::BLT::Table.insert_before(self, *args)
69
+ self
70
+ end
71
+
72
+ def blt_table_insert_after(*args)
73
+ Tk::BLT::Table.insert_after(self, *args)
74
+ self
75
+ end
76
+
77
+ def blt_table_join(first, last)
78
+ Tk::BLT::Table.join(self, first, last)
79
+ self
80
+ end
81
+
82
+ def blt_table_save()
83
+ Tk::BLT::Table.save(self)
84
+ end
85
+
86
+ def blt_table_search(*args)
87
+ Tk::BLT::Table.search(self, *args)
88
+ end
89
+
90
+ def blt_table_split(*args)
91
+ Tk::BLT::Table.split(self, *args)
92
+ self
93
+ end
94
+
95
+ def blt_table_itemcget(*args)
96
+ Tk::BLT::Table.itemcget(self, *args)
97
+ end
98
+ def blt_table_itemcget_strict(*args)
99
+ Tk::BLT::Table.itemcget_strict(self, *args)
100
+ end
101
+
102
+ def blt_table_itemconfigure(*args)
103
+ Tk::BLT::Table.itemconfigure(self, *args)
104
+ self
105
+ end
106
+
107
+ def blt_table_itemconfiginfo(*args)
108
+ Tk::BLT::Table.itemconfiginfo(self, *args)
109
+ end
110
+
111
+ def blt_table_current_itemconfiginfo(*args)
112
+ Tk::BLT::Table.current_itemconfiginfo(self, *args)
113
+ end
114
+
115
+ def blt_table_iteminfo(item)
116
+ Tk::BLT::Table.iteminfo(self, item)
117
+ end
118
+ end
119
+ end
120
+ end
121
+
122
+
123
+ ############################################
124
+ class << Tk::BLT::Table
125
+ def __item_cget_cmd(id) # id := [ container, item ]
126
+ win = (id[0].kind_of?(TkWindow))? id[0].path: id[0].to_s
127
+ ['::blt::table', 'cget', win, id[1]]
128
+ end
129
+ private :__item_cget_cmd
130
+
131
+ def __item_config_cmd(id) # id := [ container, item, ... ]
132
+ container, *items = id
133
+ win = (container.kind_of?(TkWindow))? container.path: container.to_s
134
+ ['::blt::table', 'configure', win, *items]
135
+ end
136
+ private :__item_config_cmd
137
+
138
+ def __item_pathname(id)
139
+ win = (id[0].kind_of?(TkWindow))? id[0].path: id[0].to_s
140
+ win + ';'
141
+ end
142
+ private :__item_pathname
143
+
144
+ alias __itemcget itemcget
145
+ alias __itemcget_strict itemcget_strict
146
+ alias __itemconfigure itemconfigure
147
+ alias __itemconfiginfo itemconfiginfo
148
+ alias __current_itemconfiginfo current_itemconfiginfo
149
+
150
+ private :__itemcget, :__itemcget_strict
151
+ private :__itemconfigure, :__itemconfiginfo, :__current_itemconfiginfo
152
+
153
+ def __boolval_optkeys
154
+ super() << 'propagate'
155
+ end
156
+ private :__boolval_optkeys
157
+
158
+ def tagid(tag)
159
+ if tag.kind_of?(Array)
160
+ case tag[0]
161
+ when Integer
162
+ # [row, col]
163
+ tag.join(',')
164
+ when :c, :C, 'c', 'C', :r, :R, 'r', 'R'
165
+ # c0 or r1 or C*, and so on
166
+ tag.collect{|elem| elem.to_s}.join('')
167
+ else
168
+ tag
169
+ end
170
+ elsif tag.kind_of?(TkWindow)
171
+ _epath(tag)
172
+ else
173
+ tag
174
+ end
175
+ end
176
+
177
+ def tagid2obj(tagid)
178
+ tagid
179
+ end
180
+
181
+ ############################################
182
+
183
+ def cget(container, option)
184
+ __itemcget([container], option)
185
+ end
186
+ def cget_strict(container, option)
187
+ __itemcget_strict([container], option)
188
+ end
189
+
190
+ def configure(container, *args)
191
+ __itemconfigure([container], *args)
192
+ end
193
+
194
+ def configinfo(container, *args)
195
+ __itemconfiginfo([container], *args)
196
+ end
197
+
198
+ def current_configinfo(container, *args)
199
+ __current_itemconfiginfo([container], *args)
200
+ end
201
+
202
+ def itemcget(container, item, option)
203
+ __itemcget([container, tagid(item)], option)
204
+ end
205
+ def itemcget_strict(container, item, option)
206
+ __itemcget_strict([container, tagid(item)], option)
207
+ end
208
+
209
+ def itemconfigure(container, *args)
210
+ if args[-1].kind_of?(Hash)
211
+ # container, item, item, ... , hash_optkeys
212
+ keys = args.pop
213
+ fail ArgumentError, 'no item is given' if args.empty?
214
+ id = [container]
215
+ args.each{|item| id << tagid(item)}
216
+ __itemconfigure(id, keys)
217
+ else
218
+ # container, item, item, ... , option, value
219
+ val = args.pop
220
+ opt = args.pop
221
+ fail ArgumentError, 'no item is given' if args.empty?
222
+ id = [container]
223
+ args.each{|item| id << tagid(item)}
224
+ __itemconfigure(id, opt, val)
225
+ end
226
+ container
227
+ end
228
+
229
+ def itemconfiginfo(container, *args)
230
+ slot = args[-1]
231
+ if slot.kind_of?(String) || slot.kind_of?(Symbol)
232
+ slot = slot.to_s
233
+ if slot[0] == ?. || slot =~ /^\d+,\d+$/ || slot =~ /^(c|C|r|R)(\*|\d+)/
234
+ # widget || row,col || Ci or Ri
235
+ slot = nil
236
+ else
237
+ # option
238
+ slot = args.pop
239
+ end
240
+ else
241
+ slot = nil
242
+ end
243
+
244
+ fail ArgumentError, 'no item is given' if args.empty?
245
+
246
+ id = [container]
247
+ args.each{|item| id << tagid(item)}
248
+ __itemconfiginfo(id, slot)
249
+ end
250
+
251
+ def current_itemconfiginfo(container, *args)
252
+ slot = args[-1]
253
+ if slot.kind_of?(String) || slot.kind_of?(Symbol)
254
+ slot = slot.to_s
255
+ if slot[0] == ?. || slot =~ /^\d+,\d+$/ || slot =~ /^(c|C|r|R)(\*|\d+)/
256
+ # widget || row,col || Ci or Ri
257
+ slot = nil
258
+ else
259
+ # option
260
+ slot = args.pop
261
+ end
262
+ else
263
+ slot = nil
264
+ end
265
+
266
+ fail ArgumentError, 'no item is given' if args.empty?
267
+
268
+ id = [container]
269
+ args.each{|item| id << tagid(item)}
270
+ __current_itemconfiginfo(id, slot)
271
+ end
272
+
273
+ def info(container)
274
+ ret = {}
275
+ inf = list(tk_call('::blt::table', 'info', container))
276
+ until inf.empty?
277
+ opt = inf.slice!(0..1)
278
+ ret[opt[1..-1]] = opt[1]
279
+ end
280
+ ret
281
+ end
282
+
283
+ def iteminfo(container, item)
284
+ inf = list(tk_call('::blt::table', 'info', container, tagid(item)).chomp)
285
+
286
+ ret = []
287
+ until inf.empty? || (inf[0].kind_of?(String) && inf[0] =~ /^-/)
288
+ ret << inf.shift
289
+ end
290
+
291
+ if inf.length > 1
292
+ keys = {}
293
+ while inf.length > 1
294
+ opt = inf.slice!(0..1)
295
+ keys[opt[0][1..-1]] = opt[1]
296
+ end
297
+ ret << keys
298
+ end
299
+
300
+ ret
301
+ end
302
+
303
+ ############################################
304
+
305
+ def create_container(container)
306
+ tk_call('::blt::table', container)
307
+ begin
308
+ class << container
309
+ include Tk::BLT::Table::TableContainer
310
+ end
311
+ rescue
312
+ warn('fail to include TableContainer methods (frozen object?)')
313
+ end
314
+ container
315
+ end
316
+
317
+ def add(container, *args)
318
+ if args.empty?
319
+ tk_call('::blt::table', container)
320
+ else
321
+ args = args.collect{|arg|
322
+ if arg.kind_of?(TkWindow)
323
+ _epath(arg)
324
+ elsif arg.kind_of?(Array) # index
325
+ arg.join(',')
326
+ else
327
+ arg
328
+ end
329
+ }
330
+ tk_call('::blt::table', container, *args)
331
+ end
332
+ container
333
+ end
334
+
335
+ def arrange(container)
336
+ tk_call('::blt::table', 'arrange', container)
337
+ container
338
+ end
339
+
340
+ def delete(container, *args)
341
+ tk_call('::blt::table', 'delete', container, *args)
342
+ end
343
+
344
+ def extents(container, item)
345
+ ret = []
346
+ inf = list(tk_call('::blt::table', 'extents', container, item))
347
+ ret << inf.slice!(0..4) until inf.empty?
348
+ ret
349
+ end
350
+
351
+ def forget(*wins)
352
+ wins = wins.collect{|win| _epath(win)}
353
+ tk_call('::blt::table', 'forget', *wins)
354
+ end
355
+
356
+ def insert(container, *args)
357
+ tk_call('::blt::table', 'insert', container, *args)
358
+ end
359
+
360
+ def insert_before(container, *args)
361
+ tk_call('::blt::table', 'insert', container, '-before', *args)
362
+ end
363
+
364
+ def insert_after(container, *args)
365
+ tk_call('::blt::table', 'insert', container, '-after', *args)
366
+ end
367
+
368
+ def join(container, first, last)
369
+ tk_call('::blt::table', 'join', container, first, last)
370
+ end
371
+
372
+ def locate(container, x, y)
373
+ tk_call('::blt::table', 'locate', container, x, y)
374
+ end
375
+
376
+ def containers(arg={})
377
+ list(tk_call('::blt::table', 'containers', *hash_kv(arg)))
378
+ end
379
+
380
+ def containers_pattern(pat)
381
+ list(tk_call('::blt::table', 'containers', '-pattern', pat))
382
+ end
383
+
384
+ def containers_slave(win)
385
+ list(tk_call('::blt::table', 'containers', '-slave', win))
386
+ end
387
+
388
+ def save(container)
389
+ tk_call('::blt::table', 'save', container)
390
+ end
391
+
392
+ def search(container, keys={})
393
+ list(tk_call('::blt::table', 'containers', *hash_kv(keys)))
394
+ end
395
+
396
+ def split(container, *args)
397
+ tk_call('::blt::table', 'split', container, *args)
398
+ end
399
+ end