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,35 @@
|
|
1
|
+
#
|
2
|
+
# tkextlib/iwidgets/pushbutton.rb
|
3
|
+
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
4
|
+
#
|
5
|
+
|
6
|
+
require 'tk'
|
7
|
+
require 'tkextlib/iwidgets.rb'
|
8
|
+
|
9
|
+
module Tk
|
10
|
+
module Iwidgets
|
11
|
+
class Pushbutton < Tk::Itk::Widget
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class Tk::Iwidgets::Pushbutton
|
17
|
+
TkCommandNames = ['::iwidgets::pushbutton'.freeze].freeze
|
18
|
+
WidgetClassName = 'Pushbutton'.freeze
|
19
|
+
WidgetClassNames[WidgetClassName] = self
|
20
|
+
|
21
|
+
def __boolval_optkeys
|
22
|
+
super() << 'defaultring'
|
23
|
+
end
|
24
|
+
private :__boolval_optkeys
|
25
|
+
|
26
|
+
def invoke
|
27
|
+
tk_call_without_enc(@path, 'invoke')
|
28
|
+
self
|
29
|
+
end
|
30
|
+
|
31
|
+
def flash
|
32
|
+
tk_call_without_enc(@path, 'flash')
|
33
|
+
self
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
#
|
2
|
+
# tkextlib/iwidgets/radiobox.rb
|
3
|
+
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
4
|
+
#
|
5
|
+
|
6
|
+
require 'tk'
|
7
|
+
require 'tkextlib/iwidgets.rb'
|
8
|
+
|
9
|
+
module Tk
|
10
|
+
module Iwidgets
|
11
|
+
class Radiobox < Tk::Iwidgets::Labeledframe
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class Tk::Iwidgets::Radiobox
|
17
|
+
TkCommandNames = ['::iwidgets::radiobox'.freeze].freeze
|
18
|
+
WidgetClassName = 'Radiobox'.freeze
|
19
|
+
WidgetClassNames[WidgetClassName] = self
|
20
|
+
|
21
|
+
####################################
|
22
|
+
|
23
|
+
include TkItemConfigMethod
|
24
|
+
|
25
|
+
def __item_cget_cmd(id)
|
26
|
+
[self.path, 'buttoncget', id]
|
27
|
+
end
|
28
|
+
private :__item_cget_cmd
|
29
|
+
|
30
|
+
def __item_config_cmd(id)
|
31
|
+
[self.path, 'buttonconfigure', id]
|
32
|
+
end
|
33
|
+
private :__item_config_cmd
|
34
|
+
|
35
|
+
def __item_boolval_optkeys(id)
|
36
|
+
super(id) << 'defaultring'
|
37
|
+
end
|
38
|
+
private :__item_boolval_optkeys
|
39
|
+
|
40
|
+
def tagid(tagOrId)
|
41
|
+
if tagOrId.kind_of?(Tk::Itk::Component)
|
42
|
+
tagOrId.name
|
43
|
+
else
|
44
|
+
#_get_eval_string(tagOrId)
|
45
|
+
tagOrId
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
alias buttoncget itemcget
|
50
|
+
alias buttoncget_strict itemcget_strict
|
51
|
+
alias buttonconfigure itemconfigure
|
52
|
+
alias buttonconfiginfo itemconfiginfo
|
53
|
+
alias current_buttonconfiginfo current_itemconfiginfo
|
54
|
+
|
55
|
+
private :itemcget, :itemcget_strict
|
56
|
+
private :itemconfigure, :itemconfiginfo, :current_itemconfiginfo
|
57
|
+
|
58
|
+
####################################
|
59
|
+
|
60
|
+
def add(tag=nil, keys={})
|
61
|
+
if tag.kind_of?(Hash)
|
62
|
+
keys = tag
|
63
|
+
tag = nil
|
64
|
+
end
|
65
|
+
if tag
|
66
|
+
tag = Tk::Itk::Component.new(self, tagid(tag))
|
67
|
+
else
|
68
|
+
tag = Tk::Itk::Component.new(self)
|
69
|
+
end
|
70
|
+
tk_call(@path, 'add', tagid(tag), *hash_kv(keys))
|
71
|
+
tag
|
72
|
+
end
|
73
|
+
|
74
|
+
def delete(idx)
|
75
|
+
tk_call(@path, 'delete', index(idx))
|
76
|
+
self
|
77
|
+
end
|
78
|
+
|
79
|
+
def deselect(idx)
|
80
|
+
tk_call(@path, 'deselect', index(idx))
|
81
|
+
self
|
82
|
+
end
|
83
|
+
|
84
|
+
def flash(idx)
|
85
|
+
tk_call(@path, 'flash', index(idx))
|
86
|
+
self
|
87
|
+
end
|
88
|
+
|
89
|
+
def get_tag
|
90
|
+
((tag = tk_call_without_enc(@path, 'get')).empty?)? nil: tag
|
91
|
+
end
|
92
|
+
alias get get_tag
|
93
|
+
|
94
|
+
def get_obj
|
95
|
+
(tag = get_tag)? Tk::Itk::Component.id2obj(self, tag): nil
|
96
|
+
end
|
97
|
+
|
98
|
+
def index(idx)
|
99
|
+
number(tk_call(@path, 'index', tagid(idx)))
|
100
|
+
end
|
101
|
+
|
102
|
+
def insert(idx, tag=nil, keys={})
|
103
|
+
if tag.kind_of?(Hash)
|
104
|
+
keys = tag
|
105
|
+
tag = nil
|
106
|
+
end
|
107
|
+
if tag
|
108
|
+
tag = Tk::Itk::Component.new(self, tagid(tag))
|
109
|
+
else
|
110
|
+
tag = Tk::Itk::Component.new(self)
|
111
|
+
end
|
112
|
+
tk_call(@path, 'insert', index(idx), tagid(tag), *hash_kv(keys))
|
113
|
+
tag
|
114
|
+
end
|
115
|
+
|
116
|
+
def select(idx)
|
117
|
+
tk_call(@path, 'select', index(idx))
|
118
|
+
self
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#
|
2
|
+
# tkextlib/iwidgets/buttonbox.rb
|
3
|
+
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
4
|
+
#
|
5
|
+
|
6
|
+
require 'tk'
|
7
|
+
require 'tkextlib/iwidgets.rb'
|
8
|
+
|
9
|
+
module Tk
|
10
|
+
module Iwidgets
|
11
|
+
class Scopedobject < TkObject
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
class Tk::Iwidgets::Scopedobject
|
17
|
+
TkCommandNames = ['::iwidgets::scopedobject'.freeze].freeze
|
18
|
+
WidgetClassName = 'Scopedobject'.freeze
|
19
|
+
WidgetClassNames[WidgetClassName] = self
|
20
|
+
|
21
|
+
def initialize(obj_name, keys={})
|
22
|
+
@path = tk_call(self.class::TkCommandNames[0], obj_name, *hash_kv(keys))
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,353 @@
|
|
1
|
+
#
|
2
|
+
# tkextlib/iwidgets/scrolledcanvas.rb
|
3
|
+
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
|
4
|
+
#
|
5
|
+
|
6
|
+
require 'tk'
|
7
|
+
require 'tk/canvas'
|
8
|
+
require 'tkextlib/iwidgets.rb'
|
9
|
+
|
10
|
+
module Tk
|
11
|
+
module Iwidgets
|
12
|
+
class Scrolledcanvas < Tk::Iwidgets::Scrolledwidget
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
class Tk::Iwidgets::Scrolledcanvas
|
18
|
+
TkCommandNames = ['::iwidgets::scrolledcanvas'.freeze].freeze
|
19
|
+
WidgetClassName = 'Scrolledcanvas'.freeze
|
20
|
+
WidgetClassNames[WidgetClassName] = self
|
21
|
+
|
22
|
+
################################
|
23
|
+
|
24
|
+
def __boolval_optkeys
|
25
|
+
super() << 'autoresize'
|
26
|
+
end
|
27
|
+
private :__boolval_optkeys
|
28
|
+
|
29
|
+
def __strval_optkeys
|
30
|
+
super() << 'textbackground'
|
31
|
+
end
|
32
|
+
private :__strval_optkeys
|
33
|
+
|
34
|
+
def initialize(*args)
|
35
|
+
super(*args)
|
36
|
+
@canvas = component_widget('canvas')
|
37
|
+
end
|
38
|
+
|
39
|
+
def method_missing(id, *args)
|
40
|
+
if @canvas.respond_to?(id)
|
41
|
+
@canvas.__send__(id, *args)
|
42
|
+
else
|
43
|
+
super(id, *args)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
################################
|
48
|
+
|
49
|
+
def child_site
|
50
|
+
window(tk_call(@path, 'childsite'))
|
51
|
+
end
|
52
|
+
|
53
|
+
def justify(dir)
|
54
|
+
tk_call(@path, 'justify', dir)
|
55
|
+
self
|
56
|
+
end
|
57
|
+
|
58
|
+
##########################
|
59
|
+
include TkCanvasItemConfig
|
60
|
+
|
61
|
+
def tagid(tag)
|
62
|
+
if tag.kind_of?(TkcItem) || tag.kind_of?(TkcTag)
|
63
|
+
tag.id
|
64
|
+
elsif tag.kind_of?(Tk::Itk::Component)
|
65
|
+
tag.name
|
66
|
+
else
|
67
|
+
tag # maybe an Array of configure paramters
|
68
|
+
end
|
69
|
+
end
|
70
|
+
private :tagid
|
71
|
+
|
72
|
+
# create a canvas item without creating a TkcItem object
|
73
|
+
def create(type, *args)
|
74
|
+
type.create(self, *args)
|
75
|
+
end
|
76
|
+
|
77
|
+
#######################
|
78
|
+
|
79
|
+
def addtag(tag, mode, *args)
|
80
|
+
tk_send_without_enc('addtag', tagid(tag), mode, *args)
|
81
|
+
self
|
82
|
+
end
|
83
|
+
def addtag_above(tagOrId, target)
|
84
|
+
addtag(tagOrId, 'above', tagid(target))
|
85
|
+
end
|
86
|
+
def addtag_all(tagOrId)
|
87
|
+
addtag(tagOrId, 'all')
|
88
|
+
end
|
89
|
+
def addtag_below(tagOrId, target)
|
90
|
+
addtag(tagOrId, 'below', tagid(target))
|
91
|
+
end
|
92
|
+
def addtag_closest(tagOrId, x, y, halo=None, start=None)
|
93
|
+
addtag(tagOrId, 'closest', x, y, halo, start)
|
94
|
+
end
|
95
|
+
def addtag_enclosed(tagOrId, x1, y1, x2, y2)
|
96
|
+
addtag(tagOrId, 'enclosed', x1, y1, x2, y2)
|
97
|
+
end
|
98
|
+
def addtag_overlapping(tagOrId, x1, y1, x2, y2)
|
99
|
+
addtag(tagOrId, 'overlapping', x1, y1, x2, y2)
|
100
|
+
end
|
101
|
+
def addtag_withtag(tagOrId, tag)
|
102
|
+
addtag(tagOrId, 'withtag', tagid(tag))
|
103
|
+
end
|
104
|
+
|
105
|
+
def bbox(tagOrId, *tags)
|
106
|
+
list(tk_send_without_enc('bbox', tagid(tagOrId),
|
107
|
+
*tags.collect{|t| tagid(t)}))
|
108
|
+
end
|
109
|
+
|
110
|
+
#def itembind(tag, context, cmd=Proc.new, *args)
|
111
|
+
# _bind([path, "bind", tagid(tag)], context, cmd, *args)
|
112
|
+
# self
|
113
|
+
#end
|
114
|
+
def itembind(tag, context, *args)
|
115
|
+
# if args[0].kind_of?(Proc) || args[0].kind_of?(Method)
|
116
|
+
if TkComm._callback_entry?(args[0]) || !block_given?
|
117
|
+
cmd = args.shift
|
118
|
+
else
|
119
|
+
cmd = Proc.new
|
120
|
+
end
|
121
|
+
_bind([path, "bind", tagid(tag)], context, cmd, *args)
|
122
|
+
self
|
123
|
+
end
|
124
|
+
|
125
|
+
#def itembind_append(tag, context, cmd=Proc.new, *args)
|
126
|
+
# _bind_append([path, "bind", tagid(tag)], context, cmd, *args)
|
127
|
+
# self
|
128
|
+
#end
|
129
|
+
def itembind_append(tag, context, *args)
|
130
|
+
# if args[0].kind_of?(Proc) || args[0].kind_of?(Method)
|
131
|
+
if TkComm._callback_entry?(args[0]) || !block_given?
|
132
|
+
cmd = args.shift
|
133
|
+
else
|
134
|
+
cmd = Proc.new
|
135
|
+
end
|
136
|
+
_bind_append([path, "bind", tagid(tag)], context, cmd, *args)
|
137
|
+
self
|
138
|
+
end
|
139
|
+
|
140
|
+
def itembind_remove(tag, context)
|
141
|
+
_bind_remove([path, "bind", tagid(tag)], context)
|
142
|
+
self
|
143
|
+
end
|
144
|
+
|
145
|
+
def itembindinfo(tag, context=nil)
|
146
|
+
_bindinfo([path, "bind", tagid(tag)], context)
|
147
|
+
end
|
148
|
+
|
149
|
+
def canvasx(screen_x, *args)
|
150
|
+
#tk_tcl2ruby(tk_send_without_enc('canvasx', screen_x, *args))
|
151
|
+
number(tk_send_without_enc('canvasx', screen_x, *args))
|
152
|
+
end
|
153
|
+
def canvasy(screen_y, *args)
|
154
|
+
#tk_tcl2ruby(tk_send_without_enc('canvasy', screen_y, *args))
|
155
|
+
number(tk_send_without_enc('canvasy', screen_y, *args))
|
156
|
+
end
|
157
|
+
|
158
|
+
def coords(tag, *args)
|
159
|
+
if args == []
|
160
|
+
tk_split_list(tk_send_without_enc('coords', tagid(tag)))
|
161
|
+
else
|
162
|
+
tk_send_without_enc('coords', tagid(tag), *(args.flatten))
|
163
|
+
self
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
def dchars(tag, first, last=None)
|
168
|
+
tk_send_without_enc('dchars', tagid(tag),
|
169
|
+
_get_eval_enc_str(first), _get_eval_enc_str(last))
|
170
|
+
self
|
171
|
+
end
|
172
|
+
|
173
|
+
def delete(*args)
|
174
|
+
tbl = nil
|
175
|
+
TkcItem::CItemID_TBL.mutex.synchronize{
|
176
|
+
tbl = TkcItem::CItemID_TBL[self.path]
|
177
|
+
}
|
178
|
+
if tbl
|
179
|
+
find('withtag', *args).each{|item|
|
180
|
+
if item.kind_of?(TkcItem)
|
181
|
+
TkcItem::CItemID_TBL.mutex.synchronize{
|
182
|
+
tbl.delete(item.id)
|
183
|
+
}
|
184
|
+
end
|
185
|
+
}
|
186
|
+
end
|
187
|
+
tk_send_without_enc('delete', *args.collect{|t| tagid(t)})
|
188
|
+
self
|
189
|
+
end
|
190
|
+
alias remove delete
|
191
|
+
|
192
|
+
def dtag(tag, tag_to_del=None)
|
193
|
+
tk_send_without_enc('dtag', tagid(tag), tag_to_del)
|
194
|
+
self
|
195
|
+
end
|
196
|
+
|
197
|
+
def find(mode, *args)
|
198
|
+
list(tk_send_without_enc('find', mode, *args)).collect!{|id|
|
199
|
+
TkcItem.id2obj(self, id)
|
200
|
+
}
|
201
|
+
end
|
202
|
+
def find_above(target)
|
203
|
+
find('above', tagid(target))
|
204
|
+
end
|
205
|
+
def find_all
|
206
|
+
find('all')
|
207
|
+
end
|
208
|
+
def find_below(target)
|
209
|
+
find('below', tagid(target))
|
210
|
+
end
|
211
|
+
def find_closest(x, y, halo=None, start=None)
|
212
|
+
find('closest', x, y, halo, start)
|
213
|
+
end
|
214
|
+
def find_enclosed(x1, y1, x2, y2)
|
215
|
+
find('enclosed', x1, y1, x2, y2)
|
216
|
+
end
|
217
|
+
def find_overlapping(x1, y1, x2, y2)
|
218
|
+
find('overlapping', x1, y1, x2, y2)
|
219
|
+
end
|
220
|
+
def find_withtag(tag)
|
221
|
+
find('withtag', tag)
|
222
|
+
end
|
223
|
+
|
224
|
+
def itemfocus(tagOrId=nil)
|
225
|
+
if tagOrId
|
226
|
+
tk_send_without_enc('focus', tagid(tagOrId))
|
227
|
+
self
|
228
|
+
else
|
229
|
+
ret = tk_send_without_enc('focus')
|
230
|
+
if ret == ""
|
231
|
+
nil
|
232
|
+
else
|
233
|
+
TkcItem.id2obj(self, ret)
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
def gettags(tagOrId)
|
239
|
+
list(tk_send_without_enc('gettags', tagid(tagOrId))).collect{|tag|
|
240
|
+
TkcTag.id2obj(self, tag)
|
241
|
+
}
|
242
|
+
end
|
243
|
+
|
244
|
+
def icursor(tagOrId, index)
|
245
|
+
tk_send_without_enc('icursor', tagid(tagOrId), index)
|
246
|
+
self
|
247
|
+
end
|
248
|
+
|
249
|
+
def index(tagOrId, idx)
|
250
|
+
number(tk_send_without_enc('index', tagid(tagOrId), idx))
|
251
|
+
end
|
252
|
+
|
253
|
+
def insert(tagOrId, index, string)
|
254
|
+
tk_send_without_enc('insert', tagid(tagOrId), index,
|
255
|
+
_get_eval_enc_str(string))
|
256
|
+
self
|
257
|
+
end
|
258
|
+
|
259
|
+
def lower(tag, below=nil)
|
260
|
+
if below
|
261
|
+
tk_send_without_enc('lower', tagid(tag), tagid(below))
|
262
|
+
else
|
263
|
+
tk_send_without_enc('lower', tagid(tag))
|
264
|
+
end
|
265
|
+
self
|
266
|
+
end
|
267
|
+
|
268
|
+
def move(tag, x, y)
|
269
|
+
tk_send_without_enc('move', tagid(tag), x, y)
|
270
|
+
self
|
271
|
+
end
|
272
|
+
|
273
|
+
def postscript(keys)
|
274
|
+
tk_send("postscript", *hash_kv(keys))
|
275
|
+
end
|
276
|
+
|
277
|
+
def raise(tag, above=nil)
|
278
|
+
if above
|
279
|
+
tk_send_without_enc('raise', tagid(tag), tagid(above))
|
280
|
+
else
|
281
|
+
tk_send_without_enc('raise', tagid(tag))
|
282
|
+
end
|
283
|
+
self
|
284
|
+
end
|
285
|
+
|
286
|
+
def scale(tag, x, y, xs, ys)
|
287
|
+
tk_send_without_enc('scale', tagid(tag), x, y, xs, ys)
|
288
|
+
self
|
289
|
+
end
|
290
|
+
|
291
|
+
def scan_mark(x, y)
|
292
|
+
tk_send_without_enc('scan', 'mark', x, y)
|
293
|
+
self
|
294
|
+
end
|
295
|
+
def scan_dragto(x, y)
|
296
|
+
tk_send_without_enc('scan', 'dragto', x, y)
|
297
|
+
self
|
298
|
+
end
|
299
|
+
|
300
|
+
def select(mode, *args)
|
301
|
+
r = tk_send_without_enc('select', mode, *args)
|
302
|
+
(mode == 'item')? TkcItem.id2obj(self, r): self
|
303
|
+
end
|
304
|
+
def select_adjust(tagOrId, index)
|
305
|
+
select('adjust', tagid(tagOrId), index)
|
306
|
+
end
|
307
|
+
def select_clear
|
308
|
+
select('clear')
|
309
|
+
end
|
310
|
+
def select_from(tagOrId, index)
|
311
|
+
select('from', tagid(tagOrId), index)
|
312
|
+
end
|
313
|
+
def select_item
|
314
|
+
select('item')
|
315
|
+
end
|
316
|
+
def select_to(tagOrId, index)
|
317
|
+
select('to', tagid(tagOrId), index)
|
318
|
+
end
|
319
|
+
|
320
|
+
def itemtype(tag)
|
321
|
+
TkcItem.type2class(tk_send('type', tagid(tag)))
|
322
|
+
end
|
323
|
+
|
324
|
+
def xview(*index)
|
325
|
+
if index.size == 0
|
326
|
+
list(tk_send_without_enc('xview'))
|
327
|
+
else
|
328
|
+
tk_send_without_enc('xview', *index)
|
329
|
+
self
|
330
|
+
end
|
331
|
+
end
|
332
|
+
def xview_moveto(*index)
|
333
|
+
xview('moveto', *index)
|
334
|
+
end
|
335
|
+
def xview_scroll(*index)
|
336
|
+
xview('scroll', *index)
|
337
|
+
end
|
338
|
+
|
339
|
+
def yview(*index)
|
340
|
+
if index.size == 0
|
341
|
+
list(tk_send_without_enc('yview'))
|
342
|
+
else
|
343
|
+
tk_send_without_enc('yview', *index)
|
344
|
+
self
|
345
|
+
end
|
346
|
+
end
|
347
|
+
def yview_moveto(*index)
|
348
|
+
yview('moveto', *index)
|
349
|
+
end
|
350
|
+
def yview_scroll(*index)
|
351
|
+
yview('scroll', *index)
|
352
|
+
end
|
353
|
+
end
|