Module: TkWinRegistry

Extended by:
Tk, TkWinRegistry
Included in:
TkWinRegistry
Defined in:
lib/tk/winpkg.rb

Constant Summary collapse

TkCommandNames =
['registry'.freeze].freeze

Constants included from Tk

Tk::AUTO_PATH, Tk::INTERP, Tk::JAPANIZED_TK, Tk::LIBRARY_PATH, Tk::MAINLOOP, Tk::PACKAGE_PATH, Tk::RELEASE_DATE, Tk::TCL_LIBRARY_PATH, Tk::TCL_MAJOR_VERSION, Tk::TCL_MINOR_VERSION, Tk::TCL_PACKAGE_PATH, Tk::TCL_PATCHLEVEL, Tk::TCL_PRECISION, Tk::TCL_VERSION, Tk::TK_MAJOR_VERSION, Tk::TK_MINOR_VERSION, Tk::TK_PATCHLEVEL, Tk::TK_VERSION, Tk::Tkextlib_RELEASE_DATE, Tk::TreeCtrl_Widget, Tk::X_Scrollable, Tk::Y_Scrollable

Constants included from TkCore

TkCore::EventFlag, TkCore::INTERP, TkCore::WIDGET_DESTROY_HOOK

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

Instance Method Summary collapse

Methods included from Tk

BinaryString, EncodedString, UTF8_String, add_kinsoku, bell, bell_on_display, const_missing, current_grabs, cursor_display, delete_kinsoku, destroy, encoding, encoding=, errorCode, errorInfo, exit, focus, focus_lastfor, focus_next, focus_prev, focus_to, fromUTF8, grid, grid_forget, has_mainwindow?, load_tcllibrary, load_tclscript, load_tclscript_rsrc, load_tclscript_rsrcid, lower_window, pack, pack_forget, pkgconfig_get, pkgconfig_list, place, place_forget, raise_window, root, show_kinsoku, strictMotif, subst_tk_backslash, subst_utf_backslash, tcl_pkgconfig_get, tcl_pkgconfig_list, thread_update, thread_update_idletasks, tk_pkgconfig_get, tk_pkgconfig_list, toUTF8, to_backslash_sequence, ungrid, unload_tcllibrary, unpack, unplace, update, update, update_idletasks, utf_to_backslash, utf_to_backslash_sequence

Methods included from Tk::Encoding

#encoding, #encoding=, #encoding_convertfrom, #encoding_convertto, #encoding_dirs, #encoding_dirs=, #encoding_names, #encoding_system, #encoding_system=

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, #bind, #bind_all, #bind_append, #bind_append_all, #bind_remove, #bind_remove_all, #bindinfo, #bindinfo_all, #image_obj, #install_cmd, #subst, #uninstall_cmd

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_str, #num_or_str, number, #number, string, #string, uninstall_cmd

Instance Method Details

#broadcast(keynam, timeout = nil) ⇒ Object



100
101
102
103
104
105
106
# File 'lib/tk/winpkg.rb', line 100

def broadcast(keynam, timeout=nil)
  if timeout
    tk_call('registry', 'broadcast', keynam, '-timeout', timeout)
  else
    tk_call('registry', 'broadcast', keynam)
  end
end

#delete(keynam, valnam = None) ⇒ Object



108
109
110
# File 'lib/tk/winpkg.rb', line 108

def delete(keynam, valnam=None)
  tk_call('registry', 'delete', keynam, valnam)
end

#get(keynam, valnam) ⇒ Object



112
113
114
# File 'lib/tk/winpkg.rb', line 112

def get(keynam, valnam)
  tk_call('registry', 'get', keynam, valnam)
end

#keys(keynam, pattern = nil) ⇒ Object



116
117
118
119
120
121
122
123
# File 'lib/tk/winpkg.rb', line 116

def keys(keynam, pattern=nil)
  lst = tk_split_simplelist(tk_call('registry', 'keys', keynam))
  if pattern
    lst.find_all{|key| key =~ pattern}
  else
    lst
  end
end

#set(keynam, valnam = None, data = None, dattype = None) ⇒ Object



125
126
127
# File 'lib/tk/winpkg.rb', line 125

def set(keynam, valnam=None, data=None, dattype=None)
  tk_call('registry', 'set', keynam, valnam, data, dattype)
end

#type(keynam, valnam) ⇒ Object



129
130
131
# File 'lib/tk/winpkg.rb', line 129

def type(keynam, valnam)
  tk_call('registry', 'type', keynam, valnam)
end

#values(keynam, pattern = nil) ⇒ Object



133
134
135
136
137
138
139
140
# File 'lib/tk/winpkg.rb', line 133

def values(keynam, pattern=nil)
  lst = tk_split_simplelist(tk_call('registry', 'values', keynam))
  if pattern
    lst.find_all{|val| val =~ pattern}
  else
    lst
  end
end