blob: a161c3c2a4a08cdae13789b1c1ee119910d0dabe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#
# tkextlib/iwidgets/finddialog.rb
# by Hidetoshi NAGAI ([email protected])
#
require 'tk'
require 'tkextlib/iwidgets.rb'
module Tk
module Iwidgets
class Finddialog < Tk::Iwidgets::Dialogshell
end
end
end
class Tk::Iwidgets::Finddialog
TkCommandNames = ['::iwidgets::finddialog'.freeze].freeze
WidgetClassName = 'Finddialog'.freeze
WidgetClassNames[WidgetClassName] = self
def clear
tk_call(@path, 'clear')
self
end
def find
tk_call(@path, 'find')
end
end
|