1999-08-13 01:37:52 -04:00
|
|
|
require "tk"
|
|
|
|
|
2003-06-18 15:46:20 -04:00
|
|
|
class TkDialog2 < TkWindow
|
1999-08-13 01:37:52 -04:00
|
|
|
extend Tk
|
|
|
|
|
2003-07-23 12:07:35 -04:00
|
|
|
TkCommandNames = ['tk_dialog'.freeze].freeze
|
|
|
|
|
2003-06-18 15:46:20 -04:00
|
|
|
def self.show(*args)
|
|
|
|
dlog = self.new(*args)
|
|
|
|
dlog.show
|
|
|
|
dlog
|
|
|
|
end
|
|
|
|
|
|
|
|
def _set_button_config(configs)
|
|
|
|
set_config = proc{|c,i|
|
|
|
|
if $VERBOSE && (c.has_key?('command') || c.has_key?(:command))
|
|
|
|
STDERR.print("Warning: cannot give a command option " +
|
|
|
|
"to the dialog button#{i}. It was removed.\n")
|
|
|
|
end
|
|
|
|
c.delete('command'); c.delete(:command)
|
2003-12-02 23:55:07 -05:00
|
|
|
@config << Kernel.format("%s.button%s configure %s; ",
|
|
|
|
@path, i, hash_kv(c).join(' '))
|
2003-06-18 15:46:20 -04:00
|
|
|
}
|
|
|
|
case configs
|
|
|
|
when Proc
|
|
|
|
@buttons.each_index{|i|
|
|
|
|
if (c = configs.call(i)).kind_of? Hash
|
|
|
|
set_config.call(c,i)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
when Array
|
|
|
|
@buttons.each_index{|i|
|
|
|
|
if (c = configs[i]).kind_of? Hash
|
|
|
|
set_config.call(c,i)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
when Hash
|
|
|
|
@buttons.each_with_index{|s,i|
|
|
|
|
if (c = configs[s]).kind_of? Hash
|
|
|
|
set_config.call(c,i)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
@config = 'after idle {' + @config + '};' if @config != ""
|
|
|
|
end
|
|
|
|
private :_set_button_config
|
|
|
|
|
1999-08-13 01:37:52 -04:00
|
|
|
# initialize tk_dialog
|
2003-11-13 23:25:11 -05:00
|
|
|
def create_self(keys)
|
1999-08-13 01:37:52 -04:00
|
|
|
@var = TkVariable.new
|
|
|
|
|
|
|
|
@title = title
|
|
|
|
|
|
|
|
@message = message
|
|
|
|
@message_config = message_config
|
2003-07-30 03:15:00 -04:00
|
|
|
@msgframe_config = msgframe_config
|
1999-08-13 01:37:52 -04:00
|
|
|
|
|
|
|
@bitmap = bitmap
|
|
|
|
@bitmap_config = message_config
|
|
|
|
|
|
|
|
@default_button = default_button
|
|
|
|
|
|
|
|
@buttons = buttons
|
2003-06-18 15:46:20 -04:00
|
|
|
@button_configs = proc{|num| button_configs(num)}
|
2003-07-30 03:15:00 -04:00
|
|
|
@btnframe_config = btnframe_config
|
2003-06-18 15:46:20 -04:00
|
|
|
|
|
|
|
#@config = "puts [winfo children .w0000];"
|
|
|
|
@config = ""
|
1999-08-13 01:37:52 -04:00
|
|
|
|
2003-07-30 03:15:00 -04:00
|
|
|
@command = nil
|
|
|
|
|
1999-08-13 01:37:52 -04:00
|
|
|
if keys.kind_of? Hash
|
2003-06-18 15:46:20 -04:00
|
|
|
@title = keys['title'] if keys.key? 'title'
|
|
|
|
@message = keys['message'] if keys.key? 'message'
|
|
|
|
@bitmap = keys['bitmap'] if keys.key? 'bitmap'
|
2003-07-29 04:05:30 -04:00
|
|
|
@bitmap = '{}' if @bitmap == nil || @bitmap == ""
|
2003-06-18 15:46:20 -04:00
|
|
|
@default_button = keys['default'] if keys.key? 'default'
|
|
|
|
@buttons = keys['buttons'] if keys.key? 'buttons'
|
1999-08-13 01:37:52 -04:00
|
|
|
|
|
|
|
@command = keys['prev_command']
|
|
|
|
|
2003-06-18 15:46:20 -04:00
|
|
|
@message_config = keys['message_config'] if keys.key? 'message_config'
|
|
|
|
@msgframe_config = keys['msgframe_config'] if keys.key? 'msgframe_config'
|
|
|
|
@bitmap_config = keys['bitmap_config'] if keys.key? 'bitmap_config'
|
|
|
|
@button_configs = keys['button_configs'] if keys.key? 'button_configs'
|
|
|
|
@btnframe_config = keys['btnframe_config'] if keys.key? 'btnframe_config'
|
1999-08-13 01:37:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
if @title.include? ?\s
|
|
|
|
@title = '{' + @title + '}'
|
|
|
|
end
|
|
|
|
|
2003-06-18 15:46:20 -04:00
|
|
|
if @buttons.kind_of? Array
|
|
|
|
_set_button_config(@buttons.collect{|cfg|
|
|
|
|
(cfg.kind_of? Array)? cfg[1]: nil})
|
|
|
|
@buttons = @buttons.collect{|cfg| (cfg.kind_of? Array)? cfg[0]: cfg}
|
|
|
|
end
|
|
|
|
if @buttons.kind_of? Hash
|
|
|
|
_set_button_config(@buttons)
|
|
|
|
@buttons = @buttons.keys
|
|
|
|
end
|
|
|
|
@buttons = tk_split_simplelist(@buttons) if @buttons.kind_of? String
|
1999-08-13 01:37:52 -04:00
|
|
|
@buttons = @buttons.collect{|s|
|
|
|
|
if s.kind_of? Array
|
|
|
|
s = s.join(' ')
|
|
|
|
end
|
|
|
|
if s.include? ?\s
|
|
|
|
'{' + s + '}'
|
|
|
|
else
|
|
|
|
s
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
if @message_config.kind_of? Hash
|
2003-12-02 23:55:07 -05:00
|
|
|
@config << Kernel.format("%s.msg configure %s;",
|
|
|
|
@path, hash_kv(@message_config).join(' '))
|
1999-08-13 01:37:52 -04:00
|
|
|
end
|
2003-06-18 15:46:20 -04:00
|
|
|
|
|
|
|
if @msgframe_config.kind_of? Hash
|
2003-12-02 23:55:07 -05:00
|
|
|
@config << Kernel.format("%s.top configure %s;",
|
|
|
|
@path, hash_kv(@msgframe_config).join(' '))
|
2003-06-18 15:46:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
if @btnframe_config.kind_of? Hash
|
2003-12-02 23:55:07 -05:00
|
|
|
@config << Kernel.format("%s.bot configure %s;",
|
|
|
|
@path, hash_kv(@btnframe_config).join(' '))
|
2003-06-18 15:46:20 -04:00
|
|
|
end
|
|
|
|
|
1999-08-13 01:37:52 -04:00
|
|
|
if @bitmap_config.kind_of? Hash
|
2003-12-02 23:55:07 -05:00
|
|
|
@config << Kernel.format("%s.bitmap configure %s;",
|
|
|
|
@path, hash_kv(@bitmap_config).join(' '))
|
1999-08-13 01:37:52 -04:00
|
|
|
end
|
2003-06-18 15:46:20 -04:00
|
|
|
|
|
|
|
_set_button_config(@button_configs) if @button_configs
|
1999-08-13 01:37:52 -04:00
|
|
|
|
|
|
|
if @command.kind_of? Proc
|
|
|
|
@command.call(self)
|
|
|
|
end
|
2003-06-18 15:46:20 -04:00
|
|
|
end
|
1999-08-13 01:37:52 -04:00
|
|
|
|
2003-06-18 15:46:20 -04:00
|
|
|
def show
|
|
|
|
if @default_button.kind_of? String
|
|
|
|
default_button = @buttons.index(@default_button)
|
|
|
|
else
|
|
|
|
default_button = @default_button
|
|
|
|
end
|
|
|
|
default_button = '{}' if default_button == nil
|
2003-06-21 04:47:22 -04:00
|
|
|
Tk.ip_eval('eval {global '+@var.id+';'+@config+
|
|
|
|
'set '+@var.id+' [tk_dialog '+
|
|
|
|
@path+" "+@title+" {#{@message}} "+@bitmap+" "+
|
|
|
|
String(default_button)+" "+@buttons.join(' ')+']}')
|
1999-08-13 01:37:52 -04:00
|
|
|
end
|
2003-06-18 15:46:20 -04:00
|
|
|
|
1999-08-13 01:37:52 -04:00
|
|
|
def value
|
|
|
|
return @var.value.to_i
|
|
|
|
end
|
|
|
|
######################################################
|
|
|
|
# #
|
|
|
|
# these methods must be overridden for each dialog #
|
|
|
|
# #
|
|
|
|
######################################################
|
2003-06-18 15:46:20 -04:00
|
|
|
private
|
|
|
|
|
1999-08-13 01:37:52 -04:00
|
|
|
def title
|
2003-06-18 15:46:20 -04:00
|
|
|
# returns a title string of the dialog window
|
1999-08-13 01:37:52 -04:00
|
|
|
return "DIALOG"
|
|
|
|
end
|
|
|
|
def message
|
2003-06-18 15:46:20 -04:00
|
|
|
# returns a message text to display on the dialog
|
1999-08-13 01:37:52 -04:00
|
|
|
return "MESSAGE"
|
|
|
|
end
|
|
|
|
def message_config
|
2003-06-18 15:46:20 -04:00
|
|
|
# returns a Hash {option=>value, ...} for the message text
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
def msgframe_config
|
|
|
|
# returns a Hash {option=>value, ...} for the message text frame
|
1999-08-13 01:37:52 -04:00
|
|
|
return nil
|
|
|
|
end
|
|
|
|
def bitmap
|
2003-06-18 15:46:20 -04:00
|
|
|
# returns a bitmap name or a bitmap file path
|
|
|
|
# (@ + path ; e.g. '@/usr/share/bitmap/sample.xbm')
|
1999-08-13 01:37:52 -04:00
|
|
|
return "info"
|
|
|
|
end
|
|
|
|
def bitmap_config
|
2003-06-18 15:46:20 -04:00
|
|
|
# returns nil or a Hash {option=>value, ...} for the bitmap
|
1999-08-13 01:37:52 -04:00
|
|
|
return nil
|
|
|
|
end
|
|
|
|
def default_button
|
2003-06-18 15:46:20 -04:00
|
|
|
# returns a default button's number or name
|
|
|
|
# if nil or null string, set no-default
|
1999-08-13 01:37:52 -04:00
|
|
|
return 0
|
|
|
|
end
|
|
|
|
def buttons
|
|
|
|
#return "BUTTON1 BUTTON2"
|
|
|
|
return ["BUTTON1", "BUTTON2"]
|
|
|
|
end
|
|
|
|
def button_configs(num)
|
2003-06-18 15:46:20 -04:00
|
|
|
# returns nil / Proc / Array or Hash (see _set_button_config)
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
def btnframe_config
|
|
|
|
# returns nil or a Hash {option=>value, ...} for the button frame
|
1999-08-13 01:37:52 -04:00
|
|
|
return nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-06-18 15:46:20 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# TkDialog : with showing at initialize
|
|
|
|
#
|
|
|
|
class TkDialog < TkDialog2
|
|
|
|
def self.show(*args)
|
|
|
|
self.new(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(*args)
|
|
|
|
super(*args)
|
|
|
|
show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
1999-08-13 01:37:52 -04:00
|
|
|
#
|
|
|
|
# dialog for warning
|
|
|
|
#
|
2003-06-18 15:46:20 -04:00
|
|
|
class TkWarning2 < TkDialog2
|
2003-11-13 23:25:11 -05:00
|
|
|
def initialize(parent = nil, mes = nil)
|
|
|
|
if !mes
|
|
|
|
if parent.kind_of? TkWindow
|
|
|
|
mes = ""
|
|
|
|
else
|
|
|
|
mes = parent.to_s
|
|
|
|
parent = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
super(parent, :message=>mes)
|
1999-08-13 01:37:52 -04:00
|
|
|
end
|
2003-06-18 15:46:20 -04:00
|
|
|
|
|
|
|
def show(mes = nil)
|
|
|
|
mes_bup = @message
|
|
|
|
@message = mes if mes
|
|
|
|
ret = super()
|
|
|
|
@message = mes_bup
|
|
|
|
ret
|
1999-08-13 01:37:52 -04:00
|
|
|
end
|
2003-06-18 15:46:20 -04:00
|
|
|
|
|
|
|
#######
|
|
|
|
private
|
|
|
|
|
1999-08-13 01:37:52 -04:00
|
|
|
def title
|
|
|
|
return "WARNING";
|
|
|
|
end
|
|
|
|
def bitmap
|
|
|
|
return "warning";
|
|
|
|
end
|
|
|
|
def default_button
|
|
|
|
return 0;
|
|
|
|
end
|
|
|
|
def buttons
|
|
|
|
return "OK";
|
|
|
|
end
|
|
|
|
end
|
2003-06-18 15:46:20 -04:00
|
|
|
|
|
|
|
class TkWarning < TkWarning2
|
|
|
|
def self.show(*args)
|
|
|
|
self.new(*args)
|
|
|
|
end
|
2003-11-13 23:25:11 -05:00
|
|
|
def initialize(*args)
|
|
|
|
super(*args)
|
2003-06-18 15:46:20 -04:00
|
|
|
show
|
|
|
|
end
|
|
|
|
end
|