tk_as_gem 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +22 -0
- data/Rakefile +11 -0
- data/VERSION +1 -0
- data/ext/ChangeLog.tkextlib +935 -0
- data/ext/MANUAL_tcltklib.eng +469 -0
- data/ext/MANUAL_tcltklib.eucj +579 -0
- data/ext/README.1st +19 -0
- data/ext/README.ActiveTcl +49 -0
- data/ext/README.fork +34 -0
- data/ext/README.macosx-aqua +67 -0
- data/ext/README.tcltklib +85 -0
- data/ext/depend +2 -0
- data/ext/extconf.rb +451 -0
- data/ext/lib/README +30 -0
- data/ext/lib/multi-tk.rb +3491 -0
- data/ext/lib/remote-tk.rb +530 -0
- data/ext/lib/tcltk.rb +367 -0
- data/ext/lib/tk.rb +5584 -0
- data/ext/lib/tk/after.rb +6 -0
- data/ext/lib/tk/autoload.rb +414 -0
- data/ext/lib/tk/bgerror.rb +29 -0
- data/ext/lib/tk/bindtag.rb +138 -0
- data/ext/lib/tk/button.rb +30 -0
- data/ext/lib/tk/canvas.rb +789 -0
- data/ext/lib/tk/canvastag.rb +434 -0
- data/ext/lib/tk/checkbutton.rb +30 -0
- data/ext/lib/tk/clipboard.rb +75 -0
- data/ext/lib/tk/clock.rb +71 -0
- data/ext/lib/tk/composite.rb +458 -0
- data/ext/lib/tk/console.rb +52 -0
- data/ext/lib/tk/dialog.rb +326 -0
- data/ext/lib/tk/encodedstr.rb +187 -0
- data/ext/lib/tk/entry.rb +119 -0
- data/ext/lib/tk/event.rb +542 -0
- data/ext/lib/tk/font.rb +2344 -0
- data/ext/lib/tk/frame.rb +131 -0
- data/ext/lib/tk/grid.rb +279 -0
- data/ext/lib/tk/image.rb +275 -0
- data/ext/lib/tk/itemconfig.rb +1215 -0
- data/ext/lib/tk/itemfont.rb +327 -0
- data/ext/lib/tk/kinput.rb +71 -0
- data/ext/lib/tk/label.rb +21 -0
- data/ext/lib/tk/labelframe.rb +29 -0
- data/ext/lib/tk/listbox.rb +282 -0
- data/ext/lib/tk/macpkg.rb +78 -0
- data/ext/lib/tk/menu.rb +681 -0
- data/ext/lib/tk/menubar.rb +131 -0
- data/ext/lib/tk/menuspec.rb +275 -0
- data/ext/lib/tk/message.rb +22 -0
- data/ext/lib/tk/mngfocus.rb +33 -0
- data/ext/lib/tk/msgcat.rb +296 -0
- data/ext/lib/tk/namespace.rb +551 -0
- data/ext/lib/tk/optiondb.rb +377 -0
- data/ext/lib/tk/optionobj.rb +212 -0
- data/ext/lib/tk/pack.rb +107 -0
- data/ext/lib/tk/package.rb +143 -0
- data/ext/lib/tk/palette.rb +55 -0
- data/ext/lib/tk/panedwindow.rb +258 -0
- data/ext/lib/tk/place.rb +128 -0
- data/ext/lib/tk/radiobutton.rb +71 -0
- data/ext/lib/tk/root.rb +95 -0
- data/ext/lib/tk/scale.rb +111 -0
- data/ext/lib/tk/scrollable.rb +82 -0
- data/ext/lib/tk/scrollbar.rb +177 -0
- data/ext/lib/tk/scrollbox.rb +39 -0
- data/ext/lib/tk/selection.rb +86 -0
- data/ext/lib/tk/spinbox.rb +119 -0
- data/ext/lib/tk/tagfont.rb +43 -0
- data/ext/lib/tk/text.rb +1596 -0
- data/ext/lib/tk/textimage.rb +88 -0
- data/ext/lib/tk/textmark.rb +204 -0
- data/ext/lib/tk/texttag.rb +318 -0
- data/ext/lib/tk/textwindow.rb +154 -0
- data/ext/lib/tk/timer.rb +669 -0
- data/ext/lib/tk/toplevel.rb +262 -0
- data/ext/lib/tk/ttk_selector.rb +76 -0
- data/ext/lib/tk/txtwin_abst.rb +39 -0
- data/ext/lib/tk/validation.rb +397 -0
- data/ext/lib/tk/variable.rb +1765 -0
- data/ext/lib/tk/virtevent.rb +139 -0
- data/ext/lib/tk/winfo.rb +392 -0
- data/ext/lib/tk/winpkg.rb +153 -0
- data/ext/lib/tk/wm.rb +552 -0
- data/ext/lib/tk/xim.rb +122 -0
- data/ext/lib/tkafter.rb +4 -0
- data/ext/lib/tkbgerror.rb +4 -0
- data/ext/lib/tkcanvas.rb +4 -0
- data/ext/lib/tkclass.rb +47 -0
- data/ext/lib/tkconsole.rb +4 -0
- data/ext/lib/tkdialog.rb +4 -0
- data/ext/lib/tkentry.rb +4 -0
- data/ext/lib/tkextlib/ICONS.rb +13 -0
- data/ext/lib/tkextlib/ICONS/icons.rb +129 -0
- data/ext/lib/tkextlib/ICONS/setup.rb +8 -0
- data/ext/lib/tkextlib/SUPPORT_STATUS +196 -0
- data/ext/lib/tkextlib/blt.rb +187 -0
- data/ext/lib/tkextlib/blt/barchart.rb +79 -0
- data/ext/lib/tkextlib/blt/bitmap.rb +112 -0
- data/ext/lib/tkextlib/blt/busy.rb +82 -0
- data/ext/lib/tkextlib/blt/component.rb +2145 -0
- data/ext/lib/tkextlib/blt/container.rb +28 -0
- data/ext/lib/tkextlib/blt/cutbuffer.rb +23 -0
- data/ext/lib/tkextlib/blt/dragdrop.rb +268 -0
- data/ext/lib/tkextlib/blt/eps.rb +32 -0
- data/ext/lib/tkextlib/blt/graph.rb +67 -0
- data/ext/lib/tkextlib/blt/htext.rb +111 -0
- data/ext/lib/tkextlib/blt/setup.rb +8 -0
- data/ext/lib/tkextlib/blt/spline.rb +23 -0
- data/ext/lib/tkextlib/blt/stripchart.rb +74 -0
- data/ext/lib/tkextlib/blt/table.rb +399 -0
- data/ext/lib/tkextlib/blt/tabnotebook.rb +110 -0
- data/ext/lib/tkextlib/blt/tabset.rb +500 -0
- data/ext/lib/tkextlib/blt/ted.rb +65 -0
- data/ext/lib/tkextlib/blt/tile.rb +21 -0
- data/ext/lib/tkextlib/blt/tile/button.rb +16 -0
- data/ext/lib/tkextlib/blt/tile/checkbutton.rb +17 -0
- data/ext/lib/tkextlib/blt/tile/frame.rb +16 -0
- data/ext/lib/tkextlib/blt/tile/label.rb +16 -0
- data/ext/lib/tkextlib/blt/tile/radiobutton.rb +17 -0
- data/ext/lib/tkextlib/blt/tile/scrollbar.rb +16 -0
- data/ext/lib/tkextlib/blt/tile/toplevel.rb +16 -0
- data/ext/lib/tkextlib/blt/tree.rb +1058 -0
- data/ext/lib/tkextlib/blt/treeview.rb +1272 -0
- data/ext/lib/tkextlib/blt/unix_dnd.rb +135 -0
- data/ext/lib/tkextlib/blt/vector.rb +256 -0
- data/ext/lib/tkextlib/blt/watch.rb +175 -0
- data/ext/lib/tkextlib/blt/win_printer.rb +61 -0
- data/ext/lib/tkextlib/blt/winop.rb +107 -0
- data/ext/lib/tkextlib/bwidget.rb +151 -0
- data/ext/lib/tkextlib/bwidget/arrowbutton.rb +21 -0
- data/ext/lib/tkextlib/bwidget/bitmap.rb +21 -0
- data/ext/lib/tkextlib/bwidget/button.rb +31 -0
- data/ext/lib/tkextlib/bwidget/buttonbox.rb +90 -0
- data/ext/lib/tkextlib/bwidget/combobox.rb +51 -0
- data/ext/lib/tkextlib/bwidget/dialog.rb +182 -0
- data/ext/lib/tkextlib/bwidget/dragsite.rb +31 -0
- data/ext/lib/tkextlib/bwidget/dropsite.rb +39 -0
- data/ext/lib/tkextlib/bwidget/dynamichelp.rb +63 -0
- data/ext/lib/tkextlib/bwidget/entry.rb +43 -0
- data/ext/lib/tkextlib/bwidget/label.rb +41 -0
- data/ext/lib/tkextlib/bwidget/labelentry.rb +80 -0
- data/ext/lib/tkextlib/bwidget/labelframe.rb +52 -0
- data/ext/lib/tkextlib/bwidget/listbox.rb +358 -0
- data/ext/lib/tkextlib/bwidget/mainframe.rb +128 -0
- data/ext/lib/tkextlib/bwidget/messagedlg.rb +192 -0
- data/ext/lib/tkextlib/bwidget/notebook.rb +166 -0
- data/ext/lib/tkextlib/bwidget/pagesmanager.rb +73 -0
- data/ext/lib/tkextlib/bwidget/panedwindow.rb +37 -0
- data/ext/lib/tkextlib/bwidget/panelframe.rb +57 -0
- data/ext/lib/tkextlib/bwidget/passwddlg.rb +44 -0
- data/ext/lib/tkextlib/bwidget/progressbar.rb +20 -0
- data/ext/lib/tkextlib/bwidget/progressdlg.rb +58 -0
- data/ext/lib/tkextlib/bwidget/scrollableframe.rb +40 -0
- data/ext/lib/tkextlib/bwidget/scrolledwindow.rb +38 -0
- data/ext/lib/tkextlib/bwidget/scrollview.rb +25 -0
- data/ext/lib/tkextlib/bwidget/selectcolor.rb +73 -0
- data/ext/lib/tkextlib/bwidget/selectfont.rb +86 -0
- data/ext/lib/tkextlib/bwidget/separator.rb +20 -0
- data/ext/lib/tkextlib/bwidget/setup.rb +8 -0
- data/ext/lib/tkextlib/bwidget/spinbox.rb +98 -0
- data/ext/lib/tkextlib/bwidget/statusbar.rb +52 -0
- data/ext/lib/tkextlib/bwidget/titleframe.rb +33 -0
- data/ext/lib/tkextlib/bwidget/tree.rb +453 -0
- data/ext/lib/tkextlib/bwidget/widget.rb +129 -0
- data/ext/lib/tkextlib/itcl.rb +13 -0
- data/ext/lib/tkextlib/itcl/incr_tcl.rb +178 -0
- data/ext/lib/tkextlib/itcl/setup.rb +13 -0
- data/ext/lib/tkextlib/itk.rb +13 -0
- data/ext/lib/tkextlib/itk/incr_tk.rb +446 -0
- data/ext/lib/tkextlib/itk/setup.rb +13 -0
- data/ext/lib/tkextlib/iwidgets.rb +94 -0
- data/ext/lib/tkextlib/iwidgets/buttonbox.rb +120 -0
- data/ext/lib/tkextlib/iwidgets/calendar.rb +125 -0
- data/ext/lib/tkextlib/iwidgets/canvasprintbox.rb +53 -0
- data/ext/lib/tkextlib/iwidgets/canvasprintdialog.rb +38 -0
- data/ext/lib/tkextlib/iwidgets/checkbox.rb +129 -0
- data/ext/lib/tkextlib/iwidgets/combobox.rb +104 -0
- data/ext/lib/tkextlib/iwidgets/dateentry.rb +20 -0
- data/ext/lib/tkextlib/iwidgets/datefield.rb +58 -0
- data/ext/lib/tkextlib/iwidgets/dialog.rb +20 -0
- data/ext/lib/tkextlib/iwidgets/dialogshell.rb +120 -0
- data/ext/lib/tkextlib/iwidgets/disjointlistbox.rb +50 -0
- data/ext/lib/tkextlib/iwidgets/entryfield.rb +185 -0
- data/ext/lib/tkextlib/iwidgets/extbutton.rb +40 -0
- data/ext/lib/tkextlib/iwidgets/extfileselectionbox.rb +46 -0
- data/ext/lib/tkextlib/iwidgets/extfileselectiondialog.rb +33 -0
- data/ext/lib/tkextlib/iwidgets/feedback.rb +35 -0
- data/ext/lib/tkextlib/iwidgets/fileselectionbox.rb +46 -0
- data/ext/lib/tkextlib/iwidgets/fileselectiondialog.rb +33 -0
- data/ext/lib/tkextlib/iwidgets/finddialog.rb +42 -0
- data/ext/lib/tkextlib/iwidgets/hierarchy.rb +365 -0
- data/ext/lib/tkextlib/iwidgets/hyperhelp.rb +50 -0
- data/ext/lib/tkextlib/iwidgets/labeledframe.rb +39 -0
- data/ext/lib/tkextlib/iwidgets/labeledwidget.rb +45 -0
- data/ext/lib/tkextlib/iwidgets/mainwindow.rb +67 -0
- data/ext/lib/tkextlib/iwidgets/menubar.rb +211 -0
- data/ext/lib/tkextlib/iwidgets/messagebox.rb +92 -0
- data/ext/lib/tkextlib/iwidgets/messagedialog.rb +20 -0
- data/ext/lib/tkextlib/iwidgets/notebook.rb +174 -0
- data/ext/lib/tkextlib/iwidgets/optionmenu.rb +92 -0
- data/ext/lib/tkextlib/iwidgets/panedwindow.rb +133 -0
- data/ext/lib/tkextlib/iwidgets/promptdialog.rb +131 -0
- data/ext/lib/tkextlib/iwidgets/pushbutton.rb +35 -0
- data/ext/lib/tkextlib/iwidgets/radiobox.rb +120 -0
- data/ext/lib/tkextlib/iwidgets/scopedobject.rb +24 -0
- data/ext/lib/tkextlib/iwidgets/scrolledcanvas.rb +353 -0
- data/ext/lib/tkextlib/iwidgets/scrolledframe.rb +59 -0
- data/ext/lib/tkextlib/iwidgets/scrolledhtml.rb +58 -0
- data/ext/lib/tkextlib/iwidgets/scrolledlistbox.rb +207 -0
- data/ext/lib/tkextlib/iwidgets/scrolledtext.rb +564 -0
- data/ext/lib/tkextlib/iwidgets/scrolledwidget.rb +20 -0
- data/ext/lib/tkextlib/iwidgets/selectionbox.rb +102 -0
- data/ext/lib/tkextlib/iwidgets/selectiondialog.rb +92 -0
- data/ext/lib/tkextlib/iwidgets/setup.rb +8 -0
- data/ext/lib/tkextlib/iwidgets/shell.rb +38 -0
- data/ext/lib/tkextlib/iwidgets/spindate.rb +48 -0
- data/ext/lib/tkextlib/iwidgets/spinint.rb +30 -0
- data/ext/lib/tkextlib/iwidgets/spinner.rb +169 -0
- data/ext/lib/tkextlib/iwidgets/spintime.rb +48 -0
- data/ext/lib/tkextlib/iwidgets/tabnotebook.rb +180 -0
- data/ext/lib/tkextlib/iwidgets/tabset.rb +144 -0
- data/ext/lib/tkextlib/iwidgets/timeentry.rb +25 -0
- data/ext/lib/tkextlib/iwidgets/timefield.rb +58 -0
- data/ext/lib/tkextlib/iwidgets/toolbar.rb +112 -0
- data/ext/lib/tkextlib/iwidgets/watch.rb +56 -0
- data/ext/lib/tkextlib/pkg_checker.rb +184 -0
- data/ext/lib/tkextlib/setup.rb +8 -0
- data/ext/lib/tkextlib/tcllib.rb +90 -0
- data/ext/lib/tkextlib/tcllib/README +135 -0
- data/ext/lib/tkextlib/tcllib/autoscroll.rb +158 -0
- data/ext/lib/tkextlib/tcllib/ctext.rb +160 -0
- data/ext/lib/tkextlib/tcllib/cursor.rb +97 -0
- data/ext/lib/tkextlib/tcllib/datefield.rb +57 -0
- data/ext/lib/tkextlib/tcllib/dialog.rb +84 -0
- data/ext/lib/tkextlib/tcllib/getstring.rb +134 -0
- data/ext/lib/tkextlib/tcllib/history.rb +73 -0
- data/ext/lib/tkextlib/tcllib/ico.rb +116 -0
- data/ext/lib/tkextlib/tcllib/ip_entry.rb +66 -0
- data/ext/lib/tkextlib/tcllib/panelframe.rb +72 -0
- data/ext/lib/tkextlib/tcllib/plotchart.rb +886 -0
- data/ext/lib/tkextlib/tcllib/ruler.rb +65 -0
- data/ext/lib/tkextlib/tcllib/screenruler.rb +68 -0
- data/ext/lib/tkextlib/tcllib/scrollwin.rb +61 -0
- data/ext/lib/tkextlib/tcllib/setup.rb +8 -0
- data/ext/lib/tkextlib/tcllib/style.rb +61 -0
- data/ext/lib/tkextlib/tcllib/superframe.rb +51 -0
- data/ext/lib/tkextlib/tcllib/swaplist.rb +150 -0
- data/ext/lib/tkextlib/tcllib/tablelist.rb +27 -0
- data/ext/lib/tkextlib/tcllib/tablelist_core.rb +782 -0
- data/ext/lib/tkextlib/tcllib/tablelist_tile.rb +25 -0
- data/ext/lib/tkextlib/tcllib/tkpiechart.rb +314 -0
- data/ext/lib/tkextlib/tcllib/tooltip.rb +95 -0
- data/ext/lib/tkextlib/tcllib/widget.rb +48 -0
- data/ext/lib/tkextlib/tclx.rb +13 -0
- data/ext/lib/tkextlib/tclx/setup.rb +8 -0
- data/ext/lib/tkextlib/tclx/tclx.rb +74 -0
- data/ext/lib/tkextlib/tile.rb +419 -0
- data/ext/lib/tkextlib/tile/dialog.rb +96 -0
- data/ext/lib/tkextlib/tile/setup.rb +8 -0
- data/ext/lib/tkextlib/tile/sizegrip.rb +29 -0
- data/ext/lib/tkextlib/tile/style.rb +316 -0
- data/ext/lib/tkextlib/tile/tbutton.rb +33 -0
- data/ext/lib/tkextlib/tile/tcheckbutton.rb +36 -0
- data/ext/lib/tkextlib/tile/tcombobox.rb +54 -0
- data/ext/lib/tkextlib/tile/tentry.rb +48 -0
- data/ext/lib/tkextlib/tile/tframe.rb +33 -0
- data/ext/lib/tkextlib/tile/tlabel.rb +33 -0
- data/ext/lib/tkextlib/tile/tlabelframe.rb +36 -0
- data/ext/lib/tkextlib/tile/tmenubutton.rb +36 -0
- data/ext/lib/tkextlib/tile/tnotebook.rb +139 -0
- data/ext/lib/tkextlib/tile/tpaned.rb +231 -0
- data/ext/lib/tkextlib/tile/tprogressbar.rb +56 -0
- data/ext/lib/tkextlib/tile/tradiobutton.rb +36 -0
- data/ext/lib/tkextlib/tile/treeview.rb +1239 -0
- data/ext/lib/tkextlib/tile/tscale.rb +53 -0
- data/ext/lib/tkextlib/tile/tscrollbar.rb +54 -0
- data/ext/lib/tkextlib/tile/tseparator.rb +33 -0
- data/ext/lib/tkextlib/tile/tsquare.rb +30 -0
- data/ext/lib/tkextlib/tkDND.rb +18 -0
- data/ext/lib/tkextlib/tkDND/setup.rb +8 -0
- data/ext/lib/tkextlib/tkDND/shape.rb +125 -0
- data/ext/lib/tkextlib/tkDND/tkdnd.rb +182 -0
- data/ext/lib/tkextlib/tkHTML.rb +13 -0
- data/ext/lib/tkextlib/tkHTML/htmlwidget.rb +453 -0
- data/ext/lib/tkextlib/tkHTML/setup.rb +8 -0
- data/ext/lib/tkextlib/tkimg.rb +36 -0
- data/ext/lib/tkextlib/tkimg/README +26 -0
- data/ext/lib/tkextlib/tkimg/bmp.rb +33 -0
- data/ext/lib/tkextlib/tkimg/gif.rb +33 -0
- data/ext/lib/tkextlib/tkimg/ico.rb +33 -0
- data/ext/lib/tkextlib/tkimg/jpeg.rb +33 -0
- data/ext/lib/tkextlib/tkimg/pcx.rb +33 -0
- data/ext/lib/tkextlib/tkimg/pixmap.rb +44 -0
- data/ext/lib/tkextlib/tkimg/png.rb +33 -0
- data/ext/lib/tkextlib/tkimg/ppm.rb +33 -0
- data/ext/lib/tkextlib/tkimg/ps.rb +33 -0
- data/ext/lib/tkextlib/tkimg/setup.rb +8 -0
- data/ext/lib/tkextlib/tkimg/sgi.rb +33 -0
- data/ext/lib/tkextlib/tkimg/sun.rb +33 -0
- data/ext/lib/tkextlib/tkimg/tga.rb +33 -0
- data/ext/lib/tkextlib/tkimg/tiff.rb +33 -0
- data/ext/lib/tkextlib/tkimg/window.rb +33 -0
- data/ext/lib/tkextlib/tkimg/xbm.rb +33 -0
- data/ext/lib/tkextlib/tkimg/xpm.rb +33 -0
- data/ext/lib/tkextlib/tktable.rb +14 -0
- data/ext/lib/tkextlib/tktable/setup.rb +8 -0
- data/ext/lib/tkextlib/tktable/tktable.rb +957 -0
- data/ext/lib/tkextlib/tktrans.rb +14 -0
- data/ext/lib/tkextlib/tktrans/setup.rb +8 -0
- data/ext/lib/tkextlib/tktrans/tktrans.rb +64 -0
- data/ext/lib/tkextlib/treectrl.rb +13 -0
- data/ext/lib/tkextlib/treectrl/setup.rb +8 -0
- data/ext/lib/tkextlib/treectrl/tktreectrl.rb +2461 -0
- data/ext/lib/tkextlib/trofs.rb +13 -0
- data/ext/lib/tkextlib/trofs/setup.rb +8 -0
- data/ext/lib/tkextlib/trofs/trofs.rb +51 -0
- data/ext/lib/tkextlib/version.rb +6 -0
- data/ext/lib/tkextlib/vu.rb +48 -0
- data/ext/lib/tkextlib/vu/bargraph.rb +61 -0
- data/ext/lib/tkextlib/vu/charts.rb +53 -0
- data/ext/lib/tkextlib/vu/dial.rb +102 -0
- data/ext/lib/tkextlib/vu/pie.rb +282 -0
- data/ext/lib/tkextlib/vu/setup.rb +8 -0
- data/ext/lib/tkextlib/vu/spinbox.rb +22 -0
- data/ext/lib/tkextlib/winico.rb +14 -0
- data/ext/lib/tkextlib/winico/setup.rb +8 -0
- data/ext/lib/tkextlib/winico/winico.rb +224 -0
- data/ext/lib/tkfont.rb +4 -0
- data/ext/lib/tkmacpkg.rb +4 -0
- data/ext/lib/tkmenubar.rb +4 -0
- data/ext/lib/tkmngfocus.rb +4 -0
- data/ext/lib/tkpalette.rb +4 -0
- data/ext/lib/tkscrollbox.rb +4 -0
- data/ext/lib/tktext.rb +4 -0
- data/ext/lib/tkvirtevent.rb +4 -0
- data/ext/lib/tkwinpkg.rb +4 -0
- data/ext/old-README.tcltklib.eucj +159 -0
- data/ext/stubs.c +531 -0
- data/ext/stubs.h +33 -0
- data/ext/tcltklib.c +10155 -0
- data/ext/tkutil/.cvsignore +3 -0
- data/ext/tkutil/depend +1 -0
- data/ext/tkutil/extconf.rb +14 -0
- data/ext/tkutil/tkutil.c +1789 -0
- metadata +418 -0
@@ -0,0 +1,177 @@
|
|
1
|
+
#
|
2
|
+
# tk/scrollbar.rb : treat scrollbar widget
|
3
|
+
#
|
4
|
+
require 'tk'
|
5
|
+
|
6
|
+
class Tk::Scrollbar<TkWindow
|
7
|
+
TkCommandNames = ['scrollbar'.freeze].freeze
|
8
|
+
WidgetClassName = 'Scrollbar'.freeze
|
9
|
+
WidgetClassNames[WidgetClassName] = self
|
10
|
+
|
11
|
+
def create_self(keys)
|
12
|
+
@assigned = []
|
13
|
+
@scroll_proc = proc{|*args|
|
14
|
+
if self.orient == 'horizontal'
|
15
|
+
@assigned.each{|w| w.xview(*args)}
|
16
|
+
else # 'vertical'
|
17
|
+
@assigned.each{|w| w.yview(*args)}
|
18
|
+
end
|
19
|
+
}
|
20
|
+
|
21
|
+
if keys and keys != None
|
22
|
+
unless TkConfigMethod.__IGNORE_UNKNOWN_CONFIGURE_OPTION__
|
23
|
+
#tk_call_without_enc('scrollbar', @path, *hash_kv(keys, true))
|
24
|
+
tk_call_without_enc(self.class::TkCommandNames[0], @path,
|
25
|
+
*hash_kv(keys, true))
|
26
|
+
else
|
27
|
+
begin
|
28
|
+
tk_call_without_enc(self.class::TkCommandNames[0], @path,
|
29
|
+
*hash_kv(keys, true))
|
30
|
+
rescue
|
31
|
+
tk_call_without_enc(self.class::TkCommandNames[0], @path)
|
32
|
+
keys = __check_available_configure_options(keys)
|
33
|
+
unless keys.empty?
|
34
|
+
begin
|
35
|
+
tk_call_without_enc('destroy', @path)
|
36
|
+
rescue
|
37
|
+
# cannot destroy
|
38
|
+
configure(keys)
|
39
|
+
else
|
40
|
+
# re-create widget
|
41
|
+
tk_call_without_enc(self.class::TkCommandNames[0], @path,
|
42
|
+
*hash_kv(keys, true))
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
else
|
48
|
+
#tk_call_without_enc('scrollbar', @path)
|
49
|
+
tk_call_without_enc(self.class::TkCommandNames[0], @path)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
private :create_self
|
53
|
+
|
54
|
+
def propagate_set(src_win, first, last)
|
55
|
+
self.set(first, last)
|
56
|
+
if self.orient == 'horizontal'
|
57
|
+
@assigned.each{|w| w.xview('moveto', first) if w != src_win}
|
58
|
+
else # 'vertical'
|
59
|
+
@assigned.each{|w| w.yview('moveto', first) if w != src_win}
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def assign(*wins)
|
64
|
+
begin
|
65
|
+
self.command(@scroll_proc) if self.cget('command').cmd != @scroll_proc
|
66
|
+
rescue Exception
|
67
|
+
self.command(@scroll_proc)
|
68
|
+
end
|
69
|
+
orient = self.orient
|
70
|
+
wins.each{|w|
|
71
|
+
@assigned << w unless @assigned.index(w)
|
72
|
+
if orient == 'horizontal'
|
73
|
+
w.xscrollcommand proc{|first, last| self.propagate_set(w, first, last)}
|
74
|
+
else # 'vertical'
|
75
|
+
w.yscrollcommand proc{|first, last| self.propagate_set(w, first, last)}
|
76
|
+
end
|
77
|
+
}
|
78
|
+
Tk.update # avoid scrollbar trouble
|
79
|
+
self
|
80
|
+
end
|
81
|
+
|
82
|
+
def assigned_list
|
83
|
+
begin
|
84
|
+
return @assigned.dup if self.cget('command').cmd == @scroll_proc
|
85
|
+
rescue Exception
|
86
|
+
end
|
87
|
+
fail RuntimeError, "not depend on the assigned_list"
|
88
|
+
end
|
89
|
+
|
90
|
+
def configure(*args)
|
91
|
+
ret = super(*args)
|
92
|
+
# Tk.update # avoid scrollbar trouble
|
93
|
+
ret
|
94
|
+
end
|
95
|
+
|
96
|
+
#def delta(deltax=None, deltay=None)
|
97
|
+
def delta(deltax, deltay)
|
98
|
+
number(tk_send_without_enc('delta', deltax, deltay))
|
99
|
+
end
|
100
|
+
|
101
|
+
#def fraction(x=None, y=None)
|
102
|
+
def fraction(x, y)
|
103
|
+
number(tk_send_without_enc('fraction', x, y))
|
104
|
+
end
|
105
|
+
|
106
|
+
def identify(x, y)
|
107
|
+
tk_send_without_enc('identify', x, y)
|
108
|
+
end
|
109
|
+
|
110
|
+
def get
|
111
|
+
#ary1 = tk_send('get').split
|
112
|
+
#ary2 = []
|
113
|
+
#for i in ary1
|
114
|
+
# ary2.push number(i)
|
115
|
+
#end
|
116
|
+
#ary2
|
117
|
+
list(tk_send_without_enc('get'))
|
118
|
+
end
|
119
|
+
|
120
|
+
def set(first, last)
|
121
|
+
tk_send_without_enc('set', first, last)
|
122
|
+
self
|
123
|
+
end
|
124
|
+
|
125
|
+
def activate(element=None)
|
126
|
+
tk_send_without_enc('activate', element)
|
127
|
+
end
|
128
|
+
|
129
|
+
def moveto(fraction)
|
130
|
+
tk_send_without_enc('moveto', fraction)
|
131
|
+
self
|
132
|
+
end
|
133
|
+
|
134
|
+
def scroll(*args)
|
135
|
+
tk_send_without_enc('scroll', *args)
|
136
|
+
self
|
137
|
+
end
|
138
|
+
|
139
|
+
def scroll_units(num)
|
140
|
+
scroll(num, 'units')
|
141
|
+
self
|
142
|
+
end
|
143
|
+
|
144
|
+
def scroll_pages(num)
|
145
|
+
scroll(num, 'pages')
|
146
|
+
self
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
#TkScrollbar = Tk::Scrollbar unless Object.const_defined? :TkScrollbar
|
151
|
+
Tk.__set_toplevel_aliases__(:Tk, Tk::Scrollbar, :TkScrollbar)
|
152
|
+
|
153
|
+
|
154
|
+
class Tk::XScrollbar<Tk::Scrollbar
|
155
|
+
def create_self(keys)
|
156
|
+
keys = {} unless keys
|
157
|
+
keys['orient'] = 'horizontal'
|
158
|
+
super(keys)
|
159
|
+
end
|
160
|
+
private :create_self
|
161
|
+
end
|
162
|
+
|
163
|
+
#TkXScrollbar = Tk::XScrollbar unless Object.const_defined? :TkXScrollbar
|
164
|
+
Tk.__set_toplevel_aliases__(:Tk, Tk::XScrollbar, :TkXScrollbar)
|
165
|
+
|
166
|
+
|
167
|
+
class Tk::YScrollbar<Tk::Scrollbar
|
168
|
+
def create_self(keys)
|
169
|
+
keys = {} unless keys
|
170
|
+
keys['orient'] = 'vertical'
|
171
|
+
super(keys)
|
172
|
+
end
|
173
|
+
private :create_self
|
174
|
+
end
|
175
|
+
|
176
|
+
#TkYScrollbar = Tk::YScrollbar unless Object.const_defined? :TkYScrollbar
|
177
|
+
Tk.__set_toplevel_aliases__(:Tk, Tk::YScrollbar, :TkYScrollbar)
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#
|
2
|
+
# tk/scrollbox.rb - Tk Listbox with Scrollbar
|
3
|
+
# as an example of Composite Widget
|
4
|
+
# by Yukihiro Matsumoto <matz@netlab.co.jp>
|
5
|
+
#
|
6
|
+
require 'tk'
|
7
|
+
require 'tk/listbox'
|
8
|
+
|
9
|
+
class TkScrollbox<Tk::Listbox
|
10
|
+
include TkComposite
|
11
|
+
def initialize_composite(keys=nil)
|
12
|
+
#list = Tk::Listbox.new(@frame)
|
13
|
+
# -> use current TkListbox class
|
14
|
+
list = TkListbox.new(@frame)
|
15
|
+
#scroll = Tk::Scrollbar.new(@frame)
|
16
|
+
# -> use current TkScrollbar class
|
17
|
+
scroll = TkScrollbar.new(@frame)
|
18
|
+
@path = list.path
|
19
|
+
|
20
|
+
=begin
|
21
|
+
list.configure 'yscroll', scroll.path+" set"
|
22
|
+
list.pack 'side'=>'left','fill'=>'both','expand'=>'yes'
|
23
|
+
scroll.configure 'command', list.path+" yview"
|
24
|
+
scroll.pack 'side'=>'right','fill'=>'y'
|
25
|
+
=end
|
26
|
+
list.yscrollbar(scroll)
|
27
|
+
list.pack('side'=>'left','fill'=>'both','expand'=>'yes')
|
28
|
+
scroll.pack('side'=>'right','fill'=>'y')
|
29
|
+
|
30
|
+
delegate('DEFAULT', list)
|
31
|
+
delegate('foreground', list)
|
32
|
+
delegate('background', list, scroll)
|
33
|
+
delegate('borderwidth', @frame)
|
34
|
+
delegate('relief', @frame)
|
35
|
+
|
36
|
+
configure keys if keys
|
37
|
+
end
|
38
|
+
private :initialize_composite
|
39
|
+
end
|
@@ -0,0 +1,86 @@
|
|
1
|
+
#
|
2
|
+
# tk/selection.rb : control selection
|
3
|
+
#
|
4
|
+
require 'tk'
|
5
|
+
|
6
|
+
module TkSelection
|
7
|
+
include Tk
|
8
|
+
extend Tk
|
9
|
+
|
10
|
+
TkCommandNames = ['selection'.freeze].freeze
|
11
|
+
|
12
|
+
def self.clear(sel=nil)
|
13
|
+
if sel
|
14
|
+
tk_call_without_enc('selection', 'clear', '-selection', sel)
|
15
|
+
else
|
16
|
+
tk_call_without_enc('selection', 'clear')
|
17
|
+
end
|
18
|
+
end
|
19
|
+
def self.clear_on_display(win, sel=nil)
|
20
|
+
if sel
|
21
|
+
tk_call_without_enc('selection', 'clear',
|
22
|
+
'-displayof', win, '-selection', sel)
|
23
|
+
else
|
24
|
+
tk_call_without_enc('selection', 'clear', '-displayof', win)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
def clear(sel=nil)
|
28
|
+
TkSelection.clear_on_display(self, sel)
|
29
|
+
self
|
30
|
+
end
|
31
|
+
|
32
|
+
def self.get(keys=nil)
|
33
|
+
#tk_call('selection', 'get', *hash_kv(keys))
|
34
|
+
_fromUTF8(tk_call_without_enc('selection', 'get', *hash_kv(keys)))
|
35
|
+
end
|
36
|
+
def self.get_on_display(win, keys=nil)
|
37
|
+
#tk_call('selection', 'get', '-displayof', win, *hash_kv(keys))
|
38
|
+
_fromUTF8(tk_call_without_enc('selection', 'get', '-displayof',
|
39
|
+
win, *hash_kv(keys)))
|
40
|
+
end
|
41
|
+
def get(keys=nil)
|
42
|
+
TkSelection.get_on_display(self, sel)
|
43
|
+
end
|
44
|
+
|
45
|
+
def self.handle(win, func=Proc.new, keys=nil, &b)
|
46
|
+
if func.kind_of?(Hash) && keys == nil
|
47
|
+
keys = func
|
48
|
+
func = Proc.new(&b)
|
49
|
+
end
|
50
|
+
args = ['selection', 'handle']
|
51
|
+
args.concat(hash_kv(keys))
|
52
|
+
args.concat([win, func])
|
53
|
+
tk_call_without_enc(*args)
|
54
|
+
end
|
55
|
+
def handle(func=Proc.new, keys=nil, &b)
|
56
|
+
TkSelection.handle(self, func, keys, &b)
|
57
|
+
end
|
58
|
+
|
59
|
+
def self.get_owner(sel=nil)
|
60
|
+
if sel
|
61
|
+
window(tk_call_without_enc('selection', 'own', '-selection', sel))
|
62
|
+
else
|
63
|
+
window(tk_call_without_enc('selection', 'own'))
|
64
|
+
end
|
65
|
+
end
|
66
|
+
def self.get_owner_on_display(win, sel=nil)
|
67
|
+
if sel
|
68
|
+
window(tk_call_without_enc('selection', 'own',
|
69
|
+
'-displayof', win, '-selection', sel))
|
70
|
+
else
|
71
|
+
window(tk_call_without_enc('selection', 'own', '-displayof', win))
|
72
|
+
end
|
73
|
+
end
|
74
|
+
def get_owner(sel=nil)
|
75
|
+
TkSelection.get_owner_on_display(self, sel)
|
76
|
+
self
|
77
|
+
end
|
78
|
+
|
79
|
+
def self.set_owner(win, keys=nil)
|
80
|
+
tk_call_without_enc('selection', 'own', *(hash_kv(keys) << win))
|
81
|
+
end
|
82
|
+
def set_owner(keys=nil)
|
83
|
+
TkSelection.set_owner(self, keys)
|
84
|
+
self
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,119 @@
|
|
1
|
+
#
|
2
|
+
# tk/spinbox.rb - Tk spinbox classes
|
3
|
+
# by Yukihiro Matsumoto <matz@caelum.co.jp>
|
4
|
+
#
|
5
|
+
require 'tk'
|
6
|
+
require 'tk/entry'
|
7
|
+
|
8
|
+
class Tk::Spinbox<Tk::Entry
|
9
|
+
TkCommandNames = ['spinbox'.freeze].freeze
|
10
|
+
WidgetClassName = 'Spinbox'.freeze
|
11
|
+
WidgetClassNames[WidgetClassName] = self
|
12
|
+
|
13
|
+
class SpinCommand < TkValidateCommand
|
14
|
+
class ValidateArgs < TkUtil::CallbackSubst
|
15
|
+
KEY_TBL = [
|
16
|
+
[ ?d, ?s, :direction ],
|
17
|
+
[ ?s, ?e, :current ],
|
18
|
+
[ ?W, ?w, :widget ],
|
19
|
+
nil
|
20
|
+
]
|
21
|
+
|
22
|
+
PROC_TBL = [
|
23
|
+
[ ?s, TkComm.method(:string) ],
|
24
|
+
[ ?w, TkComm.method(:window) ],
|
25
|
+
|
26
|
+
[ ?e, proc{|val|
|
27
|
+
#enc = Tk.encoding
|
28
|
+
enc = ((Tk.encoding)? Tk.encoding : Tk.encoding_system)
|
29
|
+
if enc
|
30
|
+
Tk.fromUTF8(TkComm::string(val), enc)
|
31
|
+
else
|
32
|
+
TkComm::string(val)
|
33
|
+
end
|
34
|
+
}
|
35
|
+
],
|
36
|
+
|
37
|
+
nil
|
38
|
+
]
|
39
|
+
|
40
|
+
=begin
|
41
|
+
# for Ruby m17n :: ?x --> String --> char-code ( getbyte(0) )
|
42
|
+
KEY_TBL.map!{|inf|
|
43
|
+
if inf.kind_of?(Array)
|
44
|
+
inf[0] = inf[0].getbyte(0) if inf[0].kind_of?(String)
|
45
|
+
inf[1] = inf[1].getbyte(0) if inf[1].kind_of?(String)
|
46
|
+
end
|
47
|
+
inf
|
48
|
+
}
|
49
|
+
|
50
|
+
PROC_TBL.map!{|inf|
|
51
|
+
if inf.kind_of?(Array)
|
52
|
+
inf[0] = inf[0].getbyte(0) if inf[0].kind_of?(String)
|
53
|
+
end
|
54
|
+
inf
|
55
|
+
}
|
56
|
+
=end
|
57
|
+
|
58
|
+
_setup_subst_table(KEY_TBL, PROC_TBL);
|
59
|
+
|
60
|
+
def self.ret_val(val)
|
61
|
+
(val)? '1': '0'
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def self._config_keys
|
66
|
+
['command']
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
def __validation_class_list
|
71
|
+
super() << SpinCommand
|
72
|
+
end
|
73
|
+
|
74
|
+
Tk::ValidateConfigure.__def_validcmd(binding, SpinCommand)
|
75
|
+
|
76
|
+
#def create_self(keys)
|
77
|
+
# tk_call_without_enc('spinbox', @path)
|
78
|
+
# if keys and keys != None
|
79
|
+
# configure(keys)
|
80
|
+
# end
|
81
|
+
#end
|
82
|
+
#private :create_self
|
83
|
+
|
84
|
+
def __boolval_optkeys
|
85
|
+
super() << 'wrap'
|
86
|
+
end
|
87
|
+
private :__boolval_optkeys
|
88
|
+
|
89
|
+
def __strval_optkeys
|
90
|
+
super() << 'buttonbackground' << 'format'
|
91
|
+
end
|
92
|
+
private :__strval_optkeys
|
93
|
+
|
94
|
+
def __listval_optkeys
|
95
|
+
super() << 'values'
|
96
|
+
end
|
97
|
+
private :__listval_optkeys
|
98
|
+
|
99
|
+
def identify(x, y)
|
100
|
+
tk_send_without_enc('identify', x, y)
|
101
|
+
end
|
102
|
+
|
103
|
+
def spinup
|
104
|
+
tk_send_without_enc('invoke', 'spinup')
|
105
|
+
self
|
106
|
+
end
|
107
|
+
|
108
|
+
def spindown
|
109
|
+
tk_send_without_enc('invoke', 'spindown')
|
110
|
+
self
|
111
|
+
end
|
112
|
+
|
113
|
+
def set(str)
|
114
|
+
_fromUTF8(tk_send_without_enc('set', _get_eval_enc_str(str)))
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
#TkSpinbox = Tk::Spinbox unless Object.const_defined? :TkSpinbox
|
119
|
+
Tk.__set_toplevel_aliases__(:Tk, Tk::Spinbox, :TkSpinbox)
|
@@ -0,0 +1,43 @@
|
|
1
|
+
#
|
2
|
+
# tk/tagfont.rb : control font of tags
|
3
|
+
#
|
4
|
+
require 'tk'
|
5
|
+
|
6
|
+
module TkTreatTagFont
|
7
|
+
def font_configinfo
|
8
|
+
@parent.tagfont_configinfo(@id)
|
9
|
+
end
|
10
|
+
# alias font font_configinfo
|
11
|
+
|
12
|
+
def font_configure(slot)
|
13
|
+
@parent.tagfont_configure(@id, slot)
|
14
|
+
self
|
15
|
+
end
|
16
|
+
|
17
|
+
def latinfont_configure(ltn, keys=nil)
|
18
|
+
@parent.latintagfont_configure(@id, ltn, keys)
|
19
|
+
self
|
20
|
+
end
|
21
|
+
alias asciifont_configure latinfont_configure
|
22
|
+
|
23
|
+
def kanjifont_configure(knj, keys=nil)
|
24
|
+
@parent.kanjitagfont_configure(@id, ltn, keys)
|
25
|
+
self
|
26
|
+
end
|
27
|
+
|
28
|
+
def font_copy(win, wintag=nil)
|
29
|
+
@parent.tagfont_copy(@id, win, wintag)
|
30
|
+
self
|
31
|
+
end
|
32
|
+
|
33
|
+
def latinfont_copy(win, wintag=nil)
|
34
|
+
@parent.latintagfont_copy(@id, win, wintag)
|
35
|
+
self
|
36
|
+
end
|
37
|
+
alias asciifont_copy latinfont_copy
|
38
|
+
|
39
|
+
def kanjifont_copy(win, wintag=nil)
|
40
|
+
@parent.kanjitagfont_copy(@id, win, wintag)
|
41
|
+
self
|
42
|
+
end
|
43
|
+
end
|