Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.45
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby21 /
lib64 /
ruby /
2.1.0 /
tkextlib /
tcllib /
Delete
Unzip
Name
Size
Permission
Date
Action
autoscroll.rb
4.14
KB
-rw-r--r--
2023-07-26 17:52
calendar.rb
1.12
KB
-rw-r--r--
2023-07-26 17:52
canvas_sqmap.rb
689
B
-rw-r--r--
2023-07-26 17:52
canvas_zoom.rb
430
B
-rw-r--r--
2023-07-26 17:52
chatwidget.rb
3.31
KB
-rw-r--r--
2023-07-26 17:52
crosshair.rb
2.42
KB
-rw-r--r--
2023-07-26 17:52
ctext.rb
3.23
KB
-rw-r--r--
2023-07-26 17:52
cursor.rb
2.61
KB
-rw-r--r--
2023-07-26 17:52
dateentry.rb
1.2
KB
-rw-r--r--
2023-07-26 17:52
datefield.rb
1.4
KB
-rw-r--r--
2023-07-26 17:52
diagrams.rb
4.75
KB
-rw-r--r--
2023-07-26 17:52
dialog.rb
1.5
KB
-rw-r--r--
2023-07-26 17:52
getstring.rb
2.54
KB
-rw-r--r--
2023-07-26 17:52
history.rb
1.4
KB
-rw-r--r--
2023-07-26 17:52
ico.rb
3.87
KB
-rw-r--r--
2023-07-26 17:52
ip_entry.rb
1.67
KB
-rw-r--r--
2023-07-26 17:52
khim.rb
1.38
KB
-rw-r--r--
2023-07-26 17:52
menuentry.rb
1.02
KB
-rw-r--r--
2023-07-26 17:52
ntext.rb
3.32
KB
-rw-r--r--
2023-07-26 17:52
panelframe.rb
1.5
KB
-rw-r--r--
2023-07-26 17:52
plotchart.rb
37.57
KB
-rw-r--r--
2023-07-26 17:52
ruler.rb
1.26
KB
-rw-r--r--
2023-07-26 17:52
screenruler.rb
1.31
KB
-rw-r--r--
2023-07-26 17:52
scrolledwindow.rb
1.26
KB
-rw-r--r--
2023-07-26 17:52
scrollwin.rb
1.26
KB
-rw-r--r--
2023-07-26 17:52
setup.rb
316
B
-rw-r--r--
2023-07-26 17:52
statusbar.rb
1.61
KB
-rw-r--r--
2023-07-26 17:52
style.rb
1.1
KB
-rw-r--r--
2023-07-26 17:52
superframe.rb
1.11
KB
-rw-r--r--
2023-07-26 17:52
swaplist.rb
3.22
KB
-rw-r--r--
2023-07-26 17:52
tablelist.rb
667
B
-rw-r--r--
2023-07-26 17:52
tablelist_core.rb
25.31
KB
-rw-r--r--
2023-07-26 17:52
tablelist_tile.rb
996
B
-rw-r--r--
2023-07-26 17:52
tkpiechart.rb
6.96
KB
-rw-r--r--
2023-07-26 17:52
toolbar.rb
3.34
KB
-rw-r--r--
2023-07-26 17:52
tooltip.rb
2.18
KB
-rw-r--r--
2023-07-26 17:52
widget.rb
2.33
KB
-rw-r--r--
2023-07-26 17:52
Save
Rename
# # tkextlib/tcllib/ico.rb # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # # * Part of tcllib extension # * Reading and writing windows icons # require 'tk' require 'tk/image' #require 'tkextlib/tcllib.rb' # TkPackage.require('ico', '0.3') TkPackage.require('ico') module Tk module Tcllib class ICO < TkImage PACKAGE_NAME = 'ico'.freeze def self.package_name PACKAGE_NAME end def self.package_version begin TkPackage.require('ico') rescue '' end end end end end class Tk::Tcllib::ICO def self.list(file, keys=nil) tk_split_list(tk_call_without_enc('::ico::getIconList', file, *hash_kv(keys, true))) end def self.icons(file, keys=nil) tk_split_simplelist(tk_call_without_enc('::ico::icons', file, *hash_kv(keys, true))).map{|elem| num_or_str(elem) } end def self.get_members(file, name, keys=nil) tk_split_simplelist(tk_call_without_enc('::ico::getMembers', file, name, *hash_kv(keys, true))).map{|elem| name, width, height, bpp = tk_split_simplelist(elem) [name, number(width), number(height), number(bpp)] } end def self.get(file, index, keys=nil) tk_call_without_enc('::ico::getIcon', file, index, *hash_kv(keys, true)) end def self.get_icon(*args) get(*args) end def self.get_by_name(file, name, keys=nil) tk_call_without_enc('::ico::getIconByName', file, name, *hash_kv(keys, true)) end def self.get_icon_by_name(*args) get_by_name(*args) end def self.get_fileicon(file, keys=nil) tk_call_without_enc('::ico::getFileIcon', file, *hash_kv(keys, true)) end def self.get_image(file, index, keys={}) keys = _symbolkey2str(keys) keys.delete('format') self.new(file, index, keys) end def self.get_data(file, index, keys={}) keys['format'] = 'data' tk_split_list(tk_call_without_enc('::ico::getIcon', file, index, *hash_kv(keys, true))) end def self.write(file, index, depth, data, keys=nil) tk_call_without_enc('::ico::writeIcon', file, index, depth, data, *hash_kv(keys, true)) end def self.copy(from_file, from_index, to_file, to_index, keys=nil) tk_call_without_enc('::ico::copyIcon', from_file, from_index, to_file, to_index, *hash_kv(keys, true)) end def self.exe_to_ico(exe_file, ico_file, keys=nil) tk_call_without_enc('::ico::copyIcon', exe_file, ico_file, *hash_kv(keys, true)) end def self.clear_cache(file=None) tk_call_without_enc('::ico::clearCache', file) end def self.transparent_color(image, color) if image.kind_of?(Array) tk_split_list(tk_call_without_enc('::ico::transparentColor', image, color)) else tk_call_without_enc('::ico::transparentColor', image, color) end end def self.show(file, keys=nil) tk_call_without_enc('::ico::Show', file, *hash_kv(keys, true)) end ########################### def initialize(file, index, keys=nil) keys = _symbolkey2str(keys) if keys.key?('name') @path = keys['name'].to_s else Tk_Image_ID.mutex.synchronize{ @path = Tk_Image_ID.join(TkCore::INTERP._ip_id_) Tk_Image_ID[1].succ! } end tk_call_without_enc('::ico::getIcon', file, index, '-name', @path, '-format', 'image', *hash_kv(keys, true)) Tk_IMGTBL[@path] = self end def write(file, index, depth, keys=nil) Tk::Tcllib::ICO.write(file, index, depth, @path, keys=nil) self end def transparent_color(color) tk_call_without_enc('::ico::transparentColor', @path, color) self end end