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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#
# tkextlib/iwidgets/mainwindow.rb
# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
#
require 'tk'
require 'tkextlib/iwidgets.rb'
module Tk
module Iwidgets
class Mainwindow < Tk::Iwidgets::Shell
end
end
end
class Tk::Iwidgets::Mainwindow
TkCommandNames = ['::iwidgets::mainwindow'.freeze].freeze
WidgetClassName = 'Mainwindow'.freeze
WidgetClassNames[WidgetClassName] ||= self
def __boolval_optkeys
super() << 'helpline' << 'statusline'
end
private :__boolval_optkeys
def __strval_optkeys
super() << 'menubarbackground' << 'menubarforeground' << 'toolbarforeground'
end
private :__strval_optkeys
def __font_optkeys
super() << 'menubarfont' << 'toolbarfont'
end
private :__font_optkeys
def child_site
window(tk_call(@path, 'childsite'))
end
def menubar(*args)
unless args.empty?
tk_call(@path, 'menubar', *args)
end
window(tk_call(@path, 'menubar'))
end
def mousebar(*args)
unless args.empty?
tk_call(@path, 'mousebar', *args)
end
window(tk_call(@path, 'mousebar'))
end
def msgd(*args)
unless args.empty?
tk_call(@path, 'msgd', *args)
end
window(tk_call(@path, 'msgd'))
end
def toolbar(*args)
unless args.empty?
tk_call(@path, 'toolbar', *args)
end
window(tk_call(@path, 'toolbar'))
end
end
|