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,52 @@
1
+ #
2
+ # tk/console.rb : control the console on system without a real console
3
+ #
4
+ require 'tk'
5
+
6
+ module TkConsole
7
+ include Tk
8
+ extend Tk
9
+
10
+ TkCommandNames = ['console'.freeze, 'consoleinterp'.freeze].freeze
11
+
12
+ def self.create
13
+ TkCore::INTERP._create_console
14
+ end
15
+ self.create # initialize console
16
+
17
+ def self.title(str=None)
18
+ tk_call 'console', str
19
+ end
20
+ def self.hide
21
+ tk_call_without_enc('console', 'hide')
22
+ end
23
+ def self.show
24
+ tk_call_without_enc('console', 'show')
25
+ end
26
+ def self.eval(tcl_script)
27
+ #
28
+ # supports a Tcl script only
29
+ # I have no idea to support a Ruby script seamlessly.
30
+ #
31
+ _fromUTF8(tk_call_without_enc('console', 'eval',
32
+ _get_eval_enc_str(tcl_script)))
33
+ end
34
+ def self.maininterp_eval(tcl_script)
35
+ #
36
+ # supports a Tcl script only
37
+ # I have no idea to support a Ruby script seamlessly.
38
+ #
39
+ _fromUTF8(tk_call_without_enc('consoleinterp', 'eval',
40
+ _get_eval_enc_str(tcl_script)))
41
+
42
+ end
43
+ def self.maininterp_record(tcl_script)
44
+ #
45
+ # supports a Tcl script only
46
+ # I have no idea to support a Ruby script seamlessly.
47
+ #
48
+ _fromUTF8(tk_call_without_enc('consoleinterp', 'record',
49
+ _get_eval_enc_str(tcl_script)))
50
+
51
+ end
52
+ end
@@ -0,0 +1,326 @@
1
+ #
2
+ # tk/dialog.rb : create dialog boxes
3
+ #
4
+ require 'tk'
5
+ require 'tk/variable.rb'
6
+
7
+ class TkDialogObj < TkWindow
8
+ extend Tk
9
+
10
+ TkCommandNames = ['tk_dialog'.freeze].freeze
11
+
12
+ def self.show(*args)
13
+ dlog = self.new(*args)
14
+ dlog.show
15
+ dlog
16
+ end
17
+
18
+ def _set_button_config(configs)
19
+ set_config = proc{|c,i|
20
+ if $VERBOSE && (c.has_key?('command') || c.has_key?(:command))
21
+ STDERR.print("Warning: cannot give a command option " +
22
+ "to the dialog button#{i}. It was removed.\n")
23
+ end
24
+ c.delete('command'); c.delete(:command)
25
+ # @config << Kernel.format("%s.button%s configure %s; ",
26
+ # @path, i, hash_kv(c).join(' '))
27
+ # @config << @path+'.button'+i.to_s+' configure '+hash_kv(c).join(' ')+'; '
28
+ @config << @path+'.button'+i.to_s+' configure '+
29
+ array2tk_list(hash_kv(c))+'; '
30
+ }
31
+ case configs
32
+ when Proc
33
+ @buttons.each_index{|i|
34
+ if (c = configs.call(i)).kind_of?(Hash)
35
+ set_config.call(c,i)
36
+ end
37
+ }
38
+
39
+ when Array
40
+ @buttons.each_index{|i|
41
+ if (c = configs[i]).kind_of?(Hash)
42
+ set_config.call(c,i)
43
+ end
44
+ }
45
+
46
+ when Hash
47
+ @buttons.each_with_index{|s,i|
48
+ if (c = configs[s]).kind_of?(Hash)
49
+ set_config.call(c,i)
50
+ end
51
+ }
52
+ end
53
+ # @config = 'after idle {' + @config + '};' if @config != ""
54
+ @config = array2tk_list(['after', 'idle', @config]) << ';' if @config != ""
55
+ end
56
+ private :_set_button_config
57
+
58
+ # initialize tk_dialog
59
+ def create_self(keys)
60
+ # @var = TkVariable.new
61
+ @val = nil
62
+
63
+ @title = title
64
+
65
+ @message = message
66
+ @message_config = message_config
67
+ @msgframe_config = msgframe_config
68
+
69
+ @bitmap = bitmap
70
+ @bitmap_config = message_config
71
+
72
+ @default_button = default_button
73
+
74
+ @buttons = buttons
75
+ @button_configs = proc{|num| button_configs(num)}
76
+ @btnframe_config = btnframe_config
77
+
78
+ #@config = "puts [winfo children .w0000];"
79
+ @config = ""
80
+
81
+ @command = prev_command
82
+
83
+ if keys.kind_of?(Hash)
84
+ @title = keys['title'] if keys.key? 'title'
85
+ @message = keys['message'] if keys.key? 'message'
86
+ @bitmap = keys['bitmap'] if keys.key? 'bitmap'
87
+ # @bitmap = '{}' if @bitmap == nil || @bitmap == ""
88
+ @bitmap = '' unless @bitmap
89
+ @default_button = keys['default'] if keys.key? 'default'
90
+ @buttons = keys['buttons'] if keys.key? 'buttons'
91
+
92
+ @command = keys['prev_command'] if keys.key? 'prev_command'
93
+
94
+ @message_config = keys['message_config'] if keys.key? 'message_config'
95
+ @msgframe_config = keys['msgframe_config'] if keys.key? 'msgframe_config'
96
+ @bitmap_config = keys['bitmap_config'] if keys.key? 'bitmap_config'
97
+ @button_configs = keys['button_configs'] if keys.key? 'button_configs'
98
+ @btnframe_config = keys['btnframe_config'] if keys.key? 'btnframe_config'
99
+ end
100
+
101
+ #if @title.include? ?\s
102
+ # @title = '{' + @title + '}'
103
+ #end
104
+
105
+ if @buttons.kind_of?(Array)
106
+ _set_button_config(@buttons.collect{|cfg|
107
+ (cfg.kind_of? Array)? cfg[1]: nil})
108
+ @buttons = @buttons.collect{|cfg| (cfg.kind_of? Array)? cfg[0]: cfg}
109
+ end
110
+ if @buttons.kind_of?(Hash)
111
+ _set_button_config(@buttons)
112
+ @buttons = @buttons.keys
113
+ end
114
+ @buttons = tk_split_simplelist(@buttons) if @buttons.kind_of?(String)
115
+ @buttons = [] unless @buttons
116
+ =begin
117
+ @buttons = @buttons.collect{|s|
118
+ if s.kind_of?(Array)
119
+ s = s.join(' ')
120
+ end
121
+ if s.include? ?\s
122
+ '{' + s + '}'
123
+ else
124
+ s
125
+ end
126
+ }
127
+ =end
128
+
129
+ if @message_config.kind_of?(Hash)
130
+ # @config << Kernel.format("%s.msg configure %s;",
131
+ # @path, hash_kv(@message_config).join(' '))
132
+ # @config << @path+'.msg configure '+hash_kv(@message_config).join(' ')+';'
133
+ @config << @path+'.msg configure '+
134
+ array2tk_list(hash_kv(@message_config))+';'
135
+ end
136
+
137
+ if @msgframe_config.kind_of?(Hash)
138
+ # @config << Kernel.format("%s.top configure %s;",
139
+ # @path, hash_kv(@msgframe_config).join(' '))
140
+ # @config << @path+'.top configure '+hash_kv(@msgframe_config).join(' ')+';'
141
+ @config << @path+'.top configure '+
142
+ array2tk_list(hash_kv(@msgframe_config))+';'
143
+ end
144
+
145
+ if @btnframe_config.kind_of?(Hash)
146
+ # @config << Kernel.format("%s.bot configure %s;",
147
+ # @path, hash_kv(@btnframe_config).join(' '))
148
+ # @config << @path+'.bot configure '+hash_kv(@btnframe_config).join(' ')+';'
149
+ @config << @path+'.bot configure '+
150
+ array2tk_list(hash_kv(@btnframe_config))+';'
151
+ end
152
+
153
+ if @bitmap_config.kind_of?(Hash)
154
+ # @config << Kernel.format("%s.bitmap configure %s;",
155
+ # @path, hash_kv(@bitmap_config).join(' '))
156
+ # @config << @path+'.bitmap configure '+hash_kv(@bitmap_config).join(' ')+';'
157
+ @config << @path+'.bitmap configure '+
158
+ array2tk_list(hash_kv(@bitmap_config))+';'
159
+ end
160
+
161
+ _set_button_config(@button_configs) if @button_configs
162
+ end
163
+ private :create_self
164
+
165
+ def show
166
+ # if @command.kind_of?(Proc)
167
+ if TkComm._callback_entry?(@command)
168
+ @command.call(self)
169
+ end
170
+
171
+ if @default_button.kind_of?(String)
172
+ default_button = @buttons.index(@default_button)
173
+ else
174
+ default_button = @default_button
175
+ end
176
+ # default_button = '{}' if default_button == nil
177
+ default_button = '' if default_button == nil
178
+ #Tk.ip_eval('eval {global '+@var.id+';'+@config+
179
+ # 'set '+@var.id+' [tk_dialog '+
180
+ # @path+" "+@title+" {#{@message}} "+@bitmap+" "+
181
+ # String(default_button)+" "+@buttons.join(' ')+']}')
182
+ Tk.ip_eval(@config)
183
+ # @val = Tk.ip_eval('tk_dialog ' + @path + ' ' + @title +
184
+ # ' {' + @message + '} ' + @bitmap + ' ' +
185
+ # String(default_button) + ' ' + @buttons.join(' ')).to_i
186
+ # @val = Tk.ip_eval(self.class::TkCommandNames[0] + ' ' + @path + ' ' +
187
+ # @title + ' {' + @message + '} ' + @bitmap + ' ' +
188
+ # String(default_button) + ' ' + @buttons.join(' ')).to_i
189
+ @val = Tk.ip_eval(array2tk_list([
190
+ self.class::TkCommandNames[0],
191
+ @path, @title, @message, @bitmap,
192
+ String(default_button)
193
+ ].concat(@buttons))).to_i
194
+ end
195
+
196
+ def value
197
+ # @var.value.to_i
198
+ @val
199
+ end
200
+
201
+ def name
202
+ (@val)? @buttons[@val]: nil
203
+ end
204
+
205
+ ############################################################
206
+ # #
207
+ # following methods should be overridden for each dialog #
208
+ # #
209
+ ############################################################
210
+ private
211
+
212
+ def title
213
+ # returns a title string of the dialog window
214
+ return "DIALOG"
215
+ end
216
+ def message
217
+ # returns a message text to display on the dialog
218
+ return "MESSAGE"
219
+ end
220
+ def message_config
221
+ # returns a Hash {option=>value, ...} for the message text
222
+ return nil
223
+ end
224
+ def msgframe_config
225
+ # returns a Hash {option=>value, ...} for the message text frame
226
+ return nil
227
+ end
228
+ def bitmap
229
+ # returns a bitmap name or a bitmap file path
230
+ # (@ + path ; e.g. '@/usr/share/bitmap/sample.xbm')
231
+ return "info"
232
+ end
233
+ def bitmap_config
234
+ # returns nil or a Hash {option=>value, ...} for the bitmap
235
+ return nil
236
+ end
237
+ def default_button
238
+ # returns a default button's number or name
239
+ # if nil or null string, set no-default
240
+ return 0
241
+ end
242
+ def buttons
243
+ #return "BUTTON1 BUTTON2"
244
+ return ["BUTTON1", "BUTTON2"]
245
+ end
246
+ def button_configs(num)
247
+ # returns nil / Proc / Array or Hash (see _set_button_config)
248
+ return nil
249
+ end
250
+ def btnframe_config
251
+ # returns nil or a Hash {option=>value, ...} for the button frame
252
+ return nil
253
+ end
254
+ def prev_command
255
+ # returns nil or a Proc
256
+ return nil
257
+ end
258
+ end
259
+ TkDialog2 = TkDialogObj
260
+
261
+ #
262
+ # TkDialog : with showing at initialize
263
+ #
264
+ class TkDialog < TkDialogObj
265
+ def self.show(*args)
266
+ self.new(*args)
267
+ end
268
+
269
+ def initialize(*args)
270
+ super(*args)
271
+ show
272
+ end
273
+ end
274
+
275
+
276
+ #
277
+ # dialog for warning
278
+ #
279
+ class TkWarningObj < TkDialogObj
280
+ def initialize(parent = nil, mes = nil)
281
+ if !mes
282
+ if parent.kind_of?(TkWindow)
283
+ mes = ""
284
+ else
285
+ mes = parent.to_s
286
+ parent = nil
287
+ end
288
+ end
289
+ super(parent, :message=>mes)
290
+ end
291
+
292
+ def show(mes = nil)
293
+ mes_bup = @message
294
+ @message = mes if mes
295
+ ret = super()
296
+ @message = mes_bup
297
+ ret
298
+ end
299
+
300
+ #######
301
+ private
302
+
303
+ def title
304
+ return "WARNING";
305
+ end
306
+ def bitmap
307
+ return "warning";
308
+ end
309
+ def default_button
310
+ return 0;
311
+ end
312
+ def buttons
313
+ return "OK";
314
+ end
315
+ end
316
+ TkWarning2 = TkWarningObj
317
+
318
+ class TkWarning < TkWarningObj
319
+ def self.show(*args)
320
+ self.new(*args)
321
+ end
322
+ def initialize(*args)
323
+ super(*args)
324
+ show
325
+ end
326
+ end
@@ -0,0 +1,187 @@
1
+ #
2
+ # tk/encodedstr.rb : Tk::EncodedString class
3
+ #
4
+ require 'tk'
5
+
6
+ ###########################################
7
+ # string with Tcl's encoding
8
+ ###########################################
9
+ module Tk
10
+ class EncodedString < String
11
+ Encoding = nil
12
+
13
+ def self.subst_utf_backslash(str)
14
+ # str.gsub(/\\u([0-9A-Fa-f]{1,4})/){[$1.hex].pack('U')}
15
+ TclTkLib._subst_UTF_backslash(str)
16
+ end
17
+ def self.utf_backslash(str)
18
+ self.subst_utf_backslash(str)
19
+ end
20
+
21
+ def self.subst_tk_backslash(str)
22
+ TclTkLib._subst_Tcl_backslash(str)
23
+ end
24
+
25
+ def self.utf_to_backslash_sequence(str)
26
+ str.unpack('U*').collect{|c|
27
+ if c <= 0xFF # ascii character
28
+ c.chr
29
+ else
30
+ format('\u%X', c)
31
+ end
32
+ }.join('')
33
+ end
34
+ def self.utf_to_backslash(str)
35
+ self.utf_to_backslash_sequence(str)
36
+ end
37
+
38
+ def self.to_backslash_sequence(str)
39
+ str.unpack('U*').collect{|c|
40
+ if c <= 0x1F # control character
41
+ case c
42
+ when 0x07; '\a'
43
+ when 0x08; '\b'
44
+ when 0x09; '\t'
45
+ when 0x0a; '\n'
46
+ when 0x0b; '\v'
47
+ when 0x0c; '\f'
48
+ when 0x0d; '\r'
49
+ else
50
+ format('\x%02X', c)
51
+ end
52
+ elsif c <= 0xFF # ascii character
53
+ c.chr
54
+ else
55
+ format('\u%X', c)
56
+ end
57
+ }.join('')
58
+ end
59
+
60
+ def self.new_with_utf_backslash(str, enc = nil)
61
+ self.new('', enc).replace(self.subst_utf_backslash(str))
62
+ end
63
+
64
+ def self.new_without_utf_backslash(str, enc = nil)
65
+ self.new('', enc).replace(str)
66
+ end
67
+
68
+ def initialize(str, enc = nil)
69
+ super(str)
70
+ # @encoding = ( enc ||
71
+ # ((self.class::Encoding)?
72
+ # self.class::Encoding : Tk.encoding_system) )
73
+ enc ||= (self.class::Encoding)?
74
+ self.class::Encoding :
75
+ ((Tk.encoding)? Tk.encoding : Tk.encoding_system)
76
+ if TkCore::WITH_ENCODING
77
+ unless encobj = Tk::Encoding::ENCODING_TABLE.get_obj(enc)
78
+ fail ArgumentError, "unsupported Tk encoding '#{enc}'"
79
+ end
80
+ self.force_encoding(encobj)
81
+ else
82
+ @encoding = enc
83
+ end
84
+ end
85
+
86
+ if TkCore::WITH_ENCODING
87
+ alias encoding_obj encoding
88
+ alias __encoding encoding
89
+ def encoding
90
+ Tk::Encoding::ENCODING_TABLE.get_name(super())
91
+ end
92
+ else
93
+ def encoding
94
+ @encoding
95
+ end
96
+ alias encoding_obj encoding
97
+ end
98
+
99
+ if TkCore::WITH_ENCODING
100
+ # wrapper methods for compatibility
101
+ alias __instance_variable_get instance_variable_get
102
+ alias __instance_variable_set instance_variable_set
103
+ alias __instance_eval instance_eval
104
+ alias __instance_variables instance_variables
105
+
106
+ def instance_variable_get(key)
107
+ if (key.to_s == '@encoding')
108
+ self.encoding
109
+ else
110
+ super(key)
111
+ end
112
+ end
113
+
114
+ def instance_variable_set(key, value)
115
+ if (key.to_s == '@encoding')
116
+ if value
117
+ self.force_encoding(value)
118
+ else
119
+ self.force_encoding(Tk::Encoding::UNKNOWN)
120
+ end
121
+ value
122
+ else
123
+ super(key, value)
124
+ end
125
+ end
126
+
127
+ def instance_eval(*args, &b)
128
+ old_enc = @encoding = self.encoding
129
+
130
+ ret = super(*args, &b)
131
+
132
+ if @encoding
133
+ if @encoding != old_enc
134
+ # modified by user
135
+ self.force_encoding(@encoding)
136
+ end
137
+ remove_instance_variable(:@encoding)
138
+ else
139
+ begin
140
+ remove_instance_variable(:@encoding)
141
+ # user sets to nil -> use current default
142
+ self.force_encoding(Tk.encoding)
143
+ rescue NameError
144
+ # removed by user -> ignore, because user don't use @encoding
145
+ end
146
+ end
147
+ ret
148
+ end
149
+ end
150
+
151
+ def instance_variables
152
+ ret = super()
153
+ ret << :@encoding # fake !!
154
+ ret
155
+ end
156
+ end
157
+ # def Tk.EncodedString(str, enc = nil)
158
+ # Tk::EncodedString.new(str, enc)
159
+ # end
160
+
161
+ ##################################
162
+
163
+ class BinaryString < EncodedString
164
+ Encoding = 'binary'.freeze
165
+ end
166
+ # def Tk.BinaryString(str)
167
+ # Tk::BinaryString.new(str)
168
+ # end
169
+
170
+ ##################################
171
+
172
+ class UTF8_String < EncodedString
173
+ Encoding = 'utf-8'.freeze
174
+ def self.new(str)
175
+ super(self.subst_utf_backslash(str))
176
+ end
177
+
178
+ def to_backslash_sequence
179
+ Tk::EncodedString.utf_to_backslash_sequence(self)
180
+ end
181
+ alias to_backslash to_backslash_sequence
182
+ end
183
+ # def Tk.UTF8_String(str)
184
+ # Tk::UTF8_String.new(str)
185
+ # end
186
+
187
+ end