blob: a7e40ea319eefb891b22e3fd28241fb2a05338db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# ::vu::spinbox widget
# by Hidetoshi NAGAI ([email protected])
#
# a standard spinbox (<= 8.3)
# This is the same as the 8.4 core spinbox widget.
#
require 'tk'
if (Tk::TK_MAJOR_VERSION < 8 ||
(Tk::TK_MAJOR_VERSION == 8 && Tk::TK_MINOR_VERSION < 4))
# call setup script -- <libdir>/tkextlib/vu.rb
require 'tkextlib/vu.rb'
Tk.tk_call('namespace', 'import', '::vu::spinbox')
end
module Tk
module Vu
Spinbox = Tk::Spinbox
end
end
|