tk-win 0.2.0-x86-mingw32

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 (329) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +17 -0
  5. data/Rakefile +46 -0
  6. data/VERSION +1 -0
  7. data/lib/tcltk.rb +367 -0
  8. data/lib/tk.rb +5682 -0
  9. data/lib/tk/after.rb +6 -0
  10. data/lib/tk/autoload.rb +760 -0
  11. data/lib/tk/bgerror.rb +29 -0
  12. data/lib/tk/bindtag.rb +138 -0
  13. data/lib/tk/button.rb +31 -0
  14. data/lib/tk/canvas.rb +816 -0
  15. data/lib/tk/canvastag.rb +459 -0
  16. data/lib/tk/checkbutton.rb +32 -0
  17. data/lib/tk/clipboard.rb +75 -0
  18. data/lib/tk/clock.rb +71 -0
  19. data/lib/tk/composite.rb +484 -0
  20. data/lib/tk/console.rb +52 -0
  21. data/lib/tk/dialog.rb +326 -0
  22. data/lib/tk/encodedstr.rb +187 -0
  23. data/lib/tk/entry.rb +120 -0
  24. data/lib/tk/event.rb +562 -0
  25. data/lib/tk/font.rb +2351 -0
  26. data/lib/tk/frame.rb +132 -0
  27. data/lib/tk/grid.rb +279 -0
  28. data/lib/tk/image.rb +275 -0
  29. data/lib/tk/itemconfig.rb +1222 -0
  30. data/lib/tk/itemfont.rb +327 -0
  31. data/lib/tk/kinput.rb +71 -0
  32. data/lib/tk/label.rb +22 -0
  33. data/lib/tk/labelframe.rb +31 -0
  34. data/lib/tk/listbox.rb +284 -0
  35. data/lib/tk/macpkg.rb +80 -0
  36. data/lib/tk/menu.rb +718 -0
  37. data/lib/tk/menubar.rb +137 -0
  38. data/lib/tk/menuspec.rb +456 -0
  39. data/lib/tk/message.rb +24 -0
  40. data/lib/tk/mngfocus.rb +33 -0
  41. data/lib/tk/msgcat.rb +296 -0
  42. data/lib/tk/namespace.rb +551 -0
  43. data/lib/tk/optiondb.rb +377 -0
  44. data/lib/tk/optionobj.rb +212 -0
  45. data/lib/tk/pack.rb +107 -0
  46. data/lib/tk/package.rb +143 -0
  47. data/lib/tk/palette.rb +55 -0
  48. data/lib/tk/panedwindow.rb +260 -0
  49. data/lib/tk/place.rb +128 -0
  50. data/lib/tk/radiobutton.rb +73 -0
  51. data/lib/tk/root.rb +95 -0
  52. data/lib/tk/scale.rb +112 -0
  53. data/lib/tk/scrollable.rb +82 -0
  54. data/lib/tk/scrollbar.rb +183 -0
  55. data/lib/tk/scrollbox.rb +39 -0
  56. data/lib/tk/selection.rb +86 -0
  57. data/lib/tk/spinbox.rb +144 -0
  58. data/lib/tk/tagfont.rb +43 -0
  59. data/lib/tk/text.rb +1604 -0
  60. data/lib/tk/textimage.rb +88 -0
  61. data/lib/tk/textmark.rb +204 -0
  62. data/lib/tk/texttag.rb +321 -0
  63. data/lib/tk/textwindow.rb +154 -0
  64. data/lib/tk/timer.rb +669 -0
  65. data/lib/tk/toplevel.rb +264 -0
  66. data/lib/tk/ttk_selector.rb +98 -0
  67. data/lib/tk/txtwin_abst.rb +39 -0
  68. data/lib/tk/validation.rb +397 -0
  69. data/lib/tk/variable.rb +1799 -0
  70. data/lib/tk/virtevent.rb +139 -0
  71. data/lib/tk/winfo.rb +392 -0
  72. data/lib/tk/winpkg.rb +156 -0
  73. data/lib/tk/wm.rb +552 -0
  74. data/lib/tk/xim.rb +122 -0
  75. data/lib/tkafter.rb +4 -0
  76. data/lib/tkbgerror.rb +4 -0
  77. data/lib/tkcanvas.rb +4 -0
  78. data/lib/tkclass.rb +47 -0
  79. data/lib/tkconsole.rb +4 -0
  80. data/lib/tkdialog.rb +4 -0
  81. data/lib/tkentry.rb +4 -0
  82. data/lib/tkextlib/ICONS.rb +13 -0
  83. data/lib/tkextlib/ICONS/icons.rb +129 -0
  84. data/lib/tkextlib/ICONS/setup.rb +8 -0
  85. data/lib/tkextlib/SUPPORT_STATUS +198 -0
  86. data/lib/tkextlib/blt.rb +189 -0
  87. data/lib/tkextlib/blt/barchart.rb +79 -0
  88. data/lib/tkextlib/blt/bitmap.rb +112 -0
  89. data/lib/tkextlib/blt/busy.rb +83 -0
  90. data/lib/tkextlib/blt/component.rb +2218 -0
  91. data/lib/tkextlib/blt/container.rb +28 -0
  92. data/lib/tkextlib/blt/cutbuffer.rb +23 -0
  93. data/lib/tkextlib/blt/dragdrop.rb +269 -0
  94. data/lib/tkextlib/blt/eps.rb +32 -0
  95. data/lib/tkextlib/blt/graph.rb +67 -0
  96. data/lib/tkextlib/blt/htext.rb +112 -0
  97. data/lib/tkextlib/blt/setup.rb +8 -0
  98. data/lib/tkextlib/blt/spline.rb +23 -0
  99. data/lib/tkextlib/blt/stripchart.rb +74 -0
  100. data/lib/tkextlib/blt/table.rb +412 -0
  101. data/lib/tkextlib/blt/tabnotebook.rb +110 -0
  102. data/lib/tkextlib/blt/tabset.rb +504 -0
  103. data/lib/tkextlib/blt/ted.rb +68 -0
  104. data/lib/tkextlib/blt/tile.rb +25 -0
  105. data/lib/tkextlib/blt/tile/button.rb +16 -0
  106. data/lib/tkextlib/blt/tile/checkbutton.rb +17 -0
  107. data/lib/tkextlib/blt/tile/frame.rb +16 -0
  108. data/lib/tkextlib/blt/tile/label.rb +16 -0
  109. data/lib/tkextlib/blt/tile/radiobutton.rb +17 -0
  110. data/lib/tkextlib/blt/tile/scrollbar.rb +16 -0
  111. data/lib/tkextlib/blt/tile/toplevel.rb +16 -0
  112. data/lib/tkextlib/blt/tree.rb +1058 -0
  113. data/lib/tkextlib/blt/treeview.rb +1287 -0
  114. data/lib/tkextlib/blt/unix_dnd.rb +141 -0
  115. data/lib/tkextlib/blt/vector.rb +256 -0
  116. data/lib/tkextlib/blt/watch.rb +175 -0
  117. data/lib/tkextlib/blt/win_printer.rb +61 -0
  118. data/lib/tkextlib/blt/winop.rb +107 -0
  119. data/lib/tkextlib/bwidget.rb +153 -0
  120. data/lib/tkextlib/bwidget/arrowbutton.rb +21 -0
  121. data/lib/tkextlib/bwidget/bitmap.rb +21 -0
  122. data/lib/tkextlib/bwidget/button.rb +31 -0
  123. data/lib/tkextlib/bwidget/buttonbox.rb +90 -0
  124. data/lib/tkextlib/bwidget/combobox.rb +62 -0
  125. data/lib/tkextlib/bwidget/dialog.rb +194 -0
  126. data/lib/tkextlib/bwidget/dragsite.rb +31 -0
  127. data/lib/tkextlib/bwidget/dropsite.rb +39 -0
  128. data/lib/tkextlib/bwidget/dynamichelp.rb +63 -0
  129. data/lib/tkextlib/bwidget/entry.rb +43 -0
  130. data/lib/tkextlib/bwidget/label.rb +41 -0
  131. data/lib/tkextlib/bwidget/labelentry.rb +80 -0
  132. data/lib/tkextlib/bwidget/labelframe.rb +52 -0
  133. data/lib/tkextlib/bwidget/listbox.rb +361 -0
  134. data/lib/tkextlib/bwidget/mainframe.rb +132 -0
  135. data/lib/tkextlib/bwidget/messagedlg.rb +192 -0
  136. data/lib/tkextlib/bwidget/notebook.rb +166 -0
  137. data/lib/tkextlib/bwidget/pagesmanager.rb +73 -0
  138. data/lib/tkextlib/bwidget/panedwindow.rb +42 -0
  139. data/lib/tkextlib/bwidget/panelframe.rb +67 -0
  140. data/lib/tkextlib/bwidget/passwddlg.rb +44 -0
  141. data/lib/tkextlib/bwidget/progressbar.rb +20 -0
  142. data/lib/tkextlib/bwidget/progressdlg.rb +58 -0
  143. data/lib/tkextlib/bwidget/scrollableframe.rb +40 -0
  144. data/lib/tkextlib/bwidget/scrolledwindow.rb +48 -0
  145. data/lib/tkextlib/bwidget/scrollview.rb +25 -0
  146. data/lib/tkextlib/bwidget/selectcolor.rb +73 -0
  147. data/lib/tkextlib/bwidget/selectfont.rb +91 -0
  148. data/lib/tkextlib/bwidget/separator.rb +20 -0
  149. data/lib/tkextlib/bwidget/setup.rb +8 -0
  150. data/lib/tkextlib/bwidget/spinbox.rb +98 -0
  151. data/lib/tkextlib/bwidget/statusbar.rb +62 -0
  152. data/lib/tkextlib/bwidget/titleframe.rb +33 -0
  153. data/lib/tkextlib/bwidget/tree.rb +500 -0
  154. data/lib/tkextlib/bwidget/widget.rb +129 -0
  155. data/lib/tkextlib/itcl.rb +13 -0
  156. data/lib/tkextlib/itcl/incr_tcl.rb +178 -0
  157. data/lib/tkextlib/itcl/setup.rb +13 -0
  158. data/lib/tkextlib/itk.rb +13 -0
  159. data/lib/tkextlib/itk/incr_tk.rb +446 -0
  160. data/lib/tkextlib/itk/setup.rb +13 -0
  161. data/lib/tkextlib/iwidgets.rb +94 -0
  162. data/lib/tkextlib/iwidgets/buttonbox.rb +121 -0
  163. data/lib/tkextlib/iwidgets/calendar.rb +125 -0
  164. data/lib/tkextlib/iwidgets/canvasprintbox.rb +53 -0
  165. data/lib/tkextlib/iwidgets/canvasprintdialog.rb +38 -0
  166. data/lib/tkextlib/iwidgets/checkbox.rb +130 -0
  167. data/lib/tkextlib/iwidgets/combobox.rb +104 -0
  168. data/lib/tkextlib/iwidgets/dateentry.rb +20 -0
  169. data/lib/tkextlib/iwidgets/datefield.rb +58 -0
  170. data/lib/tkextlib/iwidgets/dialog.rb +20 -0
  171. data/lib/tkextlib/iwidgets/dialogshell.rb +121 -0
  172. data/lib/tkextlib/iwidgets/disjointlistbox.rb +50 -0
  173. data/lib/tkextlib/iwidgets/entryfield.rb +185 -0
  174. data/lib/tkextlib/iwidgets/extbutton.rb +40 -0
  175. data/lib/tkextlib/iwidgets/extfileselectionbox.rb +46 -0
  176. data/lib/tkextlib/iwidgets/extfileselectiondialog.rb +33 -0
  177. data/lib/tkextlib/iwidgets/feedback.rb +35 -0
  178. data/lib/tkextlib/iwidgets/fileselectionbox.rb +46 -0
  179. data/lib/tkextlib/iwidgets/fileselectiondialog.rb +33 -0
  180. data/lib/tkextlib/iwidgets/finddialog.rb +42 -0
  181. data/lib/tkextlib/iwidgets/hierarchy.rb +365 -0
  182. data/lib/tkextlib/iwidgets/hyperhelp.rb +50 -0
  183. data/lib/tkextlib/iwidgets/labeledframe.rb +39 -0
  184. data/lib/tkextlib/iwidgets/labeledwidget.rb +45 -0
  185. data/lib/tkextlib/iwidgets/mainwindow.rb +67 -0
  186. data/lib/tkextlib/iwidgets/menubar.rb +212 -0
  187. data/lib/tkextlib/iwidgets/messagebox.rb +93 -0
  188. data/lib/tkextlib/iwidgets/messagedialog.rb +20 -0
  189. data/lib/tkextlib/iwidgets/notebook.rb +175 -0
  190. data/lib/tkextlib/iwidgets/optionmenu.rb +92 -0
  191. data/lib/tkextlib/iwidgets/panedwindow.rb +134 -0
  192. data/lib/tkextlib/iwidgets/promptdialog.rb +131 -0
  193. data/lib/tkextlib/iwidgets/pushbutton.rb +35 -0
  194. data/lib/tkextlib/iwidgets/radiobox.rb +121 -0
  195. data/lib/tkextlib/iwidgets/scopedobject.rb +24 -0
  196. data/lib/tkextlib/iwidgets/scrolledcanvas.rb +353 -0
  197. data/lib/tkextlib/iwidgets/scrolledframe.rb +59 -0
  198. data/lib/tkextlib/iwidgets/scrolledhtml.rb +58 -0
  199. data/lib/tkextlib/iwidgets/scrolledlistbox.rb +207 -0
  200. data/lib/tkextlib/iwidgets/scrolledtext.rb +568 -0
  201. data/lib/tkextlib/iwidgets/scrolledwidget.rb +20 -0
  202. data/lib/tkextlib/iwidgets/selectionbox.rb +102 -0
  203. data/lib/tkextlib/iwidgets/selectiondialog.rb +92 -0
  204. data/lib/tkextlib/iwidgets/setup.rb +8 -0
  205. data/lib/tkextlib/iwidgets/shell.rb +38 -0
  206. data/lib/tkextlib/iwidgets/spindate.rb +48 -0
  207. data/lib/tkextlib/iwidgets/spinint.rb +30 -0
  208. data/lib/tkextlib/iwidgets/spinner.rb +169 -0
  209. data/lib/tkextlib/iwidgets/spintime.rb +48 -0
  210. data/lib/tkextlib/iwidgets/tabnotebook.rb +181 -0
  211. data/lib/tkextlib/iwidgets/tabset.rb +145 -0
  212. data/lib/tkextlib/iwidgets/timeentry.rb +25 -0
  213. data/lib/tkextlib/iwidgets/timefield.rb +58 -0
  214. data/lib/tkextlib/iwidgets/toolbar.rb +112 -0
  215. data/lib/tkextlib/iwidgets/watch.rb +56 -0
  216. data/lib/tkextlib/pkg_checker.rb +184 -0
  217. data/lib/tkextlib/setup.rb +8 -0
  218. data/lib/tkextlib/tcllib.rb +105 -0
  219. data/lib/tkextlib/tcllib/autoscroll.rb +158 -0
  220. data/lib/tkextlib/tcllib/ctext.rb +160 -0
  221. data/lib/tkextlib/tcllib/cursor.rb +97 -0
  222. data/lib/tkextlib/tcllib/datefield.rb +57 -0
  223. data/lib/tkextlib/tcllib/dialog.rb +84 -0
  224. data/lib/tkextlib/tcllib/getstring.rb +134 -0
  225. data/lib/tkextlib/tcllib/history.rb +73 -0
  226. data/lib/tkextlib/tcllib/ico.rb +146 -0
  227. data/lib/tkextlib/tcllib/ip_entry.rb +75 -0
  228. data/lib/tkextlib/tcllib/panelframe.rb +78 -0
  229. data/lib/tkextlib/tcllib/plotchart.rb +1404 -0
  230. data/lib/tkextlib/tcllib/ruler.rb +65 -0
  231. data/lib/tkextlib/tcllib/screenruler.rb +68 -0
  232. data/lib/tkextlib/tcllib/scrollwin.rb +61 -0
  233. data/lib/tkextlib/tcllib/setup.rb +8 -0
  234. data/lib/tkextlib/tcllib/style.rb +61 -0
  235. data/lib/tkextlib/tcllib/superframe.rb +51 -0
  236. data/lib/tkextlib/tcllib/swaplist.rb +150 -0
  237. data/lib/tkextlib/tcllib/tablelist.rb +28 -0
  238. data/lib/tkextlib/tcllib/tablelist_core.rb +1072 -0
  239. data/lib/tkextlib/tcllib/tablelist_tile.rb +43 -0
  240. data/lib/tkextlib/tcllib/tkpiechart.rb +314 -0
  241. data/lib/tkextlib/tcllib/tooltip.rb +104 -0
  242. data/lib/tkextlib/tcllib/widget.rb +82 -0
  243. data/lib/tkextlib/tclx.rb +13 -0
  244. data/lib/tkextlib/tclx/setup.rb +8 -0
  245. data/lib/tkextlib/tclx/tclx.rb +74 -0
  246. data/lib/tkextlib/tile.rb +449 -0
  247. data/lib/tkextlib/tile/dialog.rb +102 -0
  248. data/lib/tkextlib/tile/setup.rb +8 -0
  249. data/lib/tkextlib/tile/sizegrip.rb +32 -0
  250. data/lib/tkextlib/tile/style.rb +336 -0
  251. data/lib/tkextlib/tile/tbutton.rb +34 -0
  252. data/lib/tkextlib/tile/tcheckbutton.rb +38 -0
  253. data/lib/tkextlib/tile/tcombobox.rb +55 -0
  254. data/lib/tkextlib/tile/tentry.rb +49 -0
  255. data/lib/tkextlib/tile/tframe.rb +34 -0
  256. data/lib/tkextlib/tile/tlabel.rb +34 -0
  257. data/lib/tkextlib/tile/tlabelframe.rb +38 -0
  258. data/lib/tkextlib/tile/tmenubutton.rb +38 -0
  259. data/lib/tkextlib/tile/tnotebook.rb +147 -0
  260. data/lib/tkextlib/tile/tpaned.rb +245 -0
  261. data/lib/tkextlib/tile/tprogressbar.rb +57 -0
  262. data/lib/tkextlib/tile/tradiobutton.rb +38 -0
  263. data/lib/tkextlib/tile/treeview.rb +1306 -0
  264. data/lib/tkextlib/tile/tscale.rb +56 -0
  265. data/lib/tkextlib/tile/tscrollbar.rb +63 -0
  266. data/lib/tkextlib/tile/tseparator.rb +34 -0
  267. data/lib/tkextlib/tile/tsquare.rb +30 -0
  268. data/lib/tkextlib/tkDND.rb +18 -0
  269. data/lib/tkextlib/tkDND/setup.rb +8 -0
  270. data/lib/tkextlib/tkDND/shape.rb +125 -0
  271. data/lib/tkextlib/tkDND/tkdnd.rb +182 -0
  272. data/lib/tkextlib/tkHTML.rb +13 -0
  273. data/lib/tkextlib/tkHTML/htmlwidget.rb +453 -0
  274. data/lib/tkextlib/tkHTML/setup.rb +8 -0
  275. data/lib/tkextlib/tkimg.rb +36 -0
  276. data/lib/tkextlib/tkimg/bmp.rb +33 -0
  277. data/lib/tkextlib/tkimg/gif.rb +33 -0
  278. data/lib/tkextlib/tkimg/ico.rb +33 -0
  279. data/lib/tkextlib/tkimg/jpeg.rb +33 -0
  280. data/lib/tkextlib/tkimg/pcx.rb +33 -0
  281. data/lib/tkextlib/tkimg/pixmap.rb +44 -0
  282. data/lib/tkextlib/tkimg/png.rb +33 -0
  283. data/lib/tkextlib/tkimg/ppm.rb +33 -0
  284. data/lib/tkextlib/tkimg/ps.rb +33 -0
  285. data/lib/tkextlib/tkimg/setup.rb +8 -0
  286. data/lib/tkextlib/tkimg/sgi.rb +33 -0
  287. data/lib/tkextlib/tkimg/sun.rb +33 -0
  288. data/lib/tkextlib/tkimg/tga.rb +33 -0
  289. data/lib/tkextlib/tkimg/tiff.rb +33 -0
  290. data/lib/tkextlib/tkimg/window.rb +33 -0
  291. data/lib/tkextlib/tkimg/xbm.rb +33 -0
  292. data/lib/tkextlib/tkimg/xpm.rb +33 -0
  293. data/lib/tkextlib/tktable.rb +14 -0
  294. data/lib/tkextlib/tktable/setup.rb +8 -0
  295. data/lib/tkextlib/tktable/tktable.rb +966 -0
  296. data/lib/tkextlib/tktrans.rb +14 -0
  297. data/lib/tkextlib/tktrans/setup.rb +8 -0
  298. data/lib/tkextlib/tktrans/tktrans.rb +64 -0
  299. data/lib/tkextlib/treectrl.rb +13 -0
  300. data/lib/tkextlib/treectrl/setup.rb +8 -0
  301. data/lib/tkextlib/treectrl/tktreectrl.rb +2522 -0
  302. data/lib/tkextlib/trofs.rb +13 -0
  303. data/lib/tkextlib/trofs/setup.rb +8 -0
  304. data/lib/tkextlib/trofs/trofs.rb +51 -0
  305. data/lib/tkextlib/version.rb +6 -0
  306. data/lib/tkextlib/vu.rb +48 -0
  307. data/lib/tkextlib/vu/bargraph.rb +61 -0
  308. data/lib/tkextlib/vu/charts.rb +53 -0
  309. data/lib/tkextlib/vu/dial.rb +102 -0
  310. data/lib/tkextlib/vu/pie.rb +286 -0
  311. data/lib/tkextlib/vu/setup.rb +8 -0
  312. data/lib/tkextlib/vu/spinbox.rb +22 -0
  313. data/lib/tkextlib/winico.rb +14 -0
  314. data/lib/tkextlib/winico/setup.rb +8 -0
  315. data/lib/tkextlib/winico/winico.rb +224 -0
  316. data/lib/tkfont.rb +4 -0
  317. data/lib/tkmacpkg.rb +4 -0
  318. data/lib/tkmenubar.rb +4 -0
  319. data/lib/tkmngfocus.rb +4 -0
  320. data/lib/tkpalette.rb +4 -0
  321. data/lib/tkscrollbox.rb +4 -0
  322. data/lib/tktext.rb +4 -0
  323. data/lib/tkvirtevent.rb +4 -0
  324. data/lib/tkwinpkg.rb +4 -0
  325. data/spec/spec.opts +1 -0
  326. data/spec/spec_helper.rb +9 -0
  327. data/spec/tk-win_spec.rb +7 -0
  328. data/tk-win.gemspec +373 -0
  329. metadata +412 -0
@@ -0,0 +1,68 @@
1
+ #
2
+ # tkextlib/blt/ted.rb
3
+ #
4
+ # *** This is alpha version, because there is no document on BLT. ***
5
+ #
6
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
7
+ #
8
+
9
+ require 'tk'
10
+ require 'tkextlib/blt.rb'
11
+
12
+ module Tk::BLT
13
+ module Ted
14
+ extend TkCore
15
+
16
+ TkCommandNames = ['::blt::ted'.freeze].freeze
17
+
18
+ ##############################
19
+
20
+ extend TkItemConfigMethod
21
+
22
+ class << self
23
+ def __item_cget_cmd(id)
24
+ ['::blt::ted', 'cget', id]
25
+ end
26
+ private :__item_cget_cmd
27
+
28
+ def __item_config_cmd(id)
29
+ ['::blt::ted', 'configure', id]
30
+ end
31
+ private :__item_config_cmd
32
+
33
+ private :itemcget_tkstring, :itemcget, :itemcget_strict
34
+ private :itemconfigure, :itemconfiginfo, :current_itemconfiginfo
35
+
36
+ def cget_tkstring(master, option)
37
+ itemcget_tkstring(master, option)
38
+ end
39
+ def cget(master, option)
40
+ itemcget(master, option)
41
+ end
42
+ def cget_strict(master, option)
43
+ itemcget_strict(master, option)
44
+ end
45
+ def configure(master, slot, value=None)
46
+ itemconfigure(master, slot, value)
47
+ end
48
+ def configinfo(master, slot=nil)
49
+ itemconfiginfo(master, slot)
50
+ end
51
+ def current_configinfo(master, slot=nil)
52
+ current_itemconfiginfo(master, slot)
53
+ end
54
+ end
55
+
56
+ ##############################
57
+
58
+ def self.edit(master, *args)
59
+ tk_call('::blt::ted', 'edit', master, *args)
60
+ end
61
+ def self.rep(master, *args)
62
+ tk_call('::blt::ted', 'rep', master, *args)
63
+ end
64
+ def self.select(master, *args)
65
+ tk_call('::blt::ted', 'select', master, *args)
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,25 @@
1
+ #
2
+ # tkextlib/blt/tile.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 Tile
11
+ TkComm::TkExtlibAutoloadModule.unshift(self)
12
+ # Require autoload-symbols which is a same name as widget classname.
13
+ # Those are used at TkComm._genobj_for_tkwidget method.
14
+
15
+ autoload :Button, 'tkextlib/blt/tile/button.rb'
16
+ autoload :CheckButton, 'tkextlib/blt/tile/checkbutton.rb'
17
+ autoload :Checkbutton, 'tkextlib/blt/tile/checkbutton.rb'
18
+ autoload :Radiobutton, 'tkextlib/blt/tile/radiobutton.rb'
19
+ autoload :RadioButton, 'tkextlib/blt/tile/radiobutton.rb'
20
+ autoload :Frame, 'tkextlib/blt/tile/frame.rb'
21
+ autoload :Label, 'tkextlib/blt/tile/label.rb'
22
+ autoload :Scrollbar, 'tkextlib/blt/tile/scrollbar.rb'
23
+ autoload :Toplevel, 'tkextlib/blt/tile/toplevel.rb'
24
+ end
25
+ end
@@ -0,0 +1,16 @@
1
+ #
2
+ # tkextlib/blt/tile/button.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/button'
8
+ require 'tkextlib/blt/tile.rb'
9
+
10
+ module Tk::BLT
11
+ module Tile
12
+ class Button < Tk::Button
13
+ TkCommandNames = ['::blt::tile::button'.freeze].freeze
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,17 @@
1
+ #
2
+ # tkextlib/blt/tile/checkbutton.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/checkbutton'
8
+ require 'tkextlib/blt/tile.rb'
9
+
10
+ module Tk::BLT
11
+ module Tile
12
+ class CheckButton < Tk::CheckButton
13
+ TkCommandNames = ['::blt::tile::checkbutton'.freeze].freeze
14
+ end
15
+ Checkbutton = CheckButton
16
+ end
17
+ end
@@ -0,0 +1,16 @@
1
+ #
2
+ # tkextlib/blt/tile/frame.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/frame'
8
+ require 'tkextlib/blt/tile.rb'
9
+
10
+ module Tk::BLT
11
+ module Tile
12
+ class Frame < Tk::Frame
13
+ TkCommandNames = ['::blt::tile::frame'.freeze].freeze
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,16 @@
1
+ #
2
+ # tkextlib/blt/tile/label.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/label'
8
+ require 'tkextlib/blt/tile.rb'
9
+
10
+ module Tk::BLT
11
+ module Tile
12
+ class Label < Tk::Label
13
+ TkCommandNames = ['::blt::tile::label'.freeze].freeze
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,17 @@
1
+ #
2
+ # tkextlib/blt/tile/radiobutton.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/radiobutton'
8
+ require 'tkextlib/blt/tile.rb'
9
+
10
+ module Tk::BLT
11
+ module Tile
12
+ class RadioButton < Tk::RadioButton
13
+ TkCommandNames = ['::blt::tile::radiobutton'.freeze].freeze
14
+ end
15
+ Radiobutton = RadioButton
16
+ end
17
+ end
@@ -0,0 +1,16 @@
1
+ #
2
+ # tkextlib/blt/tile/scrollbar.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/scrollbar'
8
+ require 'tkextlib/blt/tile.rb'
9
+
10
+ module Tk::BLT
11
+ module Tile
12
+ class Scrollbar < Tk::Scrollbar
13
+ TkCommandNames = ['::blt::tile::scrollbar'.freeze].freeze
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,16 @@
1
+ #
2
+ # tkextlib/blt/tile/toplevel.rb
3
+ # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
4
+ #
5
+
6
+ require 'tk'
7
+ require 'tk/toplevel'
8
+ require 'tkextlib/blt/tile.rb'
9
+
10
+ module Tk::BLT
11
+ module Tile
12
+ class Toplevel < Tk::Toplevel
13
+ TkCommandNames = ['::blt::tile::toplevel'.freeze].freeze
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,1058 @@
1
+ #
2
+ # tkextlib/blt/tree.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
+ class Tree < TkObject
11
+ TkCommandNames = ['::blt::tree'.freeze].freeze
12
+
13
+ ###################################
14
+
15
+ class Node < TkObject
16
+ TreeNodeID_TBL = TkCore::INTERP.create_table
17
+
18
+ TkCore::INTERP.init_ip_env{
19
+ TreeNodeID_TBL.mutex.synchronize{ TreeNodeID_TBL.clear }
20
+ }
21
+
22
+ def self.id2obj(tree, id)
23
+ tpath = tree.path
24
+ TreeNodeID_TBL.mutex.synchronize{
25
+ if TreeNodeID_TBL[tpath]
26
+ if TreeNodeID_TBL[tpath][id]
27
+ TreeNodeID_TBL[tpath][id]
28
+ else
29
+ begin
30
+ # self.new(tree, nil, 'node'=>Integer(id))
31
+ id = Integer(id)
32
+ if bool(tk_call(@tpath, 'exists', id))
33
+ (obj = self.allocate).instance_eval{
34
+ @parent = @tree = tree
35
+ @tpath = tpath
36
+ @path = @id = id
37
+ TreeNodeID_TBL[@tpath] = {} unless TreeNodeID_TBL[@tpath]
38
+ TreeNodeID_TBL[@tpath][@id] = self
39
+ }
40
+ obj
41
+ else
42
+ id
43
+ end
44
+ rescue
45
+ id
46
+ end
47
+ end
48
+ else
49
+ id
50
+ end
51
+ }
52
+ end
53
+
54
+ def self.new(tree, parent, keys={})
55
+ keys = _symbolkey2str(keys)
56
+ tpath = tree.path
57
+
58
+ TreeNodeID_TBL.mutex.synchronize{
59
+ TreeNodeID_TBL[tpath] ||= {}
60
+ if (id = keys['node']) && (obj = TreeNodeID_TBL[tpath][id])
61
+ keys.delete('node')
62
+ tk_call(tree.path, 'move', id, parent, keys) if parent
63
+ return obj
64
+ end
65
+
66
+ (obj = self.allocate).instance_eval{
67
+ initialize(tree, parent, keys)
68
+ TreeNodeID_TBL[tpath][@id] = self
69
+ }
70
+ obj
71
+ }
72
+ end
73
+
74
+ def initialize(tree, parent, keys={})
75
+ @parent = @tree = tree
76
+ @tpath = @parent.path
77
+
78
+ if (id = keys['node']) && bool(tk_call(@tpath, 'exists', id))
79
+ @path = @id = id
80
+ keys.delete('node')
81
+ tk_call(@tpath, 'move', @id, parent, keys) if parent
82
+ else
83
+ parent = tk_call(@tpath, 'root') unless parent
84
+ @path = @id = tk_call(@tpath, 'insert', parent, keys)
85
+ end
86
+ end
87
+
88
+ def id
89
+ @id
90
+ end
91
+
92
+ def apply(keys={})
93
+ @tree.apply(@id, keys)
94
+ self
95
+ end
96
+
97
+ def children()
98
+ @tree.children(@id)
99
+ end
100
+
101
+ def copy(parent, keys={})
102
+ @tree.copy(@id, parent, keys)
103
+ end
104
+ def copy_to(dest_tree, parent, keys={})
105
+ @tree.copy_to(@id, dest_tree, parent, keys)
106
+ end
107
+
108
+ def degree()
109
+ @tree.degree(@id)
110
+ end
111
+
112
+ def delete()
113
+ @tree.delete(@id)
114
+ self
115
+ end
116
+
117
+ def depth()
118
+ @tree.depth(@id)
119
+ end
120
+
121
+ def dump()
122
+ @tree.dump(@id)
123
+ end
124
+
125
+ def dump_to_file(file)
126
+ @tree.dump_to_file(@id, file)
127
+ self
128
+ end
129
+
130
+ def exist?(keys={})
131
+ @tree.exist?(@id, keys)
132
+ end
133
+
134
+ def find(keys={})
135
+ @tree.find(@id, keys)
136
+ end
137
+
138
+ def find_child(label)
139
+ @tree.find_child(@id, label)
140
+ end
141
+
142
+ def first_child()
143
+ @tree.first_child(@id)
144
+ end
145
+
146
+ def get()
147
+ @tree.get(@id)
148
+ end
149
+ def get_value(key, default_val=None)
150
+ @tree.get_value(@id, key, default_val)
151
+ end
152
+
153
+ def index()
154
+ @tree.index(@id)
155
+ end
156
+
157
+ def leaf?()
158
+ @tree.leaf?(@id)
159
+ end
160
+ def link?()
161
+ @tree.link?(@id)
162
+ end
163
+ def root?()
164
+ @tree.root?(@id)
165
+ end
166
+
167
+ def keys()
168
+ @tree.keys(@id)
169
+ end
170
+
171
+ def label(text = nil)
172
+ @tree.label(@id, nil)
173
+ end
174
+ def label=(text)
175
+ @tree.label(@id, text)
176
+ end
177
+
178
+ def last_child()
179
+ @tree.last_child(@id)
180
+ end
181
+
182
+ def move(dest, keys={})
183
+ @tree.keys(@id, dest, keys)
184
+ self
185
+ end
186
+
187
+ def next()
188
+ @tree.next(@id)
189
+ end
190
+
191
+ def next_sibling()
192
+ @tree.next_sibling(@id)
193
+ end
194
+
195
+ def parent()
196
+ @tree.parent(@id)
197
+ end
198
+
199
+ def fullpath()
200
+ @tree.fullpath(@id)
201
+ end
202
+
203
+ def position()
204
+ @tree.position(@id)
205
+ end
206
+
207
+ def previous()
208
+ @tree.previous(@id)
209
+ end
210
+
211
+ def prev_sibling()
212
+ @tree.prev_sibling(@id)
213
+ end
214
+
215
+ def restore(str, keys={})
216
+ @tree.restore(@id, str, keys)
217
+ self
218
+ end
219
+ def restore_overwrite(str, keys={})
220
+ @tree.restore_overwrite(@id, str, keys)
221
+ self
222
+ end
223
+
224
+ def restore_from_file(file, keys={})
225
+ @tree.restore_from_file(@id, file, keys)
226
+ self
227
+ end
228
+ def restore_overwrite_from_file(file, keys={})
229
+ @tree.restore_overwrite_from_file(@id, file, keys)
230
+ self
231
+ end
232
+
233
+ def root()
234
+ @tree.root(@id)
235
+ self
236
+ end
237
+
238
+ def set(data)
239
+ @tree.set(@id, data)
240
+ self
241
+ end
242
+
243
+ def size()
244
+ @tree.size(@id)
245
+ end
246
+
247
+ def sort(keys={})
248
+ @tree.sort(@id, keys)
249
+ self
250
+ end
251
+
252
+ def type(key)
253
+ @tree.type(@id, key)
254
+ end
255
+
256
+ def unset(*keys)
257
+ @tree.unset(@id, *keys)
258
+ self
259
+ end
260
+
261
+ def values(key=None)
262
+ @tree.values(@id, key)
263
+ end
264
+ end
265
+
266
+ ###################################
267
+
268
+ class Tag < TkObject
269
+ TreeTagID_TBL = TkCore::INTERP.create_table
270
+
271
+ TkCore::INTERP.init_ip_env{
272
+ TreeTagID_TBL.mutex.synchronize{ TreeTagID_TBL.clear }
273
+ }
274
+
275
+ (TreeTag_ID = ['blt_tree_tag'.freeze, TkUtil.untrust('00000')]).instance_eval{
276
+ @mutex = Mutex.new
277
+ def mutex; @mutex; end
278
+ freeze
279
+ }
280
+
281
+ def self.id2obj(tree, id)
282
+ tpath = tree.path
283
+ TreeTagID_TBL.mutex.synchronize{
284
+ if TreeTagID_TBL[tpath]
285
+ if TreeTagID_TBL[tpath][id]
286
+ TreeTagID_TBL[tpath][id]
287
+ else
288
+ begin
289
+ # self.new(tree, id)
290
+ (obj = self.allocate).instance_eval{
291
+ @parent = @tree = tree
292
+ @tpath = @parent.path
293
+ @path = @id = id.dup.freeze if id
294
+ TreeTagID_TBL[@tpath] = {} unless TreeTagID_TBL[@tpath]
295
+ TreeTagID_TBL[@tpath][@id] = self
296
+ }
297
+ obj
298
+ rescue
299
+ id
300
+ end
301
+ end
302
+ else
303
+ id
304
+ end
305
+ }
306
+ end
307
+
308
+ def initialize(tree, tag_str = nil)
309
+ @parent = @tree = tree
310
+ @tpath = @parent.path
311
+
312
+ if tag_str
313
+ @path = @id = tag_str.dup.freeze
314
+ else
315
+ TreeTag_ID.mutex.synchronize{
316
+ @path = @id = TreeTag_ID.join(TkCore::INTERP._ip_id_)
317
+ TreeTag_ID[1].succ!
318
+ }
319
+ end
320
+ TreeTagID_TBL.mutex.synchronize{
321
+ TreeTagID_TBL[@tpath] = {} unless TreeTagID_TBL[@tpath]
322
+ TreeTagID_TBL[@tpath][@id] = self
323
+ }
324
+ end
325
+
326
+ def id
327
+ @id
328
+ end
329
+
330
+ def add(*nodes)
331
+ tk_call(@tpath, 'tag', 'add', @id, *nodes)
332
+ self
333
+ end
334
+
335
+ def delete(*nodes)
336
+ tk_call(@tpath, 'tag', 'delete', @id, *nodes)
337
+ self
338
+ end
339
+
340
+ def forget()
341
+ tk_call(@tpath, 'tag', 'forget', @id)
342
+ TreeTagID_TBL.mutex.synchronize{
343
+ TreeTagID_TBL[@tpath].delete(@id)
344
+ }
345
+ self
346
+ end
347
+
348
+ def nodes()
349
+ simplelist(tk_call(@tpath, 'tag', 'nodes', @id)).collect{|node|
350
+ Tk::BLT::Tree::Node.id2obj(@path, node)
351
+ }
352
+ end
353
+
354
+ def set(node)
355
+ tk_call(@tpath, 'tag', 'set', node, @id)
356
+ self
357
+ end
358
+
359
+ def unset(node)
360
+ tk_call(@tpath, 'tag', 'unset', node, @id)
361
+ self
362
+ end
363
+ end
364
+
365
+ ###################################
366
+
367
+ class Notify < TkObject
368
+ NotifyID_TBL = TkCore::INTERP.create_table
369
+
370
+ TkCore::INTERP.init_ip_env{
371
+ NotifyID_TBL.mutex.synchronize{ NotifyID_TBL.clear }
372
+ }
373
+
374
+ def self.id2obj(tree, id)
375
+ tpath = tree.path
376
+ NotifyID_TBL.mutex.synchronize{
377
+ if NotifyID_TBL[tpath]
378
+ if NotifyID_TBL[tpath][id]
379
+ NotifyID_TBL[tpath][id]
380
+ else
381
+ (obj = self.allocate).instance_eval{
382
+ @parent = @tree = tree
383
+ @tpath = @parent.path
384
+ @path = @id = id
385
+ NotifyID_TBL[@tpath] ||= {}
386
+ NotifyID_TBL[@tpath][@id] = self
387
+ }
388
+ obj
389
+ end
390
+ else
391
+ return id
392
+ end
393
+ }
394
+ end
395
+
396
+ def self.new(tree, *args, &b)
397
+ NotifyID_TBL.mutex.synchronize{
398
+ if tree.kind_of?(Array)
399
+ # not create
400
+ tpath = tree[0].path
401
+ NotifyID_TBL[tpath] ||= {}
402
+ unless (obj = NotifyID_TBL[tpath][tree[1]])
403
+ (NotifyID_TBL[tpath][tree[1]] =
404
+ obj = self.allocate).instance_eval{
405
+ @parent = @tree = tree[0]
406
+ @tpath = @parent.path
407
+ @path = @id = tree[1]
408
+ }
409
+ end
410
+ return obj
411
+ end
412
+
413
+ (obj = self.allocate).instance_eval{
414
+ initialize(tree, *args, &b)
415
+ NotifyID_TBL[@tpath] ||= {}
416
+ NotifyID_TBL[@tpath][@id] = self
417
+ }
418
+ return obj
419
+ }
420
+ end
421
+
422
+ def initialize(tree, *args, &b)
423
+ @parent = @tree = tree
424
+ @tpath = @parent.path
425
+
426
+ # if args[0].kind_of?(Proc) || args[0].kind_of?(Method)
427
+ if TkComm._callback_entry?(args[0])
428
+ cmd = args.shift
429
+ # elsif args[-1].kind_of?(Proc) || args[-1].kind_of?(Method)
430
+ elsif TkComm._callback_entry?(args[-1])
431
+ cmd = args.pop
432
+ elsif b
433
+ cmd = Proc.new(&b)
434
+ else
435
+ fail ArgumentError, "lack of 'command' argument"
436
+ end
437
+
438
+ args = args.collect{|arg| '-' << arg.to_s}
439
+
440
+ args << proc{|id, type|
441
+ cmd.call(Tk::BLT::Tree::Node.id2obj(@tree, id),
442
+ ((type[0] == ?-)? type[1..-1]: type))
443
+ }
444
+
445
+ @path = @id = tk_call(@tpath, 'notify', 'create', *args)
446
+ end
447
+
448
+ def id
449
+ @id
450
+ end
451
+
452
+ def delete()
453
+ tk_call(@tpath, 'notify', 'delete', @id)
454
+ NotifyID_TBL.mutex.synchronize{
455
+ NotifyID_TBL[@tpath].delete(@id)
456
+ }
457
+ self
458
+ end
459
+
460
+ def info()
461
+ lst = simplelist(tk_call(@tpath, 'notify', 'info', id))
462
+ lst[0] = Tk::BLT::Tree::Notify.id2obj(@tree, lst[0])
463
+ lst[1] = simplelist(lst[1]).collect{|flag| flag[1..-1]}
464
+ lst[2] = tk_tcl2ruby(lst[2])
465
+ lst
466
+ end
467
+ end
468
+
469
+ ###################################
470
+
471
+ class Trace < TkObject
472
+ TraceID_TBL = TkCore::INTERP.create_table
473
+
474
+ TkCore::INTERP.init_ip_env{
475
+ TraceID_TBL.mutex.synchronize{ TraceID_TBL.clear }
476
+ }
477
+
478
+ def self.id2obj(tree, id)
479
+ tpath = tree.path
480
+ TraceID_TBL.mutex.synchronize{
481
+ if TraceID_TBL[tpath]
482
+ if TraceID_TBL[tpath][id]
483
+ TraceID_TBL[tpath][id]
484
+ else
485
+ begin
486
+ # self.new([tree, id])
487
+ (obj = self.allocate).instance_eval{
488
+ @parent = @tree = tree
489
+ @tpath = @parent.path
490
+ @path = @id = node # == traceID
491
+ TraceID_TBL[@tpath] ||= {}
492
+ TraceID_TBL[@tpath][@id] = self
493
+ }
494
+ obj
495
+ rescue
496
+ id
497
+ end
498
+ end
499
+ else
500
+ id
501
+ end
502
+ }
503
+ end
504
+
505
+ def self.new(tree, *args, &b)
506
+ TraceID_TBL.mutex.synchronize{
507
+ if tree.kind_of?(Array)
508
+ # not create
509
+ tpath = tree[0].path
510
+ TraceID_TBL[tpath] ||= {}
511
+ unless (obj = TraceID_TBL[tpath][tree[1]])
512
+ (TraceID_TBL[tpath][tree[1]] =
513
+ obj = self.allocate).instance_eval{
514
+ @parent = @tree = tree
515
+ @tpath = @parent.path
516
+ @path = @id = tree[1] # == traceID
517
+ }
518
+ end
519
+ return obj
520
+ end
521
+
522
+ # super(true, tree, *args, &b)
523
+ (obj = self.allocate).instance_eval{
524
+ initialize(tree, *args, &b)
525
+ TraceID_TBL[@tpath] ||= {}
526
+ TraceID_TBL[@tpath][@id] = self
527
+ }
528
+ return obj
529
+ }
530
+ end
531
+
532
+ def initialize(tree, node, key, opts, cmd=nil, &b)
533
+ @parent = @tree = tree
534
+ @tpath = @parent.path
535
+
536
+ if !cmd
537
+ if b
538
+ cmd = Proc.new(&b)
539
+ else
540
+ fail ArgumentError, "lack of 'command' argument"
541
+ end
542
+ end
543
+
544
+ @path = @id = tk_call(@tpath, 'trace', 'create', node, key, opts,
545
+ proc{|t, id, k, ops|
546
+ tobj = Tk::BLT::Tree.id2obj(t)
547
+ if tobj.kind_of?(Tk::BLT::Tree)
548
+ nobj = Tk::BLT::Tree::Node.id2obj(tobj, id)
549
+ else
550
+ nobj = id
551
+ end
552
+ cmd.call(tobj, nobj, k, ops)
553
+ })
554
+ end
555
+
556
+ def id
557
+ @id
558
+ end
559
+
560
+ def delete()
561
+ tk_call(@tpath, 'trace', 'delete', @id)
562
+ TraceID_TBL.mutex.synchronize{
563
+ TraceID_TBL[tpath].delete(@id)
564
+ }
565
+ self
566
+ end
567
+
568
+ def info()
569
+ lst = simplelist(tk_call(@tpath, 'trace', 'info', id))
570
+ lst[0] = Tk::BLT::Tree::Trace.id2obj(@tree, lst[0])
571
+ lst[2] = simplelist(lst[2])
572
+ lst[3] = tk_tcl2ruby(lst[3])
573
+ lst
574
+ end
575
+ end
576
+
577
+ ###################################
578
+
579
+ TreeID_TBL = TkCore::INTERP.create_table
580
+
581
+ (Tree_ID = ['blt_tree'.freeze, TkUtil.untrust('00000')]).instance_eval{
582
+ @mutex = Mutex.new
583
+ def mutex; @mutex; end
584
+ freeze
585
+ }
586
+
587
+ def __keyonly_optkeys
588
+ {
589
+ # apply / find command
590
+ 'invert'=>nil, 'leafonly'=>nil, 'nocase'=>nil,
591
+
592
+ # apply / find / sort command
593
+ 'path'=>nil,
594
+
595
+ # copy / restore / restorefile command
596
+ 'overwrite'=>nil,
597
+
598
+ # copy command
599
+ 'recurse'=>nil, 'tags'=>nil,
600
+
601
+ # sort command
602
+ 'ascii'=>nil, 'decreasing'=>nil, 'disctionary'=>nil,
603
+ 'integer'=>nil, 'real'=>nil, 'recurse'=>nil, 'reorder'=>nil,
604
+ }
605
+ end
606
+
607
+ def self.id2obj(id)
608
+ TreeID_TBL.mutex.synchronize{
609
+ TreeID_TBL[id]? TreeID_TBL[id]: id
610
+ }
611
+ end
612
+
613
+ def self.names(pat = None)
614
+ simplelist(tk_call('::blt::tree', 'names', pat)).collect{|name|
615
+ id2obj(name)
616
+ }
617
+ end
618
+
619
+ def self.destroy(*names)
620
+ tk_call('::blt::tree', 'destroy',
621
+ *(names.collect{|n| (n.kind_of?(Tk::BLT::Tree))? n.id: n }) )
622
+ end
623
+
624
+ def self.new(name = nil)
625
+ TreeID_TBL.mutex.synchronize{
626
+ if name && TreeID_TBL[name]
627
+ TreeID_TBL[name]
628
+ else
629
+ (obj = self.allocate).instance_eval{
630
+ initialize(name)
631
+ TreeID_TBL[@id] = self
632
+ }
633
+ obj
634
+ end
635
+ }
636
+ end
637
+
638
+ def initialzie(name = nil)
639
+ if name
640
+ @path = @id = name
641
+ else
642
+ Tree_ID.mutex.synchronize{
643
+ @path = @id = Tree_ID.join(TkCore::INTERP._ip_id_)
644
+ Tree_ID[1].succ!
645
+ }
646
+ end
647
+
648
+ tk_call('::blt::tree', 'create', @id)
649
+ end
650
+
651
+ def __destroy_hook__
652
+ Tk::BLT::Tree::Node::TreeNodeID_TBL.mutex.synchronize{
653
+ Tk::BLT::Tree::Node::TreeNodeID_TBL.delete(@path)
654
+ }
655
+ Tk::BLT::Tree::Tag::TreeTagID_TBL.mutex.synchronize{
656
+ Tk::BLT::Tree::Tag::TreeTagID_TBL.delete(@path)
657
+ }
658
+ Tk::BLT::Tree::Notify::NotifyID_TBL.mutex.synchronize{
659
+ Tk::BLT::Tree::Notify::NotifyID_TBL.delete(@path)
660
+ }
661
+ Tk::BLT::Tree::Trace::TraceID_TBL.mutex.synchronize{
662
+ Tk::BLT::Tree::Trace::TraceID_TBL.delete(@path)
663
+ }
664
+ end
665
+
666
+ def tagid(tag)
667
+ if tag.kind_of?(Tk::BLT::Tree::Node) ||
668
+ tag.kind_of?(Tk::BLT::Tree::Tag) ||
669
+ tag.kind_of?(Tk::BLT::Tree::Notify) ||
670
+ tag.kind_of?(Tk::BLT::Tree::Trace)
671
+ tag.id
672
+ else
673
+ tag # maybe an Array of configure paramters
674
+ end
675
+ end
676
+
677
+ def destroy()
678
+ tk_call('::blt::tree', 'destroy', @id)
679
+ self
680
+ end
681
+
682
+ def ancestor(node1, node2)
683
+ Tk::BLT::Tree::Node.id2obj(self, tk_call('::blt::tree', 'ancestor',
684
+ tagid(node1), tagid(node2)))
685
+ end
686
+
687
+ def apply(node, keys={})
688
+ tk_call('::blt::tree', 'apply', tagid(node), __conv_keyonly_opts(keys))
689
+ self
690
+ end
691
+
692
+ def attach(tree_obj)
693
+ tk_call('::blt::tree', 'attach', tree_obj)
694
+ self
695
+ end
696
+
697
+ def children(node)
698
+ simplelist(tk_call('::blt::tree', 'children', tagid(node))).collect{|n|
699
+ Tk::BLT::Tree::Node.id2obj(self, n)
700
+ }
701
+ end
702
+
703
+ def copy(src, parent, keys={})
704
+ id = tk_call('::blt::tree', 'copy', tagid(src), tagid(parent),
705
+ __conv_keyonly_opts(keys))
706
+ Tk::BLT::Tree::Node.new(self, nil, 'node'=>id)
707
+ end
708
+ def copy_to(src, dest_tree, parent, keys={})
709
+ return copy(src, parent, keys={}) unless dest_tree
710
+
711
+ id = tk_call('::blt::tree', 'copy', tagid(src), dest_tree,
712
+ tagid(parent), __conv_keyonly_opts(keys))
713
+ Tk::BLT::Tree::Node.new(dest_tree, nil, 'node'=>id)
714
+ end
715
+
716
+ def degree(node)
717
+ number(tk_call('::blt::tree', 'degree', tagid(node)))
718
+ end
719
+
720
+ def delete(*nodes)
721
+ tk_call('::blt::tree', 'delete', *(nodes.collect{|node| tagid(node)}))
722
+ Tk::BLT::Tree::Node::TreeNodeID_TBL.mutex.synchronize{
723
+ nodes.each{|node|
724
+ if node.kind_of?(Tk::BLT::Tree::Node)
725
+ Tk::BLT::Tree::Node::TreeNodeID_TBL[@path].delete(node.id)
726
+ else
727
+ Tk::BLT::Tree::Node::TreeNodeID_TBL[@path].delete(node.to_s)
728
+ end
729
+ }
730
+ }
731
+ self
732
+ end
733
+
734
+ def depth(node)
735
+ number(tk_call('::blt::tree', 'depth', tagid(node)))
736
+ end
737
+
738
+ def dump(node)
739
+ simplelist(tk_call('::blt::tree', 'dump', tagid(node))).collect{|n|
740
+ simplelist(n)
741
+ }
742
+ end
743
+
744
+ def dump_to_file(node, file)
745
+ tk_call('::blt::tree', 'dumpfile', tagid(node), file)
746
+ self
747
+ end
748
+
749
+ def exist?(node, key=None)
750
+ bool(tk_call('::blt::tree', 'exists', tagid(node), key))
751
+ end
752
+
753
+ def find(node, keys={})
754
+ simplelist(tk_call('::blt::tree', 'find', tagid(node),
755
+ __conv_keyonly_opts(keys))).collect{|n|
756
+ Tk::BLT::Tree::Node.id2obj(self, n)
757
+ }
758
+ end
759
+
760
+ def find_child(node, label)
761
+ ret = tk_call('::blt::tree', 'findchild', tagid(node), label)
762
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
763
+ end
764
+
765
+ def first_child(node)
766
+ ret = tk_call('::blt::tree', 'firstchild', tagid(node))
767
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
768
+ end
769
+
770
+ def get(node)
771
+ Hash[*simplelist(tk_call('::blt::tree', 'get', tagid(node)))]
772
+ end
773
+ def get_value(node, key, default_val=None)
774
+ tk_call('::blt::tree', 'get', tagid(node), key, default_val)
775
+ end
776
+
777
+ def index(node)
778
+ Tk::BLT::Tree::Node.id2obj(self,
779
+ tk_call('::blt::tree', 'index', tagid(node)))
780
+ end
781
+
782
+ def insert(parent, keys={})
783
+ id = tk_call('::blt::tree', 'insert', tagid(parent), keys)
784
+ Tk::BLT::Tree::Node.new(self, nil, 'node'=>id)
785
+ end
786
+
787
+ def ancestor?(node1, node2)
788
+ bool(tk_call('::blt::tree', 'is', 'ancestor',
789
+ tagid(node1), tagid(node2)))
790
+ end
791
+ def before?(node1, node2)
792
+ bool(tk_call('::blt::tree', 'is', 'before',
793
+ tagid(node1), tagid(node2)))
794
+ end
795
+ def leaf?(node)
796
+ bool(tk_call('::blt::tree', 'is', 'leaf', tagid(node)))
797
+ end
798
+ def link?(node)
799
+ bool(tk_call('::blt::tree', 'is', 'link', tagid(node)))
800
+ end
801
+ def root?(node)
802
+ bool(tk_call('::blt::tree', 'is', 'root', tagid(node)))
803
+ end
804
+
805
+ def keys(node, *nodes)
806
+ if nodes.empty?
807
+ simplelist(tk_call('blt::tree', 'keys', tagid(node)))
808
+ else
809
+ simplelist(tk_call('blt::tree', 'keys', tagid(node),
810
+ *(nodes.collect{|n| tagid(n)}))).collect{|lst|
811
+ simplelist(lst)
812
+ }
813
+ end
814
+ end
815
+
816
+ def label(node, text=nil)
817
+ if text
818
+ tk_call('::blt::tree', 'label', tagid(node), text)
819
+ text
820
+ else
821
+ tk_call('::blt::tree', 'label', tagid(node))
822
+ end
823
+ end
824
+
825
+ def last_child(node)
826
+ ret = tk_call('::blt::tree', 'lastchild', tagid(node))
827
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
828
+ end
829
+
830
+ def link(parent, node, keys={})
831
+ ret = tk_call('::blt::tree', 'link', tagid(parent), tagid(node),
832
+ __conv_keyonly_opts(keys))
833
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
834
+ end
835
+
836
+ def move(node, dest, keys={})
837
+ tk_call('::blt::tree', 'move', tagid(node), tagid(dest), keys)
838
+ self
839
+ end
840
+
841
+ def next(node)
842
+ ret = tk_call('::blt::tree', 'next', tagid(node))
843
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
844
+ end
845
+
846
+ def next_sibling(node)
847
+ ret = tk_call('::blt::tree', 'nextsibling', tagid(node))
848
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
849
+ end
850
+
851
+ def notify_create(*args, &b)
852
+ Tk::BLT::Tree::Notify.new(self, *args, &b)
853
+ end
854
+
855
+ def notify_delete(id)
856
+ if id.kind_of?(Tk::BLT::Tree::Notify)
857
+ id.delete
858
+ else
859
+ tk_call(@path, 'notify', 'delete', id)
860
+ Tk::BLT::Tree::Notify::NotifyID_TBL.mutex.synchronize{
861
+ Tk::BLT::Tree::Notify::NotifyID_TBL[@path].delete(id.to_s)
862
+ }
863
+ end
864
+ self
865
+ end
866
+
867
+ def notify_info(id)
868
+ lst = simplelist(tk_call(@path, 'notify', 'info', tagid(id)))
869
+ lst[0] = Tk::BLT::Tree::Notify.id2obj(self, lst[0])
870
+ lst[1] = simplelist(lst[1]).collect{|flag| flag[1..-1]}
871
+ lst[2] = tk_tcl2ruby(lst[2])
872
+ lst
873
+ end
874
+
875
+ def notify_names()
876
+ tk_call(@path, 'notify', 'names').collect{|id|
877
+ Tk::BLT::Tree::Notify.id2obj(self, id)
878
+ }
879
+ end
880
+
881
+ def parent(node)
882
+ ret = tk_call('::blt::tree', 'parent', tagid(node))
883
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
884
+ end
885
+
886
+ def fullpath(node)
887
+ tk_call('::blt::tree', 'path', tagid(node))
888
+ end
889
+
890
+ def position(node)
891
+ number(tk_call('::blt::tree', 'position', tagid(node)))
892
+ end
893
+
894
+ def previous(node)
895
+ ret = tk_call('::blt::tree', 'previous', tagid(node))
896
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
897
+ end
898
+
899
+ def prev_sibling(node)
900
+ ret = tk_call('::blt::tree', 'prevsibling', tagid(node))
901
+ (ret == '-1')? nil: Tk::BLT::Tree::Node.id2obj(self, ret)
902
+ end
903
+
904
+ def restore(node, str, keys={})
905
+ tk_call('::blt::tree', 'restore', tagid(node), str,
906
+ __conv_keyonly_opts(keys))
907
+ self
908
+ end
909
+ def restore_overwrite(node, str, keys={})
910
+ keys = __conv_keyonly_opts(keys)
911
+ keys.delete('overwrite')
912
+ keys.delete(:overwrite)
913
+ tk_call('::blt::tree', 'restore', tagid(node), str, '-overwrite', keys)
914
+ self
915
+ end
916
+
917
+ def restore_from_file(node, file, keys={})
918
+ tk_call('::blt::tree', 'restorefile', tagid(node), file,
919
+ __conv_keyonly_opts(keys))
920
+ self
921
+ end
922
+ def restore_overwrite_from_file(node, file, keys={})
923
+ keys = __conv_keyonly_opts(keys)
924
+ keys.delete('overwrite')
925
+ keys.delete(:overwrite)
926
+ tk_call('::blt::tree', 'restorefile', tagid(node), file,
927
+ '-overwrite', keys)
928
+ self
929
+ end
930
+
931
+ def root(node=None)
932
+ Tk::BLT::Tree::Node.id2obj(self, tk_call('::blt::tree', 'root',
933
+ tagid(node)))
934
+ end
935
+
936
+ def set(node, data)
937
+ unless data.kind_of?(Hash)
938
+ fail ArgumentError, 'Hash is expected for data'
939
+ end
940
+ args = []
941
+ data.each{|k, v| args << k << v}
942
+ tk_call('::blt::tree', 'set', tagid(node), *args)
943
+ self
944
+ end
945
+
946
+ def size(node)
947
+ number(tk_call('::blt::tree', 'size', tagid(node)))
948
+ end
949
+
950
+ def sort(node, keys={})
951
+ tk_call('::blt::tree', 'sort', tagid(node), __conv_keyonly_opts(keys))
952
+ self
953
+ end
954
+
955
+ def tag_add(tag, *nodes)
956
+ tk_call(@path, 'tag', 'add', tagid(tag), *(nodes.collect{|n| tagid(n)}))
957
+ self
958
+ end
959
+
960
+ def tag_delete(tag, *nodes)
961
+ tk_call(@path, 'tag', 'delete', tagid(tag),
962
+ *(nodes.collect{|n| tagid(n)}))
963
+ self
964
+ end
965
+
966
+ def tag_forget(tag)
967
+ tag = tag.id if tag.kind_of?(Tk::BLT::Tree::Tag)
968
+ tk_call(@path, 'tag', 'forget', tag)
969
+ TreeTagID_TBL.mutex.synchronize{
970
+ TreeTagID_TBL[@path].delete(tag)
971
+ }
972
+ self
973
+ end
974
+
975
+ def tag_get(node, *patterns)
976
+ simplelist(tk_call(@tpath, 'tag', 'get', tagid(node),
977
+ *(patterns.collect{|pat| tagid(pat)}))).collect{|str|
978
+ Tk::BLT::Tree::Tag.id2obj(self, str)
979
+ }
980
+ end
981
+
982
+ def tag_names(node = None)
983
+ simplelist(tk_call(@tpath, 'tag', 'names', tagid(node))).collect{|str|
984
+ Tk::BLT::Tree::Tag.id2obj(self, str)
985
+ }
986
+ end
987
+
988
+ def tag_nodes(tag)
989
+ simplelist(tk_call(@tpath, 'tag', 'nodes', tagid(tag))).collect{|node|
990
+ Tk::BLT::Tree::Node.id2obj(self, node)
991
+ }
992
+ end
993
+
994
+ def tag_set(node, *tags)
995
+ tk_call(@path, 'tag', 'set', tagid(node), *(tags.collect{|t| tagid(t)}))
996
+ self
997
+ end
998
+
999
+ def tag_unset(node, *tags)
1000
+ tk_call(@path, 'tag', 'unset', tagid(node),
1001
+ *(tags.collect{|t| tagid(t)}))
1002
+ self
1003
+ end
1004
+
1005
+ def trace_create(*args, &b)
1006
+ Tk::BLT::Tree::Trace.new(self, *args, &b)
1007
+ end
1008
+
1009
+ =begin
1010
+ def trace_delete(*args)
1011
+ args.each{|id|
1012
+ if id.kind_of?(Tk::BLT::Tree::Trace)
1013
+ id.delete
1014
+ else
1015
+ tk_call(@path, 'trace', 'delete', id)
1016
+ Tk::BLT::Tree::Trace::TraceID_TBL[@path].delete(id.to_s)
1017
+ end
1018
+ self
1019
+ }
1020
+ end
1021
+ =end
1022
+ def trace_delete(*args)
1023
+ args = args.collect{|id| tagid(id)}
1024
+ tk_call(@path, 'trace', 'delete', *args)
1025
+ Tk::BLT::Tree::Trace::TraceID_TBL.mutex.synchronize{
1026
+ args.each{|id| Tk::BLT::Tree::Trace::TraceID_TBL[@path].delete(id.to_s)}
1027
+ }
1028
+ self
1029
+ end
1030
+
1031
+ def trace_info(id)
1032
+ lst = simplelist(tk_call(@path, 'trace', 'info', tagid(id)))
1033
+ lst[0] = Tk::BLT::Tree::Trace.id2obj(self, lst[0])
1034
+ lst[2] = simplelist(lst[2])
1035
+ lst[3] = tk_tcl2ruby(lst[3])
1036
+ lst
1037
+ end
1038
+
1039
+ def trace_names()
1040
+ tk_call(@path, 'trace', 'names').collect{|id|
1041
+ Tk::BLT::Tree::Trace.id2obj(self, id)
1042
+ }
1043
+ end
1044
+
1045
+ def type(node, key)
1046
+ tk_call('::blt::tree', 'type', tagid(node), key)
1047
+ end
1048
+
1049
+ def unset(node, *keys)
1050
+ tk_call('::blt::tree', 'unset', tagid(node), *keys)
1051
+ self
1052
+ end
1053
+
1054
+ def values(node, key=None)
1055
+ simplelist(tk_call('::blt::tree', 'values', tagid(node), key))
1056
+ end
1057
+ end
1058
+ end