mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 18:13:58 +02:00

* ext/tk/lib/tkextlib/tile.rb: [incompatible] remove TileWidgets' instate/state/identify method to avoid the conflict with standard widget options. Those methods are renamed to ttk_instate/ttk_state/ ttk_identify (tile_instate/tile_state/tile_identify are available too). Although I don't recommend, if you realy need old methods, please define "Tk::USE_OBSOLETE_TILE_STATE_METHOD = true" before "require 'tkextlib/tile'". * ext/tk/lib/tkextlib/tile.rb: "Tk::Tile::__Import_Tile_Widgets__!" is obsolete. It outputs warning. To control default widget set, use "Tk.default_widget_set = :Ttk". * ext/tk/lib/tk.rb: __IGNORE_UNKNOWN_CONFIGURE_OPTION__ method and __set_IGNORE_UNKNOWN_CONFIGURE_OPTION__!(mode) method are defind as module methods of TkConfigMethod. It may help users to wrap old Ruby/Tk scripts (use standard widgets) to force to use Ttk widgets. Ttk widgets don't have some options of standard widgets which are control the view of widgets. When set ignore-mode true, configure method tries to ignoure such unknown options with no exception. Of course, it may raise other troubles on the GUI design. So, those are a little danger methods. * ext/tk/lib/tk/itemconfig.rb: __IGNORE_UNKNOWN_CONFIGURE_OPTION__ method and __set_IGNORE_UNKNOWN_CONFIGURE_OPTION__!(mode) method are defind as module methods of TkItemConfigMethod as the same purpose as TkConfigMethod's ones. * ext/tk/sample/ttk_wrapper.rb: A new example. This is a tool for wrapping old Ruby/Tk scripts (which use standard widgets) to use Ttk (Tile) widgets as default. * ext/tk/sample/tkextlib/tile/demo.rb: use ttk_instate/ttk_state method instead of instate/state method. * ext/tk/lib/tk/root, ext/tk/lib/tk/namespace.rb, ext/tk/lib/tk/text.rb, ext/tk/lib/tkextlib/*: some 'instance_eval's are replaced to "instance_exec(self)". * ext/tk/lib/tk/event.rb: bug fix on KEY_TBL and PROC_TBL (?x is not a character code on Ruby1.9). * ext/tk/lib/tk/variable.rb: support new style of operation argument on Tcl/Tk's 'trace' command for variables. * ext/tk/sample/demos-jp/widget, ext/tk/sample/demos-en/widget: bug fix * ext/tk/sammple/demos-jp/textpeer.rb, ext/tk/sammple/demos-en/textpeer.rb: new widget demo. * ext/tk/tcltklib.c: decrase SEGV troubles (probably) * ext/tk/lib/tk.rb: remove Thread.critical access if Ruby1.9 * ext/tk/lib/tk/multi-tk.rb: support Ruby1.9 (probably) * ext/tk/lib/tkextlib/tile.rb: add method to define Tcl/Tk command to make Tcl/Tk theme sources (based on different version of Tile extension) available. (Tk::Tile::__define_LoadImages_proc_for_comaptibility__) * ext/tk/lib/tk.rb, ext/tk/lib/tk/wm.rb: support dockable frames (Tcl/Tk8.5 feature). 'wm' command can treat many kinds of widgets as toplevel widgets. * ext/tk/lib/tkextlib/tile/style.rb: ditto. (Tk::Tile::Style.__define_wrapper_proc_for_compatibility__) * ext/tk/lib/tk/font.rb: add actual_hash and metrics_hash to get properties as a hash. metrics_hash method returns a boolean value for 'fixed' option. But metrics method returns numeric value (0 or 1) for 'fixed' option, because of backward compatibility. * ext/tk/lib/tk/timer.rb: somtimes fail to set callback procedure. * ext/tk/lib/tk.rb: add Tk.sleep and Tk.wakeup method. Tk.sleep doesn't block the eventloop. It will be better to use the method in event callbacks. * ext/tk/sample/tksleep_sample.rb: sample script about Tk.sleep. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@15849 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
201 lines
6.4 KiB
Ruby
201 lines
6.4 KiB
Ruby
# -*- coding: euc-jp -*-
|
|
#
|
|
# ruler widget demo (called by 'widget')
|
|
#
|
|
|
|
# rulerMkTab --
|
|
# This method creates a new triangular polygon in a canvas to
|
|
# represent a tab stop.
|
|
#
|
|
# Arguments:
|
|
# c - The canvas window.
|
|
# x, y - Coordinates at which to create the tab stop.
|
|
|
|
def rulerMkTab(c,x,y)
|
|
v = $demo_rulerInfo
|
|
TkcPolygon.new(c, x, y, x+v.size, y+v.size, x-v.size, y+v.size)
|
|
end
|
|
|
|
# toplevel widget が存在すれば削除する
|
|
if defined?($ruler_demo) && $ruler_demo
|
|
$ruler_demo.destroy
|
|
$ruler_demo = nil
|
|
end
|
|
|
|
# demo 用の toplevel widget を生成
|
|
$ruler_demo = TkToplevel.new {|w|
|
|
title("Ruler Demonstration")
|
|
iconname("ruler")
|
|
positionWindow(w)
|
|
}
|
|
|
|
# label 生成
|
|
TkLabel.new($ruler_demo, 'font'=>$font, 'wraplength'=>'5i', 'justify'=>'left',
|
|
'text'=>"このキャンバスwidgetはルーラーの模型です。ルーラーの右にあるのはタブストップの井戸で、ここから引っ張ってくることによってタブストップを作ることができます。また、すでにあるタブストップを動かすこともできます。タブストップを上方または下方にかすれて表示されるまでドラッグすると、マウスボタンを離した時にそのタブストップは消えます。"){
|
|
pack('side'=>'top')
|
|
}
|
|
|
|
# frame 生成
|
|
$ruler_buttons = TkFrame.new($ruler_demo) {|frame|
|
|
TkButton.new(frame) {
|
|
#text '了解'
|
|
text '閉じる'
|
|
command proc{
|
|
tmppath = $ruler_demo
|
|
$ruler_demo = nil
|
|
tmppath.destroy
|
|
}
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
|
|
TkButton.new(frame) {
|
|
text 'コード参照'
|
|
command proc{showCode 'ruler'}
|
|
}.pack('side'=>'left', 'expand'=>'yes')
|
|
}
|
|
$ruler_buttons.pack('side'=>'bottom', 'fill'=>'x', 'pady'=>'2m')
|
|
|
|
# canvas 設定
|
|
$ruler_canvas = TkCanvas.new($ruler_demo, 'width'=>'14.8c', 'height'=>'2.5c')
|
|
$ruler_canvas.pack('side'=>'top', 'fill'=>'x')
|
|
|
|
# 値設定
|
|
unless Struct.const_defined?("RulerInfo")
|
|
$demo_rulerInfo = Struct.new("RulerInfo", :grid, :left, :right, :x, :y,
|
|
:top, :bottom, :size, :normalStyle,
|
|
:activeStyle, :deleteStyle).new
|
|
end
|
|
$demo_rulerInfo.grid = '.25c'
|
|
$demo_rulerInfo.left = TkWinfo.fpixels($ruler_canvas, '1c')
|
|
$demo_rulerInfo.right = TkWinfo.fpixels($ruler_canvas, '13c')
|
|
$demo_rulerInfo.top = TkWinfo.fpixels($ruler_canvas, '1c')
|
|
$demo_rulerInfo.bottom = TkWinfo.fpixels($ruler_canvas, '1.5c')
|
|
$demo_rulerInfo.size = TkWinfo.fpixels($ruler_canvas, '.2c')
|
|
$demo_rulerInfo.normalStyle = {'fill'=>'black'}
|
|
if TkWinfo.depth($ruler_canvas) > 1
|
|
$demo_rulerInfo.activeStyle = {'fill'=>'red', 'stipple'=>''}
|
|
$demo_rulerInfo.deleteStyle = {'fill'=>'red',
|
|
'stipple'=>'@'+[$demo_dir, '..',
|
|
'images', 'gray25.xbm'].join(File::Separator)}
|
|
else
|
|
$demo_rulerInfo.activeStyle = {'fill'=>'black', 'stipple'=>''}
|
|
$demo_rulerInfo.deleteStyle = {'fill'=>'black',
|
|
'stipple'=>'@'+[$demo_dir, '..',
|
|
'images', 'gray25.xbm'].join(File::Separator)}
|
|
end
|
|
|
|
TkcLine.new($ruler_canvas,
|
|
'1c', '0.5c', '1c', '1c', '13c', '1c', '13c', '0.5c', 'width'=>1)
|
|
(0..11).each{|i|
|
|
x = i+1
|
|
TkcLine.new($ruler_canvas, "#{x}c", '1c', "#{x}c", '0.6c', 'width'=>1)
|
|
TkcLine.new($ruler_canvas, "#{x}.25c", '1c', "#{x}.25c", '0.8c', 'width'=>1)
|
|
TkcLine.new($ruler_canvas, "#{x}.5c", '1c', "#{x}.5c", '0.7c', 'width'=>1)
|
|
TkcLine.new($ruler_canvas, "#{x}.75c", '1c', "#{x}.75c", '0.8c', 'width'=>1)
|
|
TkcText.new($ruler_canvas, "#{x}.15c", '0.75c', 'text'=>i, 'anchor'=>'sw')
|
|
}
|
|
|
|
$rulerTag_well = TkcTag.new($ruler_canvas)
|
|
$ruler_canvas\
|
|
.addtag_withtag($rulerTag_well,
|
|
TkcRectangle.new($ruler_canvas,
|
|
'13.2c', '1c', '13.8c', '0.5c',
|
|
'outline'=>'black',
|
|
'fill'=>($ruler_canvas\
|
|
.configinfo('background'))[4]) )
|
|
$ruler_canvas\
|
|
.addtag_withtag($rulerTag_well,
|
|
rulerMkTab($ruler_canvas,
|
|
TkWinfo.pixels($ruler_canvas, '13.5c'),
|
|
TkWinfo.pixels($ruler_canvas, '.65c') ) )
|
|
|
|
$rulerTag_well.bind('1', proc{|x,y| rulerNewTab($ruler_canvas,x,y)}, '%x %y')
|
|
$ruler_canvas.itembind('tab', '1',
|
|
proc{|x,y| rulerSelectTab($ruler_canvas,x,y)}, '%x %y')
|
|
$ruler_canvas.bind('B1-Motion',
|
|
proc{|x,y| rulerMoveTab($ruler_canvas,x,y)}, '%x %y')
|
|
$ruler_canvas.bind('Any-ButtonRelease-1', proc{rulerReleaseTab($ruler_canvas)})
|
|
|
|
# rulerNewTab --
|
|
# Does all the work of creating a tab stop, including creating the
|
|
# triangle object and adding tags to it to give it tab behavior.
|
|
#
|
|
# Arguments:
|
|
# c - The canvas window.
|
|
# x, y - The coordinates of the tab stop.
|
|
|
|
def rulerNewTab(c,x,y)
|
|
v = $demo_rulerInfo
|
|
c.addtag_withtag('active', rulerMkTab(c,x,y))
|
|
c.addtag_withtag('tab', 'active')
|
|
v.x = x
|
|
v.y = y
|
|
rulerMoveTab(c,x,y)
|
|
end
|
|
|
|
# rulerSelectTab --
|
|
# This method is invoked when mouse button 1 is pressed over
|
|
# a tab. It remembers information about the tab so that it can
|
|
# be dragged interactively.
|
|
#
|
|
# Arguments:
|
|
# c - The canvas widget.
|
|
# x, y - The coordinates of the mouse (identifies the point by
|
|
# which the tab was picked up for dragging).
|
|
|
|
def rulerSelectTab(c,x,y)
|
|
v = $demo_rulerInfo
|
|
v.x = c.canvasx(x, v.grid)
|
|
v.y = v.top+2
|
|
c.addtag_withtag('active', 'current')
|
|
c.itemconfigure('active', v.activeStyle)
|
|
c.raise('active')
|
|
end
|
|
|
|
# rulerMoveTab --
|
|
# This method is invoked during mouse motion events to drag a tab.
|
|
# It adjusts the position of the tab, and changes its appearance if
|
|
# it is about to be dragged out of the ruler.
|
|
#
|
|
# Arguments:
|
|
# c - The canvas widget.
|
|
# x, y - The coordinates of the mouse.
|
|
|
|
def rulerMoveTab(c,x,y)
|
|
v = $demo_rulerInfo
|
|
return if c.find_withtag('active') == []
|
|
cx = c.canvasx(x,v.grid)
|
|
cy = c.canvasy(y)
|
|
cx = v.left if cx < v.left
|
|
cx = v.right if cx > v.right
|
|
if (cy >= v.top && cy <= v.bottom)
|
|
cy = v.top+2
|
|
c.itemconfigure('active', v.activeStyle)
|
|
else
|
|
cy = cy-v.size-2
|
|
c.itemconfigure('active', v.deleteStyle)
|
|
end
|
|
c.move('active', cx-v.x, cy-v.y)
|
|
v.x = cx
|
|
v.y = cy
|
|
end
|
|
|
|
# rulerReleaseTab --
|
|
# This method is invoked during button release events that end
|
|
# a tab drag operation. It deselects the tab and deletes the tab if
|
|
# it was dragged out of the ruler.
|
|
#
|
|
# Arguments:
|
|
# c - The canvas widget.
|
|
# x, y - The coordinates of the mouse.
|
|
|
|
def rulerReleaseTab(c)
|
|
v = $demo_rulerInfo
|
|
return if c.find_withtag('active') == []
|
|
if v.y != v.top+2
|
|
c.delete('active')
|
|
else
|
|
c.itemconfigure('active', v.normalStyle)
|
|
c.dtag('active')
|
|
end
|
|
end
|
|
|