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.217.130
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby23 /
lib64 /
ruby /
2.3.0 /
tkextlib /
vu /
Delete
Unzip
Name
Size
Permission
Date
Action
bargraph.rb
1.16
KB
-rw-r--r--
2023-07-26 18:09
charts.rb
1.25
KB
-rw-r--r--
2023-07-26 18:09
dial.rb
2
KB
-rw-r--r--
2023-07-26 18:09
pie.rb
5.54
KB
-rw-r--r--
2023-07-26 18:09
setup.rb
347
B
-rw-r--r--
2023-07-26 18:09
spinbox.rb
522
B
-rw-r--r--
2023-07-26 18:09
Save
Rename
# frozen_string_literal: false # # ::vu::bargraph widget # by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp) # require 'tk' # create module/class module Tk module Vu class Bargraph < TkWindow end end end # call setup script -- <libdir>/tkextlib/vu.rb require 'tkextlib/vu.rb' class Tk::Vu::Bargraph < TkWindow TkCommandNames = ['::vu::bargraph'.freeze].freeze WidgetClassName = 'Bargraph'.freeze WidgetClassNames[WidgetClassName] ||= self ############################### def __boolval_optkeys ['showminmax', 'showvalue'] end private :__boolval_optkeys def __strval_optkeys super() + [ 'title', 'barbackground', 'barcolor', 'barcolour', 'tickcolor', 'tickcolour', 'textcolor', 'textcolour', ] end private :__strval_optkeys def __listval_optkeys ['alabels', 'blabels'] end private :__listval_optkeys def __font_optkeys ['alabfont', 'blabfont'] end private :__font_optkeys ############################### def set(val = None) tk_call_without_enc(@path, 'set', val) self end def get() num_or_str(tk_call_without_enc(@path, 'get')) end end