Module: Tk::Tcllib::Tooltip
- Extended by:
- TkCore
- Defined in:
- lib/tkextlib/tcllib/tooltip.rb,
lib/tkextlib/tcllib/tooltip.rb
Constant Summary
collapse
- PACKAGE_NAME =
'tooltip'.freeze
- WidgetClassName =
'Tooltip'.freeze
Constants included
from TkCore
TkCore::EventFlag, TkCore::INTERP, TkCore::INTERP_MUTEX, TkCore::INTERP_ROOT_CHECK, TkCore::INTERP_THREAD, TkCore::INTERP_THREAD_STATUS, TkCore::RUN_EVENTLOOP_ON_MAIN_THREAD, TkCore::WIDGET_DESTROY_HOOK, TkCore::WITH_ENCODING, TkCore::WITH_RUBY_VM
Constants included
from TkComm
TkComm::GET_CONFIGINFO_AS_ARRAY, TkComm::GET_CONFIGINFOwoRES_AS_ARRAY, TkComm::TkExtlibAutoloadModule, TkComm::Tk_CMDTBL, TkComm::Tk_IDs, TkComm::Tk_WINDOWS, TkComm::USE_TCLs_LIST_FUNCTIONS, TkComm::WidgetClassNames
Constants included
from TkUtil
TkUtil::None, TkUtil::RELEASE_DATE
Class Method Summary
collapse
Methods included from TkCore
_tk_call_to_list_core, after, after_cancel, after_idle, appname, appsend, appsend_deny, appsend_displayof, callback, callback_break, callback_continue, callback_return, chooseColor, chooseDirectory, do_one_event, event_generate, getMultipleOpenFile, getMultipleSaveFile, getOpenFile, getSaveFile, get_eventloop_tick, get_eventloop_weight, get_no_event_wait, inactive, inactive_displayof, info, ip_eval, ip_eval_with_enc, ip_eval_without_enc, ip_invoke, ip_invoke_with_enc, ip_invoke_without_enc, is_mainloop?, load_cmd_on_ip, mainloop, mainloop_exist?, mainloop_thread?, mainloop_watchdog, messageBox, rb_appsend, rb_appsend_displayof, reset_inactive, reset_inactive_displayof, restart, scaling, scaling_displayof, set_eventloop_tick, set_eventloop_weight, set_no_event_wait, tk_call, tk_call_to_list, tk_call_to_list_with_enc, tk_call_to_list_without_enc, tk_call_to_simplelist, tk_call_to_simplelist_with_enc, tk_call_to_simplelist_without_enc, tk_call_with_enc, tk_call_without_enc, windowingsystem
Methods included from TkComm
_at, _callback_entry?, _callback_entry_class?, _curr_cmd_id, _fromUTF8, _genobj_for_tkwidget, _next_cmd_id, _toUTF8, array2tk_list, #bind, #bind_all, #bind_append, #bind_append_all, #bind_remove, #bind_remove_all, #bindinfo, #bindinfo_all, bool, image_obj, #install_cmd, install_cmd, list, num_or_nil, num_or_str, number, procedure, simplelist, slice_ary, string, #subst, tk_tcl2ruby, uninstall_cmd, #uninstall_cmd, window
Methods included from TkEvent
#install_bind, #install_bind_for_event_class
Methods included from TkUtil
#_conv_args, _conv_args, #_fromUTF8, #_get_eval_enc_str, _get_eval_enc_str, #_get_eval_string, _get_eval_string, _symbolkey2str, #_symbolkey2str, #_toUTF8, #bool, bool, callback, eval_cmd, #hash_kv, hash_kv, install_cmd, #num_or_nil, num_or_nil, num_or_str, #num_or_str, number, #number, string, #string, uninstall_cmd, untrust
Class Method Details
.clear(glob_path_pat = None) ⇒ Object
47
48
49
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 47
def self.clear(glob_path_pat = None)
self.clear_glob(glob_path_pat)
end
|
.clear_children(*args) ⇒ Object
59
60
61
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 59
def self.clear_children(*args)
self.clear_glob("{#{args.collect{|w| s = _get_eval_string(w); "#{s},#{s}.*"}.join(',')}}")
end
|
.clear_glob(glob_path_pat) ⇒ Object
51
52
53
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 51
def self.clear_glob(glob_path_pat)
tk_call_without_enc('::tooltip::tooltip', 'clear', glob_path_pat)
end
|
55
56
57
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 55
def self.clear_widgets(*args)
self.clear_glob("{#{args.collect{|w| _get_eval_string(w)}.join(',')}}")
end
|
.database_class ⇒ Object
43
44
45
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 43
def self.database_class
WidgetClassNames[self::WidgetClassName]
end
|
.database_classname ⇒ Object
40
41
42
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 40
def self.database_classname
self::WidgetClassName
end
|
.delay(millisecs = None) ⇒ Object
63
64
65
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 63
def self.delay(millisecs=None)
number(tk_call_without_enc('::tooltip::tooltip', 'delay', millisecs))
end
|
.delay=(millisecs) ⇒ Object
66
67
68
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 66
def self.delay=(millisecs)
self.delay(millisecs)
end
|
77
78
79
80
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 77
def self.disable
tk_call_without_enc('::tooltip::tooltip', 'disable')
false
end
|
85
86
87
88
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 85
def self.enable
tk_call_without_enc('::tooltip::tooltip', 'enable')
true
end
|
.erase(widget) ⇒ Object
102
103
104
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 102
def self.erase(widget)
tk_call_without_enc('::tooltip::tooltip', widget.path, '')
end
|
.fade(mode) ⇒ Object
73
74
75
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 73
def self.fade(mode)
tk_call_without_enc('::tooltip::tooltip', 'fade', mode)
end
|
.fade? ⇒ Boolean
70
71
72
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 70
def self.fade?
bool(tk_call_without_enc('::tooltip::tooltip', 'fade'))
end
|
81
82
83
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 81
def self.off
self.disable
end
|
89
90
91
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 89
def self.on
self.enable
end
|
.package_name ⇒ Object
20
21
22
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 20
def self.package_name
PACKAGE_NAME
end
|
.package_version ⇒ Object
24
25
26
27
28
29
30
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 24
def self.package_version
begin
TkPackage.require('tooltip')
rescue
''
end
end
|
.register(widget, msg, keys = nil) ⇒ Object
93
94
95
96
97
98
99
100
|
# File 'lib/tkextlib/tcllib/tooltip.rb', line 93
def self.register(widget, msg, keys=nil)
if keys.kind_of?(Hash)
args = hash_kv(keys) << msg
else
args = msg
end
tk_call('::tooltip::tooltip', widget.path, *args)
end
|